GET api/admin/RepEntityType/{repEntityTypeID}
Returns information on a specific rep type. Accessible to BackOffice Users and Representatives.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| repEntityTypeID |
Rep type identifier that we want to retrieve the information |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Information for the rep type that matches the passed in repEntityTypeID
IRepEntityType| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Description | string |
None. |
|
| IsElegibleFor1099 | boolean |
None. |
|
| IsActive | boolean |
None. |
|
| SortOrder | integer |
None. |
|
| IsBusiness | boolean |
None. |
|
| SSNLabel | string |
None. |
|
| InventoryCollectionTypeID | integer |
None. |
Response Formats
application/xml, text/xml
Sample:
<RepEntityType> <ID>0</ID> <Description /> <IsElegibleFor1099>False</IsElegibleFor1099> <IsActive>False</IsActive> <IsBusiness>False</IsBusiness> <SortOrder>0</SortOrder> <SSNLabel /> <InventoryCollectionTypeID /> <CreatedBy /> <DateCreated>01/01/0001 00:00:00</DateCreated> <LastModifiedBy /> <DateLastModified /> </RepEntityType>
application/json, text/json
Sample:
{
"ID": 0,
"IsElegibleFor1099": false,
"IsActive": false,
"IsBusiness": false,
"SortOrder": 0,
"DateCreated": "0001-01-01T00:00:00"
}