Create an FCA Number for a Firm
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
An FCA Number in a 6 or 7-digit format
POST
/api/v1/firm/{firm}/fca
curl \
-X POST https://api.plannrcrm.com/api/v1/firm/firm/fca \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"fca_number":123456}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"fca_number": 123456
}
Response examples (201)
{
"uuid": "9e381e6b-63b7-428b-83c9-5aba1c9cf3e6",
"status": "verified",
"fca_number": 123456,
"actioned_at": "2025-01-17T11:18:27+00:00",
"rejected_reason": "Reason for rejection"
}