v8

OpenAPI 3.1.02026-08-033623795.0 MB
Payments

List fees

Returns the list of fees associated with a specific payment, including platform fees and processing fees.

Required permissions:

  • payment:basic:read
get/payments/{id}/fees

Path parameters

idstring required
Example:pay_xxxxxxxxxxxxxx

The unique identifier of the payment to list fees for.

Query parameters

afterstring nullable

Returns the elements in the list that come after the specified cursor.

beforestring nullable

Returns the elements in the list that come before the specified cursor.

firstinteger nullable

Returns the first n elements from the list.

Example:42
lastinteger nullable

Returns the last n elements from the list.

Example:42

Response

A successful response

Example response

{
  "data": [
    {
      "amount": 6.9
    }
  ]
}