Get Import Task Status
Get Exhibitor Import Task (Status)
Retrieves the current status of an exhibitor import task (ExhibitorImportTask). Use this endpoint to poll the task until it finishes. When the task is completed, follow the Location header to fetch the final result.
Auth and Role
-
Auth
OAuth 2.0 (inherit from collection) -
Required role
BASEROLE APITASKS
Request
-
Method: GET
-
URL: {{API_BASE_URL}}/tasks/exhibitors/import/{id}
Headers
- Accept: */*
Request Body
- None required
Response
200 OK
-
Returns
ExhibitorImportTask (status) -
Location header behavior
-
If the task is not completed,
Locationpoints back to/tasks/exhibitors/import/{id}(poll again). -
If the task is completed,
Locationpoints to/tasks/exhibitors/import/{id}/result.
-
404 Not Found – Returned if:
- The specified
{id}does not exist
Usage
-
Call this endpoint repeatedly until the task is finished (e.g. when finishedOn is not null or when Location points to …/{id}/result).
-
Once the task is complete, follow the Location link to GET /tasks/exhibitors/import/{id}/result to view the detailed outcome.
Response Structure
If the process is successful, the server returns a 200 OK status with details of the imported task.
Keywords: exhibitor import, poll status, task status, finishedOn, location header
Authentication#auth
This endpoint does not require authentication.