Get inbound message details
GET /v1/inbound-messages/{id}
Retrieve the status, metadata, and delivery information for a specific inbound message
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Inbound message identifier (UUIDv7)
Example
01935abc-def0-7123-4567-890abcdef012Responses
Section titled “ Responses ”Inbound message details retrieved successfully
object
Full inbound message details
object
Unique inbound message identifier (UUIDv7)
Example
01935abc-def0-7123-4567-890abcdef012Project that owns this message
Example
proj_abc123Inbound endpoint that received this message
Example
01935abc-def0-7123-4567-890abcdef099Current message delivery status
Example
succeededNumber of delivery attempts made
Example
1Number of times this message has been manually replayed
Content-Type of the original inbound payload
Example
application/jsonPayload size in bytes
Example
512SHA256 hash of the payload
Example
abc123def456...Derived idempotency key (if configured on the inbound endpoint)
Scheduled time for next retry attempt (if pending_retry)
Error message from the last failed attempt
Example
connection timeoutHTTP status code from the most recent delivery attempt
Example
200Latency in milliseconds for the most recent delivery attempt
Example
120Time spent waiting in queue before first delivery attempt (ms)
Example
50Total time from received to delivered (ms)
Example
5000When the inbound message was received
Example
2025-12-06T12:00:00ZWhen the message was last updated
Example
2025-12-06T12:00:05ZWhen the message was successfully delivered
Example
2025-12-06T12:00:05ZWhen the message permanently failed
object
Unique identifier for this request (useful for support)
Example
req_xyz123Example
{ "data": { "id": "01935abc-def0-7123-4567-890abcdef012", "project_id": "proj_abc123", "inbound_endpoint_id": "01935abc-def0-7123-4567-890abcdef099", "status": "succeeded", "attempt_count": 1, "replay_count": 0, "content_type": "application/json", "size_bytes": 512, "payload_sha256": "abc123...", "response_status": 200, "response_latency_ms": 120, "received_at": "2025-12-06T12:00:00Z", "updated_at": "2025-12-06T12:00:05Z", "delivered_at": "2025-12-06T12:00:05Z" }, "meta": { "request_id": "req_xyz123" }}Invalid request
object
object
Machine-readable error code
Example
INVALID_REQUESTHuman-readable error message
Example
endpoint must be a valid HTTPS URLobject
Unique identifier for this request (useful for support)
Example
req_xyz123Examples
Endpoint not found
{ "error": { "code": "ENDPOINT_NOT_FOUND", "message": "endpoint not found" }, "meta": { "request_id": "req_xyz123" }}Invalid endpoint ID format
{ "error": { "code": "INVALID_REQUEST", "message": "endpoint_id must be in format ep_xxx" }, "meta": { "request_id": "req_xyz123" }}Invalid payload
{ "error": { "code": "INVALID_REQUEST", "message": "payload must be valid JSON" }, "meta": { "request_id": "req_xyz123" }}Invalid headers
{ "error": { "code": "INVALID_HEADERS", "message": "header 'Host' is forbidden and cannot be overridden" }, "meta": { "request_id": "req_xyz123" }}Unauthorized - Invalid or missing API key
object
object
Machine-readable error code
Example
INVALID_REQUESTHuman-readable error message
Example
endpoint must be a valid HTTPS URLobject
Unique identifier for this request (useful for support)
Example
req_xyz123Example
{ "error": { "code": "UNAUTHORIZED", "message": "Invalid or missing API key" }, "meta": { "request_id": "req_xyz123" }}Resource not found
object
object
Machine-readable error code
Example
INVALID_REQUESTHuman-readable error message
Example
endpoint must be a valid HTTPS URLobject
Unique identifier for this request (useful for support)
Example
req_xyz123Example
{ "error": { "code": "NOT_FOUND", "message": "Message not found" }, "meta": { "request_id": "req_xyz123" }}Internal server error
object
object
Machine-readable error code
Example
INVALID_REQUESTHuman-readable error message
Example
endpoint must be a valid HTTPS URLobject
Unique identifier for this request (useful for support)
Example
req_xyz123Example
{ "error": { "code": "INTERNAL_ERROR", "message": "An internal error occurred" }, "meta": { "request_id": "req_xyz123" }}Enter your credentials to populate code examples throughout the docs.