Get task details

GET /extension/task

Requires Bearer token authentication.

Endpoint#

GET https://api.multipost.app/extension/task

Query parameters#

FieldTypeRequiredDescription
taskIdstringTask ID

Request example#

curl -X GET 'https://api.multipost.app/extension/task?taskId=YOUR_TASK_ID' \
  -H "Authorization: Bearer YOUR_API_KEY"

Response#

200 — Task details retrieved successfully

{
  "success": true,
  "data": {
    "id": "string",
    "taskType": "PUBLISH_POST",
    "status": "PENDING",
    "targetClientId": "string",
    "createdAt": "string",
    "updatedAt": "string"
  }
}

401 — Unauthorized

{
  "success": false,
  "error": "string"
}