POST api/NightVigils/Create
Request Information
URI Parameters
None.
Body Parameters
NightVigil| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Title | string |
None. |
|
| YoutubeLinkList | string |
None. |
|
| Status | string |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| Deleted | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Title": "sample string 2",
"YoutubeLinkList": "sample string 3",
"Status": "sample string 4",
"CreatedDate": "2025-12-05T19:52:09.0262525-08:00",
"ModifiedDate": "2025-12-05T19:52:09.0262525-08:00",
"Deleted": "2025-12-05T19:52:09.0262525-08:00"
}
text/html
Sample:
{"Id":1,"Title":"sample string 2","YoutubeLinkList":"sample string 3","Status":"sample string 4","CreatedDate":"2025-12-05T19:52:09.0262525-08:00","ModifiedDate":"2025-12-05T19:52:09.0262525-08:00","Deleted":"2025-12-05T19:52:09.0262525-08:00"}
application/xml, text/xml
Sample:
<NightVigil xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI"> <CreatedDate>2025-12-05T19:52:09.0262525-08:00</CreatedDate> <Deleted>2025-12-05T19:52:09.0262525-08:00</Deleted> <Id>1</Id> <ModifiedDate>2025-12-05T19:52:09.0262525-08:00</ModifiedDate> <Status>sample string 4</Status> <Title>sample string 2</Title> <YoutubeLinkList>sample string 3</YoutubeLinkList> </NightVigil>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponceData| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Message | string |
None. |
|
| Success | boolean |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"Message": "sample string 2",
"Success": true,
"Data": {}
}
text/html
Sample:
{"TotalCount":1,"Message":"sample string 2","Success":true,"Data":{}}
application/xml, text/xml
Sample:
<ResponceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Formatter"> <Data /> <Message>sample string 2</Message> <Success>true</Success> <TotalCount>1</TotalCount> </ResponceData>