Get account

GET /closeAPI/api/close/account/{id}

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • number string
    • accountType string
    • description string
    • parent object
      Hide parent attributes Show parent attributes object
      • id integer
      • name string
      • number string
    • taskCount integer(int64)
    • disclosureType string
    • numberOfAccountsToDelete integer(int32)
    • accountTypeId integer
    • disclosureTypeId integer
    • statusList array[object]
      Hide statusList attributes Show statusList attributes object
      • id integer
      • status string
GET /closeAPI/api/close/account/{id}
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/account/{id}'
Response examples (200)
{
  "id": 42,
  "name": "string",
  "number": "string",
  "accountType": "string",
  "description": "string",
  "parent": {
    "id": 42,
    "name": "string",
    "number": "string"
  },
  "taskCount": 42,
  "disclosureType": "string",
  "numberOfAccountsToDelete": 42,
  "accountTypeId": 42,
  "disclosureTypeId": 42,
  "statusList": [
    {
      "id": 42,
      "status": "string"
    }
  ]
}