Skip to main content

Get Payment List for Merchant

GET 

/payments

Use this endpoint to retrieve a list of transactions.

Note

There are no request parameters for this endpoint, besides the merchantId in the URI.

Request

Query Parameters

    limit integer

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

    Example: 25
    id string

    The merchantId to query results by.

    Example: {{merchantId}}

Header Parameters

    Authorization string

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

    Example: Bearer <appToken>

Responses

Successful response for getting payments

Schema

    links

    object

    self string

    URL for the current resource.

    next string

    URL for the next set of data.

    note string

    Note about the URL to call for the next set.

    meta

    object

    items integer

    Number of items in the current set.

    count integer

    Total count of items.

    limit string

    Limit of items per set.

    more boolean

    Indicates if there is more data available.

    data

    object[]

  • Array [

  • id string

    Identifier for the payment entry.

    type string

    Type of the payment entry.

    attributes object

    Attributes associated with the payment entry.

  • ]

Loading...