This the endpoint is necessary to receive all payment methods for the selected buyer.
<?php
$client = new Client();
$headers = [
'x-date' => '<current date format(Y-m-d H:i:s.u)>',
'x-public-key' => '<your public key uuid>',
'x-buyer-ip' => <external ip>',
'x-token' => '<generated token>',
'x-source'=> 'shop',
'x-id' => '<your-service-id>',
'Content-Type' => 'application/json'
];
$request = new Request('GET', 'https://pay-sandbox.billerbase.com/api/v2/buyers/9b9de689-a64f-4231-bec8-d3f20edd04e4/charge-methods', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();curl --location --request GET 'https://pay-sandbox.billerbase.com/api/v2/buyers/9b9de689-a64f-4231-bec8-d3f20edd04e4/charge-methods' \
--header 'x-date: <Y-m-d H:i:s.u (current date)>' \
--header 'x-public-key: <your public key uuid>' \
--header 'x-buyer-ip: <external ip>'\
--header 'x-token: <generated token>' \
--header 'x-source: shop' \
--header 'x-id: <your-service-id>' \
--header 'Content-Type: application/json'var request = require('request');
var options = {
'method': 'GET',
'url': 'https://pay-sandbox.billerbase.com/api/v2/buyers/9b9de689-a64f-4231-bec8-d3f20edd04e4/charge-methods',
'headers': {
'x-date': '<current date format(Y-m-d H:i:s.u)>',
'x-public-key': '<your public key uuid>',
'x-buyer-ip': <external ip>',
'x-token': '<generated token>',
'x-source': 'shop',
'x-id': '<your-service-id>',
'Content-Type': 'application/json'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});{
"data": [
{
"paymentMethodType": "card",
"paymentMethodIdentifier": "**** **** **** 4444",
"chargeMethodId": "d23ed15a-4c1e-409e-b26e-7966a2f66168"
}
],
"meta": {
"type": "collection",
"total": 1,
"offset": 0
}
}The list of possible errors for this endpoint, along with their types and interpretation, is provided in the general reference: Endpoint response errors.