# Team collaborators

This API allow you to manage collaborators in your managed customer accounts. If you want to work with collaborators in your current team, please use the platform API for team.

# Quick reference

Type Resource Description
POST /api/managed_users/:id/member_invitation Invites a collaborator to your team.

# Invite collaborator to managed customer account

Invites a collaborator to a managed customer account's 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/managed_users/:id/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/managed_users/123/member_invitations \
      -H 'Authorization: Bearer <api_token>' \
      -d '{"name":"John", "email":"john@acme.com", "role_name":"Admin"}'

# Response

{
    "result": "ok"
}


Last updated: 1/12/2024, 4:26:53 PM