Overview
This endpoint can be used to get the logs for a single queued job by id In order to consume the endpoint you must:
- Be authenticated user
For information on how you can authenticate, see: Authentication
As soon as you do authentication and receive a valid token, it needs to be passed to the call.
Endpoint
Example for such endpoint for TT server is:
https://tt.api.sellercloud.com/rest/api/QueuedJobs/{id}/Logs
For your server endpoint will be:
https://{your_server_id}.api.sellercloud.com/rest/api/QueuedJobs/{id}/Logs
Request

- Method Type: HttpGet
- Authorization: Use Bearer Token + token received from token authentication
Query Parameters:
Parameter | Data Type | Description | Is Required |
IsError | bool | Filters the results on IsError field being equal to the provided value | No |
LogTimeFrom | DateTime | Filters the results on LogTime field being greater than or equal to the provided value | No |
LogTimeTo | DateTime | Filters the results on LogTime field being less than or equal to the provided value | No |
Response
- If user is authenticated and the request is successful, then response will be Status Code 200 => OK and the queued job logs returned in the response
- If user is not authenticated, then response will be Status Code 401 => Not Valid Token
- In case of error, response will be Status Code 500 => Internal Server Error