Create a customer invite
POST/customers/ {customerId}/ invites/ 
v2
POST
customer-create-customer-invite
Request
Responses
Usage examples
- cURL
 - JavaScript SDK
 - PHP SDK
 
$ curl \
    --fail \
    --location \
    -X POST \
    -d '{"mailAddress":"email@mittwald.example","membershipExpiresAt":"2025-11-03T18:08:34.784Z","message":"string","role":"notset"}' \
    -H "Authorization: Bearer $MITTWALD_API_TOKEN" \
    -H 'Content-Type: application/json' \
    https://api.mittwald.de/v2/customers/string/invites
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.createCustomerInvite({
  "customerId": "string",
  "data": {
    "mailAddress": "email@mittwald.example",
    "membershipExpiresAt": "2025-11-03T18:08:34.784Z",
    "message": "string",
    "role": "notset"
  }
});
assertStatus(response, 201);
  
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\CreateCustomerInvite\CreateCustomerInviteRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\CreateCustomerInvite\CreateCustomerInviteRequestBody;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateCustomerInviteRequestBody to learn how to construct a valid instance
$body = new CreateCustomerInviteRequestBody(/* TODO: ... */);
$request = (new CreateCustomerInviteRequest(
  customerId: "string",
  body: $body
));
$response = $client->customer()->createCustomerInvite($request);
var_dump($response->getBody();