Headers

application/json

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":"1260c930-22b6-4c4e-bfe2-754bda4fa460","employee_account_uuid":"a9a898b1-36e2-4ca6-a31c-fb0ecfb747a1"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "client_account_uuid": "1260c930-22b6-4c4e-bfe2-754bda4fa460",
  "employee_account_uuid": "a9a898b1-36e2-4ca6-a31c-fb0ecfb747a1"
}