Skip to main content
GET
/
applications
List applications
curl --request GET \
  --url https://api.synctera.com/v2/applications
{
  "applications": [
    {
      "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": "SUBMITTED",
      "type": "CREDIT",
      "creation_time": "2023-11-07T05:31:56Z",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "last_updated_time": "2023-11-07T05:31:56Z"
    }
  ],
  "next_page_token": "a8937a0d"
}

Query Parameters

customer_id
string<uuid>[]

A list of customer unique identifiers, with a comma separating any values.

business_id
string<uuid>[]

A list of business unique identifiers, with a comma separating any values.

Unique ID for the business. Exactly one of business_id or person_id must be set.

status
enum<string>

Application status values for all types of applications

Available options:
APPROVED,
CREDIT_ACCEPTED_BY_CUSTOMER,
CREDIT_APPROVED,
CREDIT_DENIED,
CREDIT_NOT_ACCEPTED_BY_CUSTOMER,
DENIED,
IN_PROGRESS,
REVIEW_INFO_REQUESTED,
REVIEW_ON_SYNCTERA,
SUBMITTED
limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

type
enum<string>

Type of application

Available options:
CREDIT,
LINE_OF_CREDIT,
RESTRICTED_ACCOUNT
sort_by
string

Optional sort by query parameter. The direction is delimited by ':' and multiple sort fields are delimited by ','

Example:

"account_id:desc,name:asc"

Response

List of applications.

applications
(Credit application details · object | Restricted account application details · object | Line of Credit application response · object)[]
required

Array of applications.

  • Credit application details
  • Restricted account application details
  • Line of Credit application response
next_page_token
string

If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

Example:

"a8937a0d"