DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
To delete, a job must have a state of UploadComplete, JobComplete, Aborted, or Failed. When you delete a job, the stored job data is also deleted and its metadata is removed.
/api/v1/ingest/jobs/{id}
Data 360 v1.0, Salesforce v51.0
JSON
DELETE
Authorization: Bearer {access_token}
None required.
| Parameter | Description |
|---|---|
| id | The job id that is returned in the response body from the Create a Job request. |
Returns a status code of 204 (No Content), which indicates that the job was successfully deleted.
1curl --location --request DELETE \
2'https://{instance_url}/api/v1/ingest/jobs/{id}' \
3--header 'Authorization: Bearer {access_token}'
4
5HTTP/1.1 204 No ContentWhen a job is deleted, job data stored by Salesforce is also deleted and job metadata information is removed. You can no longer discover the job in Get Job Info or Get All Jobs.
If your data contains special characters, make sure to enclose it in quotation marks.