Seccl - Get the seccl client associated with the account

GET /api/v1/addons/seccl/{addon}/client/{account_uuid}

Path parameters

  • addon string Required
  • account_uuid string Required

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • id string

      The unique identifier of the client

    • node_id string

      The node ID

    • client_type string

      The type of client

    • title string

      The title of the client

    • first_name string

      The first name of the client

    • surname string

      The surname of the client

    • address_detail object

      The address details of the client

      Hide address_detail attributes Show address_detail attributes object
      • flat_number string
      • building_name string
      • building_number string
      • address_1 string
      • address_2 string
      • country string
      • postcode string
    • email string

      The email address of the client

    • mobile object

      The primary mobile number of the client

      Hide mobile attributes Show mobile attributes object
      • number string
      • locale string
      • isMobile boolean
    • nationality string

      The primary nationality of the client

    • national_insurance_no string

      The national insurance number of the client

    • date_of_birth string

      The date of birth of the client

    • tax_domicile string

      The tax domicile of the client

    • terms_accepted boolean

      The terms accepted status of the client

    • status string

      The status of the client

    • bank_details object

      The bank details of the client

      Hide bank_details attributes Show bank_details attributes object
      • account_number string
      • sort_code string
      • accepted_debit_mandate boolean
      • accepted_debit_mandate_at string
    • vulnerability object

      The vulnerability details of the client

      Hide vulnerability attributes Show vulnerability attributes object
      • isVulnerable boolean
      • reason array[string]
      • isSupportTemporary boolean
    • aml_passed boolean

      Whether the client has passed AML checks

    • requires_debit_mandate boolean

      Does this client require a debit mandate

    • employment_status string

      The employment status of the client

    • employers array[object]

      The employers of the client

      Hide employers attributes Show employers attributes object
      • companyName string
      • companyRegNo string
      • addressDetail object
        Hide addressDetail attributes Show addressDetail attributes object
        • flat_number string
        • building_name string
        • building_number string
        • address_1 string
        • address_2 string
        • country string
        • postcode string
      • bankDetails object
        Hide bankDetails attributes Show bankDetails attributes object
        • sortCode string
        • accountNumber string
    • marital_status string

      The marital status of the client

    • retirement_age integer

      The retirement age of the client

GET /api/v1/addons/seccl/{addon}/client/{account_uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/addons/seccl/seccl/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "031DF6J",
  "email": "test@example.com",
  "title": "Ms",
  "mobile": {
    "locale": "en-GB",
    "number": "07777000000",
    "isMobile": true
  },
  "status": "Active",
  "node_id": "1",
  "surname": "Richardson",
  "employers": [
    {
      "bankDetails": {
        "sortCode": "12-34-56",
        "accountNumber": "12345678"
      },
      "companyName": "Acme Corp",
      "companyRegNo": "12345678",
      "addressDetail": {
        "country": "GB",
        "postcode": "BC1 2AB",
        "address_1": "123 Business Rd",
        "address_2": "Business City",
        "flat_number": null,
        "building_name": null,
        "building_number": "123"
      }
    }
  ],
  "aml_passed": true,
  "first_name": "Isabella",
  "client_type": "Individual",
  "nationality": "GB",
  "bank_details": {
    "sort_code": "12-34-56",
    "account_number": "12345678",
    "accepted_debit_mandate": true,
    "accepted_debit_mandate_at": "2025-01-01T00:00:00.000Z"
  },
  "tax_domicile": "GB",
  "date_of_birth": "1980-01-01",
  "vulnerability": {
    "reason": [
      "Mental Health"
    ],
    "isVulnerable": true,
    "isSupportTemporary": true
  },
  "address_detail": {
    "country": "United Kingdom",
    "postcode": "SW1A 2AA",
    "address_1": "Downing Street",
    "address_2": "Westminster",
    "flat_number": "1",
    "building_name": "The White House",
    "building_number": "1"
  },
  "marital_status": "Single",
  "retirement_age": 65,
  "terms_accepted": true,
  "employment_status": "Employed",
  "national_insurance_no": "AB123456C",
  "requires_debit_mandate": true
}