# 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 a collaborator

Invite a collaborator to your team. If the email you provide does not belong to an existing user, the API sends an email invitation. Collaborators can join your team after they create a Workato account. Note that you can only invite a specific email and workspace combination once every 20 minutes, and this functionality is restricted to the development (dev) environment.

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"
}


Last updated: 3/29/2024, 3:29:21 PM