Resend the mail for a ProjectInvite
POST/project-invites/ {projectInviteId}/ actions/ resend/ 
v2
POST
project-resend-project-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/project-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.project.resendProjectInviteMail({
  "projectInviteId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 204);
  
use \Mittwald\ApiClient\Generated\V2\Clients\Project\ResendProjectInviteMail\ResendProjectInviteMailRequest;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ResendProjectInviteMailRequest(
  projectInviteId: "f0f86186-0a5a-45b2-aa33-502777496347"
));
$response = $client->project()->resendProjectInviteMail($request);
var_dump($response->getBody();