Get buyer's charge methods

get
/api/v2/buyers/{buyerId}/charge-methods
lts

This the endpoint is necessary to receive all payment methods for the selected buyer.

Header parameters
Attribute
Requirement
Description
x-public-key
mandatory
a public key that identifies the merchant account (there can be several for one merchant)
x-buyer-ip
mandatory
is responsible for information about the buyer's IP address
x-date
mandatory
is responsible for the date and time of sending the request
x-token
mandatory
generated on the merchant side
x-source
mandatory
identifier of the type of service that is the initiator of the request
x-id
mandatory
service identifier from which the current request is made
Request parameters
Attribute
Type
Requirement
Description
Standard
buyerId
string
mandatory
Unique identifier of buyer in the system
uuid
Response parameters
Attribute
Type
Description
data
array of objects
An array of objects that contains information related to each of the payment methods of a particular bayer
meta
object
Provides metadata about the response
{
    "data": [
        {
            "paymentMethodType": "card",
            "paymentMethodIdentifier": "**** **** **** 4444",
            "chargeMethodId": "d23ed15a-4c1e-409e-b26e-7966a2f66168"
        }
    ],
    "meta": {
        "type": "collection",
        "total": 1,
        "offset": 0
    }
}