For the complete documentation index, see llms.txt. This page is also available as Markdown.

Creatives Sync Status

This endpoint is designed to provide updated information on the upload process, ensuring you receive the most recent execution details.

Endpoint Details

URL: https://api.scalemate.co/api/external/creative_sync/{job_id} Method: GET

curl --location 'https://api.scalemate.co/api/external/creative_sync/job_abc123def456' \
--header 'X-Api-Key: <YOUR_API_KEY>'

Response

{
  "job_id": "job_abc123def456",
  "status": "completed",
  "message": "Files uploaded successfully"
}

Status Values

  • pending - Job is queued and waiting to be processed

  • processing - Job is currently being processed

  • completed - Job has finished successfully

  • failed - Job has failed due to an error

The API accepts both Google Drive URLs and file IDs:

  • Full URL: https://drive.google.com/file/d/FILE_ID/view

  • File ID only: FILE_ID

The system automatically extracts file IDs from full URLs.

Last updated