Skip to main content

List logs for the job

GET 

/integrations/:integration_uuid/jobs/:job_uuid/logs

Returns the integration logs for the given integration and job UUID.

Request

Path Parameters

    integration_uuid stringrequired

    The unique identifier of the integration.

    job_uuid stringrequired

    The unique identifier of the integration job.

Responses

Success. Returns a list of integration logs.

Schema
    data IntegrationLog[]
  • Array [
  • id string

    A unique identifier of an integration whose logs you want to view.

    type string

    Possible values: [integration]

    Default value: integration

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

    succeeded boolean

    Whether the integration was successful.

    attempt integer

    The number of attempts made to process the integration.

    body string

    The response returned from the integration.

    status_code integer

    The status code returned from the integration.

    error_detail string

    The reason why the integration failed.

    relationships object

    Relationships are established between different integration entities. For example, a log and an integration job are related to an integration.

    integration object
    data object
    id string

    The ID of the integration processed.

    type string

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

    job object
    data object
    id string

    The ID of the integration job processed.

    type string

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

  • ]
  • meta object
    limit integer

    The maximum number of records per page for a response. You can set this value up to 100.

    offset integer

    The current offset by number of records, not pages. Offset is zero-based.

    current integer

    The current page.

    total integer

    The total page count.

    results object

    The results for this response for the entire collection.

    total integer

    The total number of records for this response for the entire collection.

Loading...