Issue:
Filtering job cancellations as described in the Lifecycle API documentation, when using the “CancelAllJobs” method does not work as intended and should not be used.
Resolution:
To cancel multiple, specific jobs, belonging to the user, use the “CancelJob” method, along with the Job ID’s.
This example shows the XML required to cancel three jobs. Note, these jobs must belong to the same user specified within the XML input.
<Actions>
<ApplicantAction>CancelJob</ApplicantAction>
<Job>2530914</Job>
<Job>2548761</Job>
<Job>3987654</Job>
</Actions>