Get executions for an integration
Returns a paginated list of all content management job executions associated with an integration ID.
Prerequisites
- Authentication and setup: A valid access token.
- Create an integration: The integration must exist and provide the integration ID.
Endpoint
Section titled “Endpoint”GET /services/data/v1.0/content/managementBase 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 |
Query parameters
Section titled “Query parameters”| 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. |
Request
Section titled “Request”This endpoint has no request body.
Request example
Section titled “Request example”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'Response
Section titled “Response”| 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. |
Response example
Section titled “Response example”{ "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
limitandoffsetfor large result sets. - Count: Do not assume
countequals the number of entries inexecutionsor use it as a total for pagination without confirming its meaning with Mindtickle Support.