Resend the mail for a customer invite
POST/customer-invites/ {customerInviteId}/ actions/ resend/
v2
POST
customer-resend-customer-invite-mail
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/customer-invites/f0f86186-0a5a-45b2-aa33-502777496347/actions/resend
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.resendCustomerInviteMail({
"customerInviteId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\ResendCustomerInviteMail\ResendCustomerInviteMailRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\ResendCustomerInviteMail\ResendCustomerInviteMailRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// ResendCustomerInviteMailRequestBody to learn how to construct a valid instance
$body = new ResendCustomerInviteMailRequestBody(/* TODO: ... */);
$request = (new ResendCustomerInviteMailRequest(
customerInviteId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->customer()->resendCustomerInviteMail($request);
var_dump($response->getBody();