GET ContainerSealMaterial/GetContainerSealMaterials
Returns a list of Container Seal Materials.
Request Information
URI Parameters
Body Parameters
Response Information
Resource Description
Returns a list of Container Seal Materials.
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>