Create a ProjectInvite
POST/projects/ {projectId}/ invites/ 
v2
POST
project-create-project-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:52.293Z","message":"string","role":"notset"}' \
    -H "Authorization: Bearer $MITTWALD_API_TOKEN" \
    -H 'Content-Type: application/json' \
    https://api.mittwald.de/v2/projects/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.project.createProjectInvite({
  "projectId": "string",
  "data": {
    "mailAddress": "email@mittwald.example",
    "membershipExpiresAt": "2025-11-03T18:08:52.293Z",
    "message": "string",
    "role": "notset"
  }
});
assertStatus(response, 201);
  
use \Mittwald\ApiClient\Generated\V2\Clients\Project\CreateProjectInvite\CreateProjectInviteRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Project\CreateProjectInvite\CreateProjectInviteRequestBody;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateProjectInviteRequestBody to learn how to construct a valid instance
$body = new CreateProjectInviteRequestBody(/* TODO: ... */);
$request = (new CreateProjectInviteRequest(
  projectId: "string",
  body: $body
));
$response = $client->project()->createProjectInvite($request);
var_dump($response->getBody();