Create Be-IQ Risk Profile Invitation
Headers
-
Content-Type
string -
Accept
string
Body
Required
-
client_account_uuid
string Required The client which you would like to send an invitation to.
-
employee_account_uuid
string Required The employee to associate the client to in Be-IQ. This is only required for the first invitation sent.
POST
/api/v1/addons/be-iq/profiler/invite
curl \
--request POST 'https://api.plannrcrm.com/api/v1/addons/be-iq/profiler/invite' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"client_account_uuid":"ede8f939-0bd0-4306-8786-e50b6554d84a","employee_account_uuid":"028e9b36-c0bd-43c6-b274-eec3fe6eae63"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"client_account_uuid": "ede8f939-0bd0-4306-8786-e50b6554d84a",
"employee_account_uuid": "028e9b36-c0bd-43c6-b274-eec3fe6eae63"
}