Skip to main content

List jobs for integration

GET 

https://euwest.api.elasticpath.com/integrations/:integration_uuid/jobs

Returns the jobs for the given integration UUID.

Request

Path Parameters

    integration_uuid stringrequired

    The unique identifier of the integration.

Responses

Success. All integrations are returned.

Schema
    data IntegrationJob[]
  • Array [
  • idstring

    The ID of the integration job processed.

    Example: 8848646b-2745-469e-8cc1-ee3b04738f8f
    typestring

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

    Possible values: [integration-job]

    Example: integration-job
  • ]

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://euwest.api.elasticpath.com/integrations/:integration_uuid/jobs");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
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
ResponseClear

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