GET api/v1/ContainerType/AllContainerTypes

Query container type information.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ContainerTypeObjs
NameDescriptionTypeAdditional information
types

Collection of api_GetContainerTypes_Result

None.

Response Formats

application/json, text/json

Sample:
{
  "types": [
    {
      "containertypeid": 1,
      "containertypename": "sample string 2"
    },
    {
      "containertypeid": 1,
      "containertypename": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ContainerTypeObjs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/nfuels_api.Controllers">
  <types xmlns:d2p1="http://schemas.datacontract.org/2004/07/NFuels_Database.database.portal">
    <d2p1:api_GetContainerTypes_Result>
      <d2p1:containertypeid>1</d2p1:containertypeid>
      <d2p1:containertypename>sample string 2</d2p1:containertypename>
    </d2p1:api_GetContainerTypes_Result>
    <d2p1:api_GetContainerTypes_Result>
      <d2p1:containertypeid>1</d2p1:containertypeid>
      <d2p1:containertypename>sample string 2</d2p1:containertypename>
    </d2p1:api_GetContainerTypes_Result>
  </types>
</ContainerTypeObjs>