Sitecore API catalog/Status API//
- Retrieve the status for a specific message using its ID
Retrieve overall system status
Retrieve the status of messages in a queue
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 for a...
Retrieves detailed status information for a message, including the channel, creation time, priority, type, payload, and processing statuses.
Note
To use this endpoint, you must have the
MonitorSystemStatus privilege. Security
OAuth2
- https://your-serverhttps://your-server/api/status/messages/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
curl -i -X GET \
'https://your-server/api/status/messages/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Successful operation
Priority of the message. The higher the priority, the sooner the consumption on queues supporting the message prioritization.
Number of references of this message in various queues located in the same location as this message. A message with a reference count equal to 0 will be automatically garbage collected after a period of time (depends on the configuration).
Collection of message status information on various queues. The actual state of the message in all applicable queues is not part of these statuses.
Response
- application/json:
- application/json
- text/json
{ "id": 0, "channel": "string", "created_on": "2019-08-24T14:15:22Z", "priority": 0, "reference_count": 0, "type": "string", "payload": {}, "statuses": [ { … } ], "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false } }