POST
/
applications
Create an application
curl --request POST \
  --url https://api.synctera.com/v1/applications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "account_type": "LINE_OF_CREDIT",
  "applicants": [
    {
      "adverse_action_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "business_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "credit_score_ids": [
        "7d943c51-e4ff-4e57-9558-08cab6b963c7"
      ],
      "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "is_primary": true,
      "underwriting_data": [
        {
          "request_time": "2023-11-07T05:31:56Z",
          "vendor": "PLAID",
          "vendor_info": {}
        }
      ]
    }
  ],
  "application_submitted_time": "2023-01-13T23:59:59Z",
  "credit_decision_time": "2023-01-13T23:59:59Z",
  "customer_response_time": "2023-01-13T23:59:59Z",
  "purpose": "ACCOUNT_OPENING",
  "status": "CREDIT_ACCEPTED_BY_CUSTOMER",
  "type": "CREDIT"
}'
{
  "application_details": {
    "sections": [
      {
        "fintech_section_id": "<string>",
        "pages": [
          {
            "fintech_page_id": "<string>",
            "items": [
              {
                "answer": "<string>",
                "fintech_item_id": "<string>",
                "question": "<string>",
                "type": "DOCUMENT"
              }
            ],
            "title": "<string>"
          }
        ],
        "title": "<string>"
      }
    ]
  },
  "business_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "description": "<string>",
  "status": "APPROVED",
  "type": "CREDIT",
  "creation_time": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "last_updated_time": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Application model.

The body is of type object.

Response

201
application/json

Application created.

The response is of type object.