curl --request POST \
--url https://api.example.com/v2/partners/{partner_org_id}/orgs/{child_org_id}/invites \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"users": [
{
"email": "jsmith@example.com",
"role": "user"
}
]
}
'[
{
"role": "user",
"username": "jsmith@example.com"
}
]Invites users to the channel partner organization. Sends email invitations to the specified user emails with roles of user, admin, support, cloud_rep, restricted_user.
curl --request POST \
--url https://api.example.com/v2/partners/{partner_org_id}/orgs/{child_org_id}/invites \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"users": [
{
"email": "jsmith@example.com",
"role": "user"
}
]
}
'[
{
"role": "user",
"username": "jsmith@example.com"
}
]Show child attributes
Was this page helpful?