1. Allied
汽车金融
  • 默认模块
    • 渠道商交互相关接口
      • 渠道商跳转
      • 车辆参数
    • 问题答案相关接口
      • applicationId如何感知
      • 获取问题
      • 保存答案
      • 获得上一页页码
      • 影像上传
    • 登陆鉴权接口
      • 说明文档
      • 获取Token
      • 发送验证码
      • 注册
      • 登录
      • 登出
      • 获取当前用户登录状态及数据
    • 金融机构信息接口
      GET
    • 申请单查询
      GET
    • 报表数据返回接口
      GET
    • 未命名接口
      GET
    • 数据模型
      • question
      • option
      • answer
      • token
      • application
      • [need fix]quotation
  • Allied
    • 1 - Auth
      POST
    • 2 - START APPLICATION (SAVE)
      POST
    • 3 - LIGHTNING APPLY URL
      GET
    • IntroducerCodes
      GET
    • User Codes
      GET
  • Allied / Fintorq SIT 联调(可导入版)
    • 1 - Auth
      POST
    • 2 - START APPLICATION (SAVE)
      POST
    • 3 - LIGHTNING APPLY URL
      GET
    • 4 - Introducer Codes
      GET
    • 5 - User Codes
      GET
  1. Allied

2 - START APPLICATION (SAVE)

POST
/api/applications

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Header 参数

Body 参数application/json

示例
{
  "actionCode": "SAVE",
  "application": {
    "applicantTypeCode": "PERSONAL",
    "personal": {
      "primaryApplicant": {
        "firstName": "Codex",
        "lastName": "NoNotifyTest",
        "emailAddress": "codex.allied.nonotify@example.com",
        "mobile": "0411111111"
      }
    },
    "quote": {
      "input": {
        "productCode": "PRD000001",
        "purchasePrice": 30000,
        "termCode": 60,
        "repaymentFrequencyCode": "MONTHLY"
      }
    },
    "equipment": [
      {
        "categoryCode": "EC0000020",
        "isUsed": false,
        "isRegistered": true,
        "nvic": "0HJW25"
      }
    ]
  },
  "notify": {
    "url": "https://dev.m.fintorq.com.au/api/lender/v1/callbacks/allied/finance/applications/status-updates",
    "authHeaderKey": "X-BYD-Callback-Token",
    "authHeaderValue": "49b6cb2f242986ca8bee4810ed267ad92fa98fcc2883036146af05dd18c79fab"
  },
  "identity": {
    "lenderCode": "BYD",
    "introducerCode": "D008171",
    "userCode": "OEMWebsite"
  }
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/api/applications' \
--header 'api-version: 1.0' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "actionCode": "SAVE",
  "application": {
    "applicantTypeCode": "PERSONAL",
    "personal": {
      "primaryApplicant": {
        "firstName": "Codex",
        "lastName": "NoNotifyTest",
        "emailAddress": "codex.allied.nonotify@example.com",
        "mobile": "0411111111"
      }
    },
    "quote": {
      "input": {
        "productCode": "PRD000001",
        "purchasePrice": 30000,
        "termCode": 60,
        "repaymentFrequencyCode": "MONTHLY"
      }
    },
    "equipment": [
      {
        "categoryCode": "EC0000020",
        "isUsed": false,
        "isRegistered": true,
        "nvic": "0HJW25"
      }
    ]
  },
  "notify": {
    "url": "https://dev.m.fintorq.com.au/api/lender/v1/callbacks/allied/finance/applications/status-updates",
    "authHeaderKey": "X-BYD-Callback-Token",
    "authHeaderValue": "49b6cb2f242986ca8bee4810ed267ad92fa98fcc2883036146af05dd18c79fab"
  },
  "identity": {
    "lenderCode": "BYD",
    "introducerCode": "D008171",
    "userCode": "OEMWebsite"
  }
}'

返回响应

🟢200OK
application/json
Bodyapplication/json

示例
{}
修改于 2026-08-07 10:05:20
上一页
1 - Auth
下一页
3 - LIGHTNING APPLY URL
Built with