POST
/api/v1/firm/{firm}/fca
curl \
--request POST 'https://api.plannrcrm.com/api/v1/firm/architecto/fca' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"fca_number":123456}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"fca_number": 123456
}
Response examples (201)
{
"uuid": "b97d799c-972d-4153-a192-6c8e80ccba98",
"status": "verified",
"fca_number": 123456,
"actioned_at": "2025-07-17T16:23:17+01:00",
"rejected_reason": "Reason for rejection"
}