v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Accounts

Get account application

Get account application given application ID in the path.

get/acquisitions/v2/s2s/applications/{applicationId}

Path parameters

applicationIdinteger required
Example:12345

Application ID

Response

OK

application_idinteger required

Application form ID (non-checking accounts only)

program_due_date_idinteger required

ID of Program due date

program_idnumber required

Pismo program ID.

acquisition_channel_idinteger required

Application's acquisition channel ID. An acquisition channel is how a customer was referred to the site, such as through a web app or mobile app.

You can call List acquistion channels to find channels registered for your account.

created_atstring date-time required

Datetime program calendar strategy was created. Format = YYYY-MM-DDTHH:MM:SS:MM.

application_statusnumber required

Application status, according to the status mapping (non-checking accounts only).

application_status_namestring required

Application status. Most likely to be

  • REGISTERED - Application was saved, but not started processing yet.
  • APPROVED - Application has finished processing.
  • PROSPECT - Application was created with submit = false.
application_formApplicationForm required

Key/value field that contains all fields from the application form. This data can be used to verify the application form during onboarding. It should not be used to obtain data after the account is approved. After the final status of the application form (such as APPROVED or CANCELLED), this data is kept as read-only and is not updated.

Example response

{
  "application_id": 1234,
  "program_due_date_id": 1234,
  "program_id": 1010,
  "acquisition_channel_id": 111,
  "created_at": "2024-09-12T16:46:16.43663522",
  "application_status": 4,
  "application_status_name": "APPROVED",
  "application_form": {
    "id": 1234,
    "submit": true,
    "applicant": {
      "entity": {
        "name": "John Doe",
        "entity_type": "PERSON",
        "document_number": "31384509038"
      },
      "account": {
        "email": "johndoe@test.com",
        "limit": 50000
      },
      "customer": {
        "nickname": "John",
        "social_name": "John Doe",
        "printed_name": "John Doe"
      }
    }
  }
}