Add new application

Creates a new application for the authenticated broker. Requires a JWT bearer token.

Headers
  • x-crm-platform
    Type: string
    required

    The external CRM platform name.

Body·
required
application/json
  • clients
    Type: array object[]
    required

    List of clients associated with the application.

  • isJointApplication
    Type: boolean
  • sentByEmail
    Type: boolean
Responses
  • application/json
  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

Request Example for post/v1/subscriber/applications
curl https://api.broker.v1.demo.affordx.nz/v1/subscriber/applications \
  --request POST \
  --header 'x-crm-platform: Monday' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "clients": [
    {
      "clientId": "",
      "isMainApplicant": true
    }
  ],
  "isJointApplication": true,
  "sentByEmail": true
}'
{
  "applicationId": "string",
  "clients": [
    {
      "clientId": "string",
      "clientName": "string"
    }
  ],
  "status": "string",
  "applicationDate": "2026-07-15T02:38:33.349Z",
  "accounts": 1
}