POST api/Enquiry/SendAccountStatment

Request Information

URI Parameters

None.

Body Parameters

SendEmailRequest
NameDescriptionTypeAdditional information
Email

string

None.

AccountNumber

string

None.

StartDate

string

None.

Enddate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "AccountNumber": "sample string 2",
  "StartDate": "sample string 3",
  "Enddate": "sample string 4"
}

application/xml, text/xml

Sample:
<SendEmailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <AccountNumber>sample string 2</AccountNumber>
  <Enddate>sample string 4</Enddate>
  <StartDate>sample string 3</StartDate>
  <Email>sample string 1</Email>
</SendEmailRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SendStatementResponse
NameDescriptionTypeAdditional information
ResponseCode

string

None.

ResponseMessage

string

None.

RequestId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2",
  "RequestId": "sample string 3"
}

application/xml, text/xml

Sample:
<SendStatementResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <RequestId>sample string 3</RequestId>
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
</SendStatementResponse>