POST api/Bank

Request Information

URI Parameters

None.

Body Parameters

Bank
NameDescriptionTypeAdditional information
RecordNo

integer

None.

BankName

string

None.

SortCode

integer

None.

CreatedOn

date

None.

UpdatedOn

date

None.

IsDeleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "RecordNo": 1,
  "BankName": "sample string 2",
  "SortCode": 3,
  "CreatedOn": "2024-04-19T19:01:32.4317744+00:00",
  "UpdatedOn": "2024-04-19T19:01:32.4317744+00:00",
  "IsDeleted": true
}

application/xml, text/xml

Sample:
<Bank xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrishAcademy.Models">
  <BankName>sample string 2</BankName>
  <CreatedOn>2024-04-19T19:01:32.4317744+00:00</CreatedOn>
  <IsDeleted>true</IsDeleted>
  <RecordNo>1</RecordNo>
  <SortCode>3</SortCode>
  <UpdatedOn>2024-04-19T19:01:32.4317744+00:00</UpdatedOn>
</Bank>

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 'Bank'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.