GET boxtype/{id}

Find a Box Type by id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

BoxType
NameDescriptionTypeAdditional information
Id

integer

None.

Description

string

None.

Active

boolean

None.

Cardless

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "description": "sample string 1",
  "active": true,
  "cardless": true
}

application/xml, text/xml

Sample:
<BoxType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Active>true</Active>
  <Cardless>true</Cardless>
  <Description>sample string 1</Description>
  <Id>1</Id>
</BoxType>