Sends an invitation to add a user to the specified client account.
POST
/platform/v1/clients/{clientId}/users/invite
curl \
--request POST 'https://api.pre.lwolf.com/platform/v1/clients/{clientId}/users/invite' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "lw-subscription-key: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"email":"hello@example.com"}'
Request examples
{
"email": "hello@example.com"
}
Response examples (400)
{
"error": "string",
"message": "string"
}
Response examples (401)
{
"error": "string",
"message": "string"
}
Response examples (403)
{
"error": "string",
"message": "string"
}
Response examples (404)
{
"error": "string",
"message": "string"
}