No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
Aborting a Job
Abort an existing job by sending a POST request to the following URI. The request URI identifies the job to abort. When a job is aborted, no more records are processed. Changes to data may already have been committed and aren't rolled back.
- URI
- https://instance_name—api.salesforce.com/services/async/APIversion/job/jobId
- Example request body
1<?xml version="1.0" encoding="UTF-8"?> 2<jobInfo 3 xmlns="http://www.force.com/2009/06/asyncapi/dataload"> 4 <state>Aborted</state> 5</jobInfo>- Example response body
1<?xml version="1.0" encoding="UTF-8"?> 2<jobInfo 3 xmlns="http://www.force.com/2009/06/asyncapi/dataload"> 4 <id>750D0000000002lIAA</id> 5 <operation>insert</operation> 6 <object>Account</object> 7 <createdById>005D0000001ALVFIA4</createdById> 8 <createdDate>2009-04-14T18:15:59.000Z</createdDate> 9 <systemModstamp>2009-04-14T18:16:00.000Z</systemModstamp> 10 <state>Aborted</state> 11</jobInfo>