POST api/v1/statement/customer-statement-request

Request Information

URI Parameters

None.

Body Parameters

CustomerStatementRequest
NameDescriptionTypeAdditional information
AccountNumber

string

Required

Matching regular expression pattern: (^[0-9]+$)

StartDate

date

None.

EndDate

date

None.

FormatTypeId

integer

None.

RequestId

string

Required

Matching regular expression pattern: (^(?=.{4,50}$)([ A-Za-z0-9.|/-]+$))

Requester

string

Matching regular expression pattern: (^[ A-Za-z0-9._|/-]+$)

String length: inclusive between 0 and 20

CountryId

string

Required

Request Formats

application/json, text/json

Sample:
{
  "AccountNumber": "sample string 1",
  "StartDate": "2026-02-24T03:27:58.1325081+00:00",
  "EndDate": "2026-02-24T03:27:58.1325081+00:00",
  "FormatTypeId": 4,
  "RequestId": "sample string 5",
  "Requester": "sample string 6",
  "CountryId": "sample string 7"
}

application/xml, text/xml

Sample:
<CustomerStatementRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FirstBank.Statement.CoreObject.DataTransferObjects">
  <CountryId>sample string 7</CountryId>
  <RequestId>sample string 5</RequestId>
  <Requester>sample string 6</Requester>
  <AccountNumber>sample string 1</AccountNumber>
  <EndDate>2026-02-24T03:27:58.1325081+00:00</EndDate>
  <FormatTypeId>4</FormatTypeId>
  <StartDate>2026-02-24T03:27:58.1325081+00:00</StartDate>
</CustomerStatementRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.