Skip to main content
POST
/
team
/
invitations
Create a team invitation
curl --request POST \
  --url https://api.engagefabric.com/team/invitations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "teammate@example.com",
  "role": "VIEWER"
}
'

Authorizations

Authorization
string
header
required

JWT token for admin console authentication

Body

application/json
email
string
required

Email address of the person to invite

Example:

"teammate@example.com"

role
enum<string>
default:VIEWER

Role to assign to the new member

Available options:
OWNER,
ADMIN,
DESIGNER,
DEVELOPER,
VIEWER

Response

Invitation created successfully