Lists frequent payments
Full report with all the frequent payments from your Account Id
Required scope: <code style="background:#e8f0fe;color:#1a73e8;padding:2px 8px;border-radius:12px;font-size:0.85em">frequent:read</code>
Query parameters
Specifies the page number of the results to retrieve. This parameter is used for paginating through a collection of records, allowing the client to navigate to different pages of the dataset. The value must be a positive integer (e.g., "1" for the first page).
Specifies the number of records to retrieve per page. This parameter is used for controlling the size of each page in a paginated collection of records. The value must be a positive integer, determining how many records are displayed on each page (e.g., "20" for 20 records per page).
Filter records by expiration datetime interval. Format: interval(YYYY-MM-DD HH:MM,YYYY-MM-DD HH:MM)
Filter by payment method used in the transaction.
A user-defined identifier used to filter the customers. This parameter allows the client to specify a key to retrieve records or transactions that match the provided key. The value is a string and may not be unique, as it is determined by the user.
Filter by the unique identifier for the resource. Typically formatted as a UUID (Universally Unique Identifier).
A user-defined identifier used to filter the results. This parameter allows the client to specify a key to retrieve records or transactions that match the provided key. The value is a string and may not be unique, as it is determined by the user.
Filter records by creation datetime interval in UTC. Maximum allowed range is 30 days. Format: interval(YYYY-MM-DD HH:MM,YYYY-MM-DD HH:MM).
Response
OK
Example response
{
"meta": {
"links": {
"first": "?page=1",
"next": "?page=2",
"last": "?page=826"
}
},
"data": [
{
"id": "ef66f227-2318-4079-8793-ce0fbf651d5c",
"key": "Default Key",
"expiration_time": "2024-07-01T15:15:00Z",
"customer": {
"id": "df0eac33-a487-4338-96cb-5dea17bdb469",
"name": "Cus*** Exa***",
"email": "cus***@example.com",
"phone": "911***567",
"phone_indicative": "351",
"fiscal_number": "PT123***89",
"key": "Key Example",
"language": "PT"
},
"method": {
"type": "MBW",
"status": "active",
"alias": "79cb81f626924c71926cdb36a03a0590"
},
"currency": "EUR",
"max_value": 20,
"min_value": 2,
"unlimited_payments": false,
"created_at": "2024-06-30 15:15:05"
}
]
}