Skip to main content
POST
/
integrators
/
{integratorId}
/
members
Invite a new team member
curl --request POST \
  --url http://localhost:4000/v1/integrators/{integratorId}/members \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "internal_role": "viewer"
}
'

Path Parameters

integratorId
string
required

Integrator UUID

Body

application/json
email
string
required

Email of the user to invite

Example:

"user@example.com"

internal_role
enum<string>
required

Role to assign to the invited member

Available options:
admin,
manager,
auditor,
viewer
Example:

"viewer"

Response

201

Invite created