Create an FCA Number for a Firm

POST /api/v1/firm/{firm}/fca

Headers

Path parameters

application/json

Body Required

  • fca_number integer Required

    An FCA Number in a 6 or 7-digit format

Responses

  • 201 application/json
    Hide response attributes Show response attributes object
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": "51aaedfe-97ac-41f2-be08-2e6008f7bf66",
  "status": "verified",
  "fca_number": 123456,
  "actioned_at": "2024-10-16T11:10:12+01:00",
  "rejected_reason": "Reason for rejection"
}