Get payment method details
GET/customers/ {customerId}/ payment-method/
v2
GET
marketplace-customer-get-payment-method
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/customers/f0f86186-0a5a-45b2-aa33-502777496347/payment-method
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.marketplace.customerGetPaymentMethod({
"customerId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Marketplace\CustomerGetPaymentMethod\CustomerGetPaymentMethodRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new CustomerGetPaymentMethodRequest(
customerId: "f0f86186-0a5a-45b2-aa33-502777496347"
));
$response = $client->marketplace()->customerGetPaymentMethod($request);
var_dump($response->getBody();