DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Retrieves all jobs in Data 360.
/api/v1/ingest/jobs
Data 360 v1.0, Salesforce v51.0
JSON
GET
Authorization: Bearer {access_token}
1curl --location --request GET \
2'https://{instance_url}/api/v1/ingest/jobs/' \
3--header 'Authorization: Bearer {access_token}'| Parameter | Description |
|---|---|
| limit | The number of records to return. Defaults to 20. Maximum up to 100 records per request. |
| offset | Number of rows to skip before returning. |
| orderBy | The field used to order job definition results. The default order is by systemModstamp. |
| states | Get jobs in specific states. Valid states are Open, UploadComplete, Failed, Aborted, and JobComplete. The parameter’s value can be a comma-delimited list. |
1HTTP/1.1 200 OK
2{
3 "data": [{
4 "id": "4d5a4477-e27f-4bc1-a219-31e79407eade",
5 "operation": "upsert",
6 "object": "MyCdpObject",
7 "createdById": "005R0000000sJ1hIAE",
8 "createdDate": "2021-04-08T14:29:53.000Z",
9 "systemModstamp": "2021-04-08T14:29:53.000Z",
10 "states": "Open",
11 "contentType": "CSV",
12 "apiVersion": "v1",
13 "contentUrl": "api/v1/ingest/jobs/4d5a4477-e27f-4bc1-a219-31e79407eade/batches"
14 }, {
15 "id": "9d5a4477-e27f-4bc1-a219-31e79407eade",
16 ...
17 }]
18}