Create the Wallet for the Customer
POST/customers/ {customerId}/ wallet/
v2
POST
customer-create-wallet
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/customers/string/wallet
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.customer.createWallet({
"customerId": "string",
"data": {}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\CreateWallet\CreateWalletRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\CreateWallet\CreateWalletRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateWalletRequestBody to learn how to construct a valid instance
$body = new CreateWalletRequestBody(/* TODO: ... */);
$request = (new CreateWalletRequest(
customerId: "string",
body: $body
));
$response = $client->customer()->createWallet($request);
var_dump($response->getBody();