POST api/Assembly/Save
Request Information
URI Parameters
None.
Body Parameters
AssemblyDefSave| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| AssemblyDesc | string |
Required String length: inclusive between 0 and 100 |
|
| Code | string |
String length: inclusive between 0 and 10 |
|
| StartDate | string |
Required |
|
| EndDate | string |
Required |
|
| Status | string |
Required Matching regular expression pattern: A|I |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required String length: inclusive between 0 and 20 |
|
| AgeBarrier | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"BookId": 1,
"AssemblyDesc": "sample string 2",
"Code": "sample string 3",
"StartDate": "sample string 4",
"EndDate": "sample string 5",
"Status": "sample string 6",
"CreateUser": 7,
"CreateIp": "sample string 8",
"AgeBarrier": 9
}
application/xml, text/xml
Sample:
<AssemblyDefSave xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <AgeBarrier>9</AgeBarrier> <AssemblyDesc>sample string 2</AssemblyDesc> <BookId>1</BookId> <Code>sample string 3</Code> <CreateIp>sample string 8</CreateIp> <CreateUser>7</CreateUser> <EndDate>sample string 5</EndDate> <StartDate>sample string 4</StartDate> <Status>sample string 6</Status> </AssemblyDefSave>
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.