Get all FCA Numbers for a Firm
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
GET /api/v1/firm/{firm}/fca
curl \
-X GET 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}"
Response examples (200)
{
"data": [
{
"uuid": "c3158f29-1b37-4a39-b161-12c24789b02a",
"status": "verified",
"fca_number": 123456,
"actioned_at": "2024-11-20T13:23:59+00:00",
"rejected_reason": "Reason for rejection"
}
]
}