List Created CLABEs
The GET /spei/v1/clabes
method retrieves a paginated list of the CLABEs belonging to your account that match the given query parameters. If you do not specify any query parameters, it retrieves the complete list of CLABEs linked to your account.
To list a set of CLABEs, send the HTTP request as follows:
GET https://stage.buildwithjuno.com/spei/v1/clabes
The following table summarizes the optional query parameters you can use in a filtered search:
Query Parameter | Description | Required |
---|---|---|
clabe_type | Returns the CLABEs that meet the specified CLABE type. Valid value: AUTO_PAYMENT . | No |
start_date | The starting date of the time window searched specified in ISO 8601 date format, YYYY-MM-DD (server timezone). It returns the CLABEs with creation date within the defined window. If used together, ensure the value of this parameter comes before the value of end_date . | No |
end_date | The ending date of the time window searched specified in ISO 8601 date format, YYYY-MM-DD (server timezone). It returns the CLABEs with creation date within the defined window. If used together, ensure the value of this parameter comes after the value of start_date . | No |
page | The page number to retrieve, default value = 1. | No |
page_size | The number of entries per page, default value = 25 and maximum value = 100. | No |
The following exemplifies the response object returned using the filter clabe_type=AUTO_PAYMENT
{
"success": true,
"payload": {
"total_items": "2",
"total_pages": "1",
"current_page": "1",
"page_size": "25",
"response": [
{
"clabe": "710969123456329507",
"type": "AUTO_PAYMENT",
"status": "ENABLED",
"deposit_minimum_amount": null,
"deposit_maximum_amounts": {
"operation": null,
"daily": null,
"weekly": null,
"monthly": null
},
"created_at": "2025-02-07T00:41:03",
"updated_at": null
},
{
"clabe": "710969123456329002",
"type": "AUTO_PAYMENT",
"status": "ENABLED",
"deposit_minimum_amount": null,
"deposit_maximum_amounts": {
"operation": null,
"daily": null,
"weekly": null,
"monthly": null
},
"created_at": "2025-02-05T18:25:33",
"updated_at": null
}
]
}
}
Updated 9 days ago