Sazabi
APIMembers

Invite a member

POST
/members/invitations

Invite a person to the organization by email.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/members/invitations" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com"  }'
{  "invitation": {    "id": "string",    "email": "user@example.com",    "role": "admin",    "status": "string",    "createdAt": "2019-08-24T14:15:22Z",    "expiresAt": "2019-08-24T14:15:22Z"  }}