Skip to content
Dark mode

Get executions for an integration

Returns a paginated list of all content management job executions associated with an integration ID.

Prerequisites

  1. Authentication and setup: A valid access token.
  2. Create an integration: The integration must exist and provide the integration ID.
GET /services/data/v1.0/content/management

Base URL: the standard REST host for your region. See Base URLs.

Header Required Value or description
Authorization Required Bearer ACCESS_TOKEN
X-Consumer-Custom-Id Required COMPANY_ID
Parameter Type Required Description
integrationId string Required The unique identifier for the integration.
limit integer Optional Number of records to return. Default: 1000.
offset integer Optional Number of records to skip. Default: 0.

This endpoint has no request body.

curl --location 'https://api.mindtickle.com/services/data/v1.0/content/management?integrationId=INTEGRATION_ID&limit=LIMIT&offset=OFFSET' \
--header 'Authorization: Bearer ACCESS_TOKEN' \
--header 'X-Consumer-Custom-Id: COMPANY_ID'
Field Type Description
executions object The executions, keyed by execution ID.
executions.EXECUTION_ID.execution_id string Unique identifier of the execution.
executions.EXECUTION_ID.status string Status of the execution.
executions.EXECUTION_ID.created_at integer Time the execution was created.
count integer Count returned by the API. See Count before using it for pagination.
{
"executions": {
"12345678-1234-4123-8123-123456789101_1709278427": {
"execution_id": "12345678-1234-4123-8123-123456789101_1709278427",
"status": "SUCCESSFUL",
"created_at": 1709278427
},
"12345678-1234-4123-8123-123456789101_1709282799": {
"execution_id": "12345678-1234-4123-8123-123456789101_1709282799",
"status": "SUCCESSFUL",
"created_at": 1709282799
}
},
"count": 5
}

A successful call returns 200 OK.

  • Pagination: Use limit and offset for large result sets.
  • Count: Do not assume count equals the number of entries in executions or use it as a total for pagination without confirming its meaning with Mindtickle Support.