Import edits csv

POST /import/csv/projects/{project_id}/edits

Import project edits from a CSV file. Creates or updates edits based on CSV rows. Supports metadata descriptors and task status updates.

Path parameters

  • project_id string(uuid) Required

Query parameters

  • update boolean

    Whether to update existing edits

Responses

  • 201 application/json

    Edits imported successfully

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • project_id string(uuid)
    • parent_id string(uuid)
    • description string
  • 400

    Invalid CSV format or missing required columns

POST /import/csv/projects/{project_id}/edits
curl \
 --request POST 'http://api.example.com/import/csv/projects/a24a6ea4-ce75-4665-a070-57453082c25/edits' \
 --header "Authorization: $API_KEY"
Response examples (201)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "Edit_001",
    "project_id": "b24a6ea4-ce75-4665-a070-57453082c25",
    "parent_id": "c24a6ea4-ce75-4665-a070-57453082c25",
    "description": "Edit description"
  }
]