Added

New `convert_board_to_project` mutation

šŸ·ļø API version: 2025-10

You can now use the convert_board_to_project mutation to convert an existing board to a project board via the API. This mutation is part of a monday.com portfolio solution and only available on Enterprise plans.

mutation {
Ā  convert_board_to_project(
Ā  Ā  input: {
Ā  Ā  Ā  board_id: 1234567890
Ā  Ā  Ā  column_mappings: {
Ā  Ā  Ā  Ā  project_status: "status_column_id"
Ā  Ā  Ā  Ā  project_owner: "person_column_id"
Ā  Ā  Ā  Ā  project_timeline: "date_column_id"
Ā  Ā  Ā  }
Ā  Ā  Ā  callback_url: "https://your-callback-url.com"
Ā  Ā  }
Ā  ) Ā {
Ā  Ā  success
Ā  Ā  message
    process_id
    projectId
Ā  }Ā 
}