List Agreements
GET/v1/agreements
List the stored agreements of every merchant under your acquirer. Returns the brief view (no attached orders).
Required permission: agreements_read.
Request
Query Parameters
Possible values: >= 1 and <= 100
Number of items per page.
Filter by the merchant-assigned agreement identifier.
Filter to the agreement attached to this order.
Possible values: [unscheduled, recurring, registered, installment]
Possible values: [fixed, variable]
Possible values: [type, max_use, variability, expiry, created_at, updated_at]
Default value: created_at
Possible values: [asc, desc]
Default value: desc
Responses
- 200
- 401
- 403
Paginated list of agreements (brief view).
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
agreements
object[]
required
Merchant-chosen agreement identifier supplied when the agreement was established.
Possible values: [unscheduled, recurring, registered, installment]
A 36-character UUIDv7 identifier.
Possible values: [fixed, variable]
false once the agreement has been disabled via
PUT /v1/agreements/:id/disable. Disabled agreements reject
new transactions.
ISO 8601 UTC timestamp with time zone designator.
ISO 8601 UTC timestamp with time zone designator.
meta
object
required
Cursor-style pagination metadata. next_page and prev_page are
null at the boundaries. Total counts are intentionally omitted for
performance on large result sets (countless pagination).
Possible values: >= 1
{
"agreements": [
{
"id": "SUB-USER-42",
"type": "unscheduled",
"first_order_id": "0191f5a7-3d99-7f81-b7ec-962a5f5fdd7c",
"max_use": 0,
"variability": "fixed",
"expiry": "2024-07-29",
"active": true,
"created_at": "2025-01-15T14:30:00Z",
"updated_at": "2025-01-15T14:30:00Z"
}
],
"meta": {
"current_page": 1,
"next_page": 2,
"prev_page": null
}
}
Authentication failed.
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "Missing authentication information"
}
The API key lacks the required permission.
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "Unauthorized"
}