GET api/ProductTypes/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductTypeData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Updated | date |
None. |
|
| IosType | integer |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "ba028722-ac4e-416a-9a51-525a57103359",
"Identifier": "sample string 1",
"Name": "sample string 2",
"Updated": "2025-12-15T23:41:16.2756515-05:00",
"IosType": 1,
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<ProductTypeData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <Id>ba028722-ac4e-416a-9a51-525a57103359</Id> <Identifier>sample string 1</Identifier> <IosType>1</IosType> <IsDeleted>1</IsDeleted> <Name>sample string 2</Name> <Updated>2025-12-15T23:41:16.2756515-05:00</Updated> </ProductTypeData>