POST ContainerConstructionMaterial/PostContainerConstructionMaterial
Creates a Container Construction Material.
Request Information
URI Parameters
Body Parameters
ContainerConstructionAdd| Name | Description | Type | Additional Information |
|---|---|---|---|
| Description | string |
Max length: 50 |
|
| ID | string |
Required Max length: 10 |
Request Formats
application/json, text/json
Sample:
{
"Description": "sample string 1",
"ID": "sample string 2"
}
application/xml, text/xml
Sample:
<ContainerConstructionMaterialAdd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSI.Inv"> <Description>sample string 1</Description> <ID>sample string 2</ID> </ContainerConstructionMaterialAdd>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Creates a Container Construction Material.
AgvContainerConstructionMaterial| Name | Description | Type | Additional Information |
|---|---|---|---|
| Status |
Status of the API call. |
string | |
| Message |
Message of the API call. |
string | |
| Count |
Count of how many Container Construction Material Records. |
string | |
| ContainerConstructionMaterialRecords |
JSON dictionary of ContainerConstructionMaterialRecords. |
Collection of ContainerConstruction |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"Count": "2",
"ContainerConstructionMaterialRecords": [
{
"Description": "sample string 1",
"ID": "sample string 2",
"ContainerConstructionKey": 3
},
{
"Description": "sample string 1",
"ID": "sample string 2",
"ContainerConstructionKey": 3
}
]
}
application/xml, text/xml
Sample:
<AgvContainerConstructionMaterial xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Container">
<ContainerConstructionMaterialRecords xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI.Inv">
<d2p1:ContainerConstructionMaterial>
<d2p1:ContainerConstructionKey>3</d2p1:ContainerConstructionKey>
<d2p1:Description>sample string 1</d2p1:Description>
<d2p1:ID>sample string 2</d2p1:ID>
</d2p1:ContainerConstructionMaterial>
<d2p1:ContainerConstructionMaterial>
<d2p1:ContainerConstructionKey>3</d2p1:ContainerConstructionKey>
<d2p1:Description>sample string 1</d2p1:Description>
<d2p1:ID>sample string 2</d2p1:ID>
</d2p1:ContainerConstructionMaterial>
</ContainerConstructionMaterialRecords>
<Message>sample string 2</Message>
<Status>sample string 1</Status>
</AgvContainerConstructionMaterial>