POST api/Band
Request Information
URI Parameters
None.
Body Parameters
Band| Name | Description | Type | Additional information |
|---|---|---|---|
| BandId | integer |
None. |
|
| BandName | string |
None. |
|
| BandType | integer |
None. |
|
| CreatedDate | date |
Data type: DateTime |
|
| CreatedBy | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"BandId": 1,
"BandName": "sample string 2",
"BandType": 3,
"CreatedDate": "2025-12-08T01:08:20.7832113+05:30",
"CreatedBy": "sample string 5"
}
application/xml, text/xml
Sample:
<Band xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Domain.Entities"> <CreatedBy>sample string 5</CreatedBy> <CreatedDate>2025-12-08T01:08:20.7832113+05:30</CreatedDate> <BandId>1</BandId> <BandName>sample string 2</BandName> <BandType>3</BandType> </Band>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |