Skip to main content

Get Merchant List

GET 

/merchants

Use this endpoint to view a list of the merchants.

Note

There are no request parameters for this endpoint, Also change limit in the URI to whatever integer value of items you want to receive.

Request

Query Parameters

    limit integer

    Limit's the amount of items that will be returned.

    Example: 25

Header Parameters

    Authorization string

    appToken created by /auth/token Format: Bearer xxxxxx...

    Example: Bearer <appToken>

Responses

Ok

Schema

    meta

    object

    A key for grouping different types of API data.

    items integer

    The number of items in the database. It is equal to or smaller than the limit’s value.

    limit string

    The maximum number of results to return.

    more boolean

    A true/false value that indicates whether “items” or “limit” allows more results.

    data

    object[]

    A key for grouping results.

  • Array [

  • id string

    The merchant identification string in Digitzs.

    attributes

    object

    A key for grouping identification and payment information.

    accountName string

    The name of the individual or business associated with the account.

    accountType string

    The account type (Personal or Business).

    created date-time

    The date and time that the payment was created.

    type string

    The transaction type. Must equal “merchants”.

  • ]

Loading...