Skip to main content
POST
/
v1
/
people
/
invite
Invite members to the organization
curl --request POST \
  --url http://localhost:3333/v1/people/invite \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "invites": [
    {
      "email": "user@example.com",
      "roles": [
        "employee"
      ]
    }
  ]
}
'

Authorizations

X-API-Key
string
header
required

API key for authentication

Body

application/json
invites
object[]
required

Response

201 - undefined