Skip to content

List Receipts

GET
/admin/automations/{id}/receipts
curl --request GET \
--url 'http://localhost:9000/admin/automations/example/receipts?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
receipts
Array<object>
object
id
string
request_ip
string
payload
string
created_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"receipts": [
{
"id": "example",
"request_ip": "example",
"payload": "example",
"created_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}