Skip to main content

Cancel a Job

POST 

https://euwest.api.elasticpath.com/pcm/jobs/:jobID/cancel

The jobs endpoints display the status of a number of endpoints that function as jobs, for example, product import and export, and duplicating hierarchies.

Jobs are processed one at a time. You can continue to send job requests, but those jobs are queued. In other words, Commerce looks for any jobs that have a status of PENDING and starts the job with the earliest created date. If you decide that a specific job needs to be prioritized over another, you can cancel the less critical job using the Cancel a job endpoint. You can only cancel jobs whose status is PENDING.

Request

Path Parameters

    jobID stringrequired

    A unique identifier for the job.

Body

    objectobject

Responses

Successfully cancelled job

Schema
    data objectrequired
    idstringrequired

    A unique identifier generated when a job is created.

    typestringrequired

    This represents the type of resource object being returned. Always pim-job.

    Possible values: [pim-job]

    attributes objectrequired
    started_atdate-timenullablerequired

    The date and time a job is started.

    Example: 2020-09-22T09:00:00
    completed_atdate-timenullablerequired

    The date and time a job is completed.

    Example: 2020-09-22T09:00:00
    created_atdate-timerequired

    The date and time a job is created.

    Example: 2020-09-22T09:00:00
    updated_atdate-timerequired

    The date and time a job is updated.

    Example: 2020-09-22T09:00:00
    typestringrequired

    The status of a job.

    • pending - Commerce has received the request but is currently busy processing other requests.
    • started - Commerce has started processing the job.
    • success - The job has successfully completed.
    • failed - The job has failed.

    Possible values: [child-products, product-import, product-export, hierarchy-duplicate, price-import]

    statusstringrequired

    Possible values: [pending, cancelled, started, success, failed]

    meta objectrequired
    x_request_idstringrequired

    Applies to all job types. A unique request ID is generated when a job is created.

    copied_fromstring

    Applies to hierarchy-duplicate job types. The ID of the original hierarchy that you duplicated.

    hierarchy_idstring

    Applies to hierarchy-duplicate job types. The duplicated hierarchy ID.

    file_locationsstring[]nullable

    If the job type is product_export, a link to the file is created when running a job.

    filterstring

    The entities included in the job. For example, if the job type is product-export, the PXM products included in the export.

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/pcm/jobs/:jobID/cancel");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com
Auth
Parameters
— pathrequired
Body
{}
ResponseClear

Click the Send API Request button above and see the response here!