Update a fact-find policy Run in API Explorer
Ask AI
This updates the fact-find access for a given member.
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": "f976ea7a-7372-4646-954c-e9b47cbebf47",
"target_account_uuid": "af449ca4-b9d4-4abd-bb0f-032fe9aa4750",
"has_fact_find_access": true
}'
Request examples
{
"account_uuid": "f976ea7a-7372-4646-954c-e9b47cbebf47",
"target_account_uuid": "af449ca4-b9d4-4abd-bb0f-032fe9aa4750",
"has_fact_find_access": true
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}