GET api/Admin/CustomerType/{id}
Allows you to get a specific Customer Type
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
ID of to get |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
with the information
ICustomerType| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Description | string |
None. |
|
| Abbreviation | string |
None. |
|
| OrderType | string |
None. |
|
| AutoShipOrderType | string |
None. |
|
| IsExtranet | boolean |
None. |
|
| IsAllowUpdateFrom | boolean |
None. |
|
| IsAllowUpdateTo | boolean |
None. |
|
| IsAllowNewProfileFromExt | boolean |
None. |
|
| ProgrammingKey | string |
None. |
|
| DefaultAutoShipCreditAccountIDOverride | integer |
None. |
Response Formats
application/xml, text/xml
Sample:
<CustomerType> <ID>0</ID> <Description /> <Abbreviation /> <OrderType /> <AutoShipOrderType /> <IsExtranet>True</IsExtranet> <IsAllowUpdateFrom>False</IsAllowUpdateFrom> <IsAllowUpdateTo>False</IsAllowUpdateTo> <IsAllowNewProfileFromExt>False</IsAllowNewProfileFromExt> <ProgrammingKey /> <DefaultAutoShipCreditAccountIDOverride /> <CreatedBy /> <DateCreated>01/01/0001 00:00:00</DateCreated> <LastModifiedBy /> <DateLastModified /> </CustomerType>
application/json, text/json
Sample:
{
"ID": 0,
"IsExtranet": true,
"IsAllowUpdateFrom": false,
"IsAllowUpdateTo": false,
"IsAllowNewProfileFromExt": false,
"DateCreated": "0001-01-01T00:00:00"
}