Update a fact-find policy

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

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

application/json

Body Required

PUT /api/v1/circles/{circle_uuid}/fact-find-access
curl \
 --request PUT 'https://api.plannrcrm.com/api/v1/circles/circle_uuid/fact-find-access' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"account_uuid":"b122c205-9a2f-478f-aef8-52425d1e6218","target_account_uuid":"8901c0eb-ea25-48da-b56c-8da41b7798a6","has_fact_find_access":true}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "account_uuid": "b122c205-9a2f-478f-aef8-52425d1e6218",
  "target_account_uuid": "8901c0eb-ea25-48da-b56c-8da41b7798a6",
  "has_fact_find_access": true
}