POST api/State
Request Information
URI Parameters
None.
Body Parameters
StateName | Description | Type | Additional information |
---|---|---|---|
RecordNo | integer |
None. |
|
StateName | string |
None. |
|
CountryFK | integer |
None. |
|
CreatedOn | date |
None. |
|
UpdatedOn | date |
None. |
|
IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "RecordNo": 1, "StateName": "sample string 2", "CountryFK": 3, "CreatedOn": "2024-12-22T23:09:21.0461846+00:00", "UpdatedOn": "2024-12-22T23:09:21.0461846+00:00", "IsDeleted": true }
application/xml, text/xml
Sample:
<State xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrishAcademy.Models"> <CountryFK>3</CountryFK> <CreatedOn>2024-12-22T23:09:21.0461846+00:00</CreatedOn> <IsDeleted>true</IsDeleted> <RecordNo>1</RecordNo> <StateName>sample string 2</StateName> <UpdatedOn>2024-12-22T23:09:21.0461846+00:00</UpdatedOn> </State>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.