POST api/MiscMasters/get_state_banks

Documentation for 'get_state_banks'.

Request Information

Parameters

NameDescriptionAdditional information
model
Documentation for 'model'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "State": "sample string 1",
  "Token": "sample string 2",
  "AuthString": "sample string 3",
  "DateOfData": "sample string 4"
}

application/xml, text/xml

Sample:
<RequestModelBanks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.Bank">
  <AuthString>sample string 3</AuthString>
  <DateOfData>sample string 4</DateOfData>
  <State>sample string 1</State>
  <Token>sample string 2</Token>
</RequestModelBanks>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RequestModelBanks'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "AckCode": "sample string 2",
  "Status": "sample string 3",
  "Remarks": "sample string 4",
  "DateOfData": "sample string 5",
  "Banks": [
    {
      "BankCode": "sample string 1",
      "BankName": "sample string 2",
      "BankShortName": "sample string 3"
    },
    {
      "BankCode": "sample string 1",
      "BankName": "sample string 2",
      "BankShortName": "sample string 3"
    },
    {
      "BankCode": "sample string 1",
      "BankName": "sample string 2",
      "BankShortName": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ResponseModelBanks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.Bank">
  <AckCode>sample string 2</AckCode>
  <Banks xmlns:d2p1="http://schemas.datacontract.org/2004/07/BLL">
    <d2p1:ModelBank>
      <d2p1:BankCode>sample string 1</d2p1:BankCode>
      <d2p1:BankName>sample string 2</d2p1:BankName>
      <d2p1:BankShortName>sample string 3</d2p1:BankShortName>
    </d2p1:ModelBank>
    <d2p1:ModelBank>
      <d2p1:BankCode>sample string 1</d2p1:BankCode>
      <d2p1:BankName>sample string 2</d2p1:BankName>
      <d2p1:BankShortName>sample string 3</d2p1:BankShortName>
    </d2p1:ModelBank>
    <d2p1:ModelBank>
      <d2p1:BankCode>sample string 1</d2p1:BankCode>
      <d2p1:BankName>sample string 2</d2p1:BankName>
      <d2p1:BankShortName>sample string 3</d2p1:BankShortName>
    </d2p1:ModelBank>
  </Banks>
  <DateOfData>sample string 5</DateOfData>
  <Remarks>sample string 4</Remarks>
  <Status>sample string 3</Status>
  <Token>sample string 1</Token>
</ResponseModelBanks>