Connor Greig
Last updated: 15 September 2025
GET /api/beta/task-details
Get details of a specific task.
Authorization: <your_api_key>Headers
Name | Type | Required | Example |
|---|---|---|---|
Content-Type | string | ✅ | application/json |
Body Parameters
Name | Type | Required | Description | Example |
|---|---|---|---|---|
company | string | ✅ | The company ID | company_id |
user | string | ✅ | The user ID | user_id |
task_id | string | ✅ | The unique task ID | task_id |
200 – Successful Response
{
"success": true,
"task_details": {
"task_reference": "ref123",
"task_name": "System Update",
"task_description": "Update system software.",
"status": "in progress",
"isOutscoped": false,
"outscope_reason": "",
"is_in_manual_queue": true,
"last_updated": "2025-05-19T15:00:00Z",
"associated_company": "company123",
"connector_id": "connector456",
"connector_name": "ConnectorName",
"connector_platform": "PlatformX",
"standards_and_controls": ["ISO27001"],
"dependency_tasks": ["task123", "task456"]
}
}
Error Responses
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
405 Method Not Allowed
413 Payload Too Large
429 Too Many Requests
500 Internal Server Error