Sitecore API catalog/Status API//
- Retrieve the status of messages in a queue
Retrieve overall system status
Retrieve the status for a specific message using its ID
Retrieve status information for all message queues
Retrieve the status of jobs within a specific retention period
Retrieve the user status
Retrieve a hierarchical view of the system status
Retrieve the status and statistics for data storage
Retrieve the status and statistics for media storage
Retrieve statistics for a specific tenant and time period
Retrieve the status and statistics for the search service
Retrieve the status and statistics for the graph service
Retrieve the system status
Retrieve the status of me...
Lists messages for a specific queue and status, including links for paging and message details.
Security
OAuth2
- https://your-serverhttps://your-server/api/status/queues/{queueName}/{status}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
curl -i -X GET \
'https://your-server/api/status/queues/{queueName}/{status}?skip=0&take=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Successful operation
Response
- application/json:
- application/json
- text/json
{ "messages": [ { … } ], "total_messages": 0, "returned_messages": 0, "offset": 0, "next": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "previous": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false } }