Update a fact-find policy
This updates the fact-find access for a given member.
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
circle_uuid
integer Required
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/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":"c04a205a-5a1c-448b-96ac-0a70dc0e33ea","target_account_uuid":"111f121b-289b-46f9-862e-0e975a852d51","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": "c04a205a-5a1c-448b-96ac-0a70dc0e33ea",
"target_account_uuid": "111f121b-289b-46f9-862e-0e975a852d51",
"has_fact_find_access": true
}