Skip to content

Query inbound delivery logs

GET
/v1/inbound-logs

Retrieve delivery logs for inbound webhook messages. Supports filtering by status, endpoint, and time range with cursor-based pagination.

status
string
Allowed values: queued delivering succeeded pending_retry failed_permanent

Filter by message status

Example
succeeded
inbound_endpoint_id
string format: uuid

Filter by inbound endpoint ID

Example
01935abc-def0-7123-4567-890abcdef012
start_time
string format: date-time

Filter messages received after this time (ISO 8601)

Example
2025-12-01T00:00:00Z
end_time
string format: date-time

Filter messages received before this time (ISO 8601)

Example
2025-12-06T23:59:59Z
limit
integer
default: 50 >= 1 <= 500

Maximum number of results to return

Example
50
cursor
string

Pagination cursor from previous response

Inbound logs retrieved successfully

object
data
Array<object>
object
message_id
string format: uuid
Example
01935abc-def0-7123-4567-890abcdef012
inbound_endpoint_id
string format: uuid
Example
01935abc-def0-7123-4567-890abcdef099
endpoint

Forwarding URL

string format: uri
Example
https://myapp.com/webhooks/stripe
status
string
Allowed values: queued delivering succeeded pending_retry failed_permanent
Example
succeeded
attempt_count
integer
Example
1
received_at
string format: date-time
Example
2025-12-06T12:00:00Z
delivered_at

When the message was successfully delivered (if applicable)

string format: date-time
Example
2025-12-06T12:00:05Z
response_status

HTTP status code from the most recent delivery attempt

integer
Example
200
response_latency_ms

Latency in milliseconds for the most recent attempt

integer
Example
120
last_error

Error message from the last failed attempt

string
Example
connection timeout
total_delivery_ms

Total time in milliseconds from received to delivered

integer
Example
5000
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123
next_cursor

Cursor for the next page of results

string
has_more

Whether more results are available

boolean
Example
{
"data": [
{
"message_id": "01935abc-def0-7123-4567-890abcdef012",
"inbound_endpoint_id": "01935abc-def0-7123-4567-890abcdef099",
"endpoint": "https://myapp.com/webhooks/stripe",
"status": "succeeded",
"attempt_count": 1,
"received_at": "2025-12-06T12:00:00Z",
"delivered_at": "2025-12-06T12:00:05Z",
"response_status": 200,
"response_latency_ms": 120,
"total_delivery_ms": 5000
}
],
"meta": {
"request_id": "req_xyz123",
"has_more": false
}
}

Invalid request

object
error
object
code

Machine-readable error code

string
Example
INVALID_REQUEST
message

Human-readable error message

string
Example
endpoint must be a valid HTTPS URL
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123
Examples

Endpoint not found

{
"error": {
"code": "ENDPOINT_NOT_FOUND",
"message": "endpoint not found"
},
"meta": {
"request_id": "req_xyz123"
}
}

Unauthorized - Invalid or missing API key

object
error
object
code

Machine-readable error code

string
Example
INVALID_REQUEST
message

Human-readable error message

string
Example
endpoint must be a valid HTTPS URL
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123
Example
{
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid or missing API key"
},
"meta": {
"request_id": "req_xyz123"
}
}
Personalize Examples

Enter your credentials to populate code examples throughout the docs.