GetAccountRequestsByAccountIdResponse

  • accountNumber
    Type: string | null
  • requests
    Type: array object[] | null · AccountRequestByAccountId[]
    • createdAtUtc
      Type: string Format: date-time

      the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z

    • id
      Type: string Format: uuid
    • requestType
      Type: string | null
    • status
      Type: string | null
Examples
{
  "accountNumber": "111888",
  "requests": [
    {
      "id": "8f2b6c14-9d0a-4e35-b7c8-2a1f5d3e7b46",
      "requestType": "HinStockTransfer",
      "status": "Pending",
      "createdAtUtc": "2025-06-11T23:45:12Z"
    }
  ]
}