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":"388936a6-8d14-4108-96c0-c4fbe5c9a16d","employee_account_uuid":"d19d20bd-dcc3-4a69-ad9c-254577cf2d74"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"client_account_uuid": "388936a6-8d14-4108-96c0-c4fbe5c9a16d",
"employee_account_uuid": "d19d20bd-dcc3-4a69-ad9c-254577cf2d74"
}