Retrieves the current status and details of a vectorization task.
GET /api/vectorize/tasks/{taskId}| Parameter | Type | Description |
|---|---|---|
| taskId | integer | The ID of the task to retrieve. |
Returns the task object. When the status is finished, the createdLogos, finalPrice and finishedAtUtc will be populated.
Pending Task Example:
{
"id": 12,
"status": "pending",
"logoName": "New Logo",
"transferMethodKey": "VAND SPORT",
"minPrice": 150.0,
"maxPrice": 300.0,
"currency": "DKK",
"createdAtUtc": "2026-10-27T10:00:00Z",
"finalPrice": null,
"finishedAtUtc": null,
"createdLogos": []
}Finished Task Example:
{
"id": 12,
"status": "finished",
"logoName": "New Logo",
"transferMethodKey": "VAND SPORT",
"minPrice": 150.0,
"maxPrice": 300.0,
"currency": "DKK",
"createdAtUtc": "2026-10-27T10:00:00Z",
"finalPrice": 200.0,
"finishedAtUtc": "2026-10-28T14:30:00Z",
"createdLogos": [
{
"logoId": 123456,
"logoItemNo": 987654
},
{
"logoId": 123457,
"logoItemNo": 987655
}
]
}