POST api/Meeting/Save
Request Information
URI Parameters
None.
Body Parameters
MeetingSaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| MeetingDesc | string |
Required String length: inclusive between 0 and 100 |
|
| MeetingYear | integer |
Required |
|
| Venue | string |
String length: inclusive between 0 and 300 |
|
| StartDate | string |
Required |
|
| EndDate | string |
Required |
|
| Remarks | string |
String length: inclusive between 0 and 300 |
|
| MeetingTypeId | integer |
Required |
|
| RelationId | integer |
None. |
|
| RelationSlno | integer |
None. |
|
| Status | string |
Required Matching regular expression pattern: A|I |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required String length: inclusive between 0 and 20 |
Request Formats
application/json, text/json
Sample:
{
"BookId": 1,
"MeetingDesc": "sample string 2",
"MeetingYear": 3,
"Venue": "sample string 4",
"StartDate": "sample string 5",
"EndDate": "sample string 6",
"Remarks": "sample string 7",
"MeetingTypeId": 8,
"RelationId": 9,
"RelationSlno": 10,
"Status": "sample string 11",
"CreateUser": 12,
"CreateIp": "sample string 13"
}
application/xml, text/xml
Sample:
<MeetingSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <BookId>1</BookId> <CreateIp>sample string 13</CreateIp> <CreateUser>12</CreateUser> <EndDate>sample string 6</EndDate> <MeetingDesc>sample string 2</MeetingDesc> <MeetingTypeId>8</MeetingTypeId> <MeetingYear>3</MeetingYear> <RelationId>9</RelationId> <RelationSlno>10</RelationSlno> <Remarks>sample string 7</Remarks> <StartDate>sample string 5</StartDate> <Status>sample string 11</Status> <Venue>sample string 4</Venue> </MeetingSaveVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.