> For the complete documentation index, see [llms.txt](https://scalemate.gitbook.io/scalemate-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://scalemate.gitbook.io/scalemate-api/api/creatives-sync-status.md).

# 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

UR&#x4C;**:** `https://api.scalemate.co/api/external/creative_sync/{job_id}`\
Metho&#x64;**:** `GET`

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

### Response

```json
{
  "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

### File Link Formats

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.
