AYBABTU API
  • Introduction
  • Getting Started
    • Quickstart
  • API Reference
    • Authentication
      • Postman Collection
    • Customers
      • Customer Info
      • Create Customer
      • Update Customer
    • Customer Banks
      • Customer Bank Info
      • Create Customer Bank
      • Update Customer Bank
    • Offramps
      • Create Offramp
      • Confirm Offramp
    • Webhooks
    • Supported Currencies
Powered by GitBook
On this page
  1. API Reference
  2. Customers

Customer Info

PreviousCustomersNextCreate Customer

Last updated 6 months ago

Get the list of customer

get

GET /v1/customer

Responses
200
Get the list of customer
application/json
get
GET /v1/customer HTTP/1.1
Host: {{base_url}}
Accept: */*
200

Get the list of customer

[
  {
    "address": "Privit Drive 2",
    "bank": null,
    "city": "London",
    "country": "UK",
    "createdAt": "2024-10-08T09:07:49.419Z",
    "detailsName": "Tod",
    "email": "tod@gmail.com",
    "id": 1,
    "kybScore": 1234,
    "kybStatus": null,
    "name": "Sam",
    "phone": "1112344",
    "status": "Created",
    "type": "Individual",
    "updatedAt": "2024-10-08T09:07:53.877Z",
    "wallet": null
  }
]