GET /Tasks/{taskId}
Authorizations
X-API-KEYstringRequired
Public API key used to identify the client application. It should be included in all requests.
Path parameters
taskIdstring · uuidRequired
The unique identifier of the task.
Header parameters
X-API-SECRETstringRequiredExample:
API Secret is used to verify the integrity of the request and authenticate the client. It should be included in all requests. This value must be kept confidential and should never be exposed in client-side code or public repositories.
YOUR_API_SECRETResponses
200
OK
401
Unauthorized
404
Not Found
get
/api/v1/Tasks/{taskId}GET /api/v1/Tasks/{taskId} HTTP/1.1
Host: open-api.getcakewalk.io
X-API-KEY: YOUR_API_KEY
X-API-SECRET: YOUR_API_SECRET
Accept: */*
{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "StandAloneBrowserExtensionInstallationTask",
"createdAt": "2025-11-13T01:43:16.442Z",
"status": "Approved",
"lastUpdatedAt": "2025-11-13T01:43:16.442Z",
"isAutoprovisioning": true,
"isActionStep": true,
"assignedUser": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"email": "text",
"statusId": 1,
"statusName": "text"
},
"claimers": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"email": "text",
"statusId": 1,
"statusName": "text"
}
],
"executedByUser": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"email": "text",
"statusId": 1,
"statusName": "text"
},
"request": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"requestType": "text",
"requestStatus": "text",
"requestedByUserId": "123e4567-e89b-12d3-a456-426614174000",
"cancelledByUserId": "123e4567-e89b-12d3-a456-426614174000",
"workAppId": "123e4567-e89b-12d3-a456-426614174000",
"permissionLevelId": "123e4567-e89b-12d3-a456-426614174000",
"targetUserId": "123e4567-e89b-12d3-a456-426614174000",
"requestPurpose": "text",
"sourceId": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-11-13T01:43:16.442Z",
"updatedAt": "2025-11-13T01:43:16.442Z"
},
"snoozedTill": "2025-11-13T01:43:16.442Z",
"offboardingMetadata": {
"targetUser": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"email": "text",
"statusId": 1,
"statusName": "text"
},
"externalIntegrationAppName": "text",
"terminationDate": "2025-11-13T01:43:16.442Z"
},
"onboardingMetadata": {
"onboardingUserFullName": "text",
"onboardingUserEmail": "text",
"externalIntegrationAppName": "text",
"externalConnectionAppIsEmailProvider": true,
"startingDate": "2025-11-13T01:43:16.442Z"
},
"rolledOutByUser": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"email": "text",
"statusId": 1,
"statusName": "text"
},
"systemExecutionReason": "BrowserExtensionInstalled",
"closedReason": "text"
},
"links": {
"self": "text",
"next": "text"
}
}Last updated
Was this helpful?