Update a fact-find policy

PUT /api/v1/circles/{circle_uuid}/fact-find-access

This updates the fact-find access for a given member.

Path parameters

  • circle_uuid string Required
application/json

Body Required

  • account_uuid string Required

    The UUID of the circle member account to attach the access to.

  • target_account_uuid string Required

    The UUID of the circle member account that account_uuid will have access to.

  • has_fact_find_access boolean Required

    Boolean to allow/deny the access.

PUT /api/v1/circles/{circle_uuid}/fact-find-access
curl \
 --request PUT 'https://api.plannrcrm.com/api/v1/circles/6ff8f7f6-1eb3-3525-be4a-3932c805afed/fact-find-access' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"account_uuid":"0a7c0f4a-20cf-44f1-93d2-e1778edda986","target_account_uuid":"65d429a3-8bb3-452f-a5d5-eafd8bee0340","has_fact_find_access":true}'
Request examples
{
  "account_uuid": "0a7c0f4a-20cf-44f1-93d2-e1778edda986",
  "target_account_uuid": "65d429a3-8bb3-452f-a5d5-eafd8bee0340",
  "has_fact_find_access": true
}