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":"17277b4c-c0cd-4555-9d22-2a590823200b","employee_account_uuid":"2b9adfa7-b988-4c5f-aa31-d00c53b5fef5"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "client_account_uuid": "17277b4c-c0cd-4555-9d22-2a590823200b",
  "employee_account_uuid": "2b9adfa7-b988-4c5f-aa31-d00c53b5fef5"
}