v4
latestOpenAPI 3.0.22026-08-02109239415.7 KBmanage
Add members to a specific organization
post/manage/api/organization/add_members
Query parameters
organization_idstring required
Base64 encoded organization ID to add members to
Request body
Example request
{
"members": [
{
"display_handle": "john_doe",
"email_address": "john.doe@example.com",
"user_id": "dXNlcl8xMjM"
},
{
"display_handle": "john_doe",
"email_address": "john.doe@example.com",
"user_id": "dXNlcl8xMjM"
}
]
}Response
Results of adding members to the organization
Example response
{
"results": [
{
"success": true,
"message": "message"
},
{
"success": true,
"message": "message"
}
]
}