POST
/
api
/
b
/
u
/
invitations
Add Brand User Invitation
curl --request POST \
  --url https://platform.grorapid.com/api/b/u/invitations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "buuid": "<buuid>",
  "first_name": "Rahul",
  "last_name": "Kumar",
  "email": "user@example.com",
  "role_id": "<uuid>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
buuid
string
required
first_name
string
required
last_name
string
required
email
string<email>
required
role_id
string
required

Response

201 - application/json

Successful response.

The response is of type object.