This workflow requires that the user has already registered on your EmailBison instance. If not, visit the Creating Users page to add them to your instance using the API.
Inviting Members
If you are also going to be accepting invitations, you will use the ID given in the response of this API call.
POST
request to /api/workspaces/v1.1/invite-member
.
This request takes a JSON body with the following 2 required fields:
The email of the registered user.
A role for the user. One of
admin
, editor
, client
.Show example of request
Show example of request
Accepting Invitations
You can use the API to accept invitations to workspaces on behalf of users. Send aPOST
request to /api/workspaces/v1.1/accept/{team_invitation_id}
where {team_invitation_id}
is the ID received back when inviting members.
This request does not take a body.