Get all FCA Numbers for a Firm

GET /api/v1/firm/{firm}/fca

Path parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
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": "8b196c2d-92d4-49c0-9aec-eb0d9cd85b00",
      "status": "verified",
      "fca_number": 123456,
      "actioned_at": "2024-10-16T11:10:12+01:00",
      "rejected_reason": "Reason for rejection"
    }
  ]
}