GET
/
api
/
v1
/
pay
/
static-accounts
curl --request GET \
  --url https://adapter.cepta.co/api/v1/pay/static-accounts \
  --header 'Authorization: <api-key>'
{
  "status": true,
  "message": "<string>",
  "data": {
    "currentPage": 123,
    "totalPages": 123,
    "pageSize": 123,
    "totalCount": 123,
    "hasPrevious": true,
    "hasNext": true,
    "results": [
      {
        "firstName": "<string>",
        "lastName": "<string>",
        "phoneNumber": "<string>",
        "email": "<string>",
        "accountNumber": "<string>",
        "bankName": "<string>",
        "isActive": true,
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Authorization header with the <SECRET_KEY> value.

Query Parameters

pageNumber
integer

Current page number

pageSize
integer

total page number

startDate
string

Account creation date

EndDate
string

Account expiry date

Response

200
text/plain
Success
status
boolean

specific error code

message
string | null

description of the error

data
object