GET api/CustomerTerms/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerTermData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Updated | date |
None. |
|
| IosTermsCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "598f38e7-333a-4217-8f73-f98b3bf4b188",
"Identifier": "sample string 1",
"Name": "sample string 2",
"Updated": "2025-12-15T23:41:15.665237-05:00",
"IosTermsCode": 1
}
application/xml, text/xml
Sample:
<CustomerTermData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <Id>598f38e7-333a-4217-8f73-f98b3bf4b188</Id> <Identifier>sample string 1</Identifier> <IosTermsCode>1</IosTermsCode> <Name>sample string 2</Name> <Updated>2025-12-15T23:41:15.665237-05:00</Updated> </CustomerTermData>