Bulk Via File Create
Bulk upsert projects from a previously uploaded file.
This endpoint allows you to bulk upsert projects from a previously uploaded file. The file should be a JSONL file containing project data. The endpoint queues an async task to process the file, and so results are not returned immediately. You can check the status of the async request using the async_request endpoint.
Headers
Bearer authentication of the form Bearer <token>, where token is your auth token.
Request
The ID of the API file upload containing the projects data in JSONL format. The file upload must have been marked completed and only for the BULK_PROJECT_UPSERT purpose.
The action to carry out on the provided project set.
PARTIAL_UPDATE
- Partial updateFULL_UPDATE
- Full update
Controls how errors are handled. STRICT will fail the entire request if any error occurs. LENIENT will skip individual errors and process all valid items.
STRICT
- Stop on first errorLENIENT
- Skip errors and continue