POST ContainerSealMaterial/PostContainerSealMaterial
Creates a Container Seal Material.
Request Information
URI Parameters
Body Parameters
ContainerSealAddName | 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:
<ContainerSealMaterialAdd 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> </ContainerSealMaterialAdd>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Creates a Container Seal Material.
AgvContainerSealMaterialName | Description | Type | Additional Information |
---|---|---|---|
Status |
Status of the API call. |
string | |
Message |
Message of the API call. |
string | |
Count |
Count of how many Container Seal Material Records. |
string | |
ContainerSealMaterialRecords |
JSON dictionary of ContainerSealMaterialRecords. |
Collection of ContainerSeal |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Count": "2", "ContainerSealMaterialRecords": [ { "Description": "sample string 1", "ID": "sample string 2", "ContainerSealKey": 3 }, { "Description": "sample string 1", "ID": "sample string 2", "ContainerSealKey": 3 } ] }
application/xml, text/xml
Sample:
<AgvContainerSealMaterial xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Container"> <ContainerSealMaterialRecords xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI.Inv"> <d2p1:ContainerSealMaterial> <d2p1:ContainerSealKey>3</d2p1:ContainerSealKey> <d2p1:Description>sample string 1</d2p1:Description> <d2p1:ID>sample string 2</d2p1:ID> </d2p1:ContainerSealMaterial> <d2p1:ContainerSealMaterial> <d2p1:ContainerSealKey>3</d2p1:ContainerSealKey> <d2p1:Description>sample string 1</d2p1:Description> <d2p1:ID>sample string 2</d2p1:ID> </d2p1:ContainerSealMaterial> </ContainerSealMaterialRecords> <Message>sample string 2</Message> <Status>sample string 1</Status> </AgvContainerSealMaterial>