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":"dc5e37eb-4f57-4bab-99a5-f9b0c9d858f4","employee_account_uuid":"c3a719f1-34ef-4735-a11a-6e84d3e1cbe3"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "client_account_uuid": "dc5e37eb-4f57-4bab-99a5-f9b0c9d858f4",
  "employee_account_uuid": "c3a719f1-34ef-4735-a11a-6e84d3e1cbe3"
}