v1

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

List accounts by document number

Search for accounts by document_number. You can also optionally specify program_ID or account_status.

post/accounts/v3/accounts/search

Query parameters

pageinteger

Page number.

perPageinteger

Items per page

Request body

document_numberstring required

Cardholder government document number. This can be from any document that identifies the cardholder such as a Tax ID, State ID, or driver's license.

program_idnumber

Pismo program ID.

account_statusstring

Account status. The pre-defined account statuses are DEBIT_ONLY, NORMAL, BLOCKED, and CANCELLED. You can create your own account statuses with the Create status endpoint.

Example request

{
  "document_number": "7777888hh",
  "program_id": 1010,
  "account_status": "NORMAL"
}

Response

Account returned

account_idinteger

Account ID

customer_idinteger

Pismo customer ID.

account_statusstring

Account status. The pre-defined account statuses are DEBIT_ONLY, NORMAL, BLOCKED, and CANCELLED. You can create your own account statuses with the Create status endpoint.

acquisition_idinteger

ID of the application form that originated the account

program_idnumber

Pismo program ID.

Example response

[
  {
    "account_id": 6912345,
    "customer_id": 5648988,
    "account_status": "NORMAL",
    "acquisition_id": 1234,
    "program_id": 1010
  }
]