PayNowPro
Customers

Get Customers

Retrieves a paginated list of customers for a tenant. Supports cursor-based pagination with configurable limit and ordering.

GET
/customers
api-key<token>

In: header

Query Parameters

tenantAlias*string

Merchant identifier for multi-tenant access

limit?number

Maximum number of customers to return (capped at 100, defaults to 10)

Formatdouble
cursor?string

Pagination cursor for retrieving next page

order?string

Sort order for results

Value in"asc" | "desc"

Response Body

application/json

application/json

curl -X GET "https://api.paynowpro.com/api/v1/customers?tenantAlias=string"
{
  "nextCursor": "string",
  "data": [
    {
      "id": "string",
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "associatedId": "string",
      "tenantAlias": "string",
      "metadata": {
        "property1": "string",
        "property2": "string"
      },
      "createdAt": "string"
    }
  ]
}
{
  "cause": null,
  "body": {
    "response": {
      "body": "string",
      "headers": {
        "property1": "string",
        "property2": "string"
      }
    },
    "request": {
      "body": "string",
      "headers": {
        "property1": "string",
        "property2": "string"
      },
      "url": "string",
      "method": "string"
    },
    "reason": "string",
    "code": 400
  }
}