Skip to main content

Get all customers.

GET 

/v1/customers

Returns a paginated list of all customers. If no limit is provided, the default is value is used. By default the list gets ordered by the created_at field in descending order.

Request

Query Parameters

    limit int64

    Possible values: >= 1 and <= 100

    Default value: 10

    Number of items to return per page.

    page int64

    Possible values: >= 1

    Default value: 1

    Page number to return.

    name string

    Possible values: >= 3 characters and <= 80 characters

    Name of the customer to search for.

    Example: truvami ltd.

Responses

OK

Schema

    $schema uri

    A URL to the JSON Schema for this object.

    data

    object[]

    required

  • Array [

  • created_at date-timerequired

    Date and time the customer was created.

    name stringrequired

    Possible values: non-empty and <= 80 characters

    Name of customer.

    updated_at date-timerequired

    Date and time the customer was updated.

    uuid uuidrequired

    Unique identifier for the person

  • ]

  • metadata

    object

    required

    limit int64required
    page int64required
    total int64required
    total_pages int64required
    status int64required
    timestamp date-timerequired
Loading...