# Team

This API allow users to manage collaborators in your team.

# Quick reference

Type Resource Description
POST /api/member_invitations Invites a collaborator to your team.

# Invite collaborator

Invites a collaborator to your team. If the email does not belong to an existing user, an email invite will be sent. The collaborators will be able to join the team after they have created a Workato account.

POST /api/member_invitations

# Payload

Name Type Description
name string
required
The name of the collaborator.
email string
required
The email of the collaborator.
role_name string
required
The role to assign the collaborator.

# Sample request

curl  -X POST https://www.workato.com/api/member_invitations \
      -H 'Authorization: Bearer <api_token>'
      -d '{"name":"John", "email":"john@acme.com", "role_name":"Admin"}'

# Response

{
    "result": "ok"
}