GET api/User/SettingsTMS/{auth}/{UserID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| auth | string |
Required |
|
| UserID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TMSSettingsResp| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGUID | string |
None. |
|
| IsSuccessful | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| CanChangeQuote | boolean |
None. |
|
| AllowCreateInvoice | boolean |
None. |
|
| BillAnyOffice | boolean |
None. |
|
| KnownShipperOverride | boolean |
None. |
|
| IsAdvocate | boolean |
None. |
|
| IsGermanyLBAAuthorized | boolean |
None. |
|
| DataRestriction | string |
None. |
|
| SecurityParms | Collection of SecurityParm |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserGUID": "sample string 1",
"IsSuccessful": true,
"ErrorMessage": "sample string 3",
"CanChangeQuote": true,
"AllowCreateInvoice": true,
"BillAnyOffice": true,
"KnownShipperOverride": true,
"IsAdvocate": true,
"IsGermanyLBAAuthorized": true,
"DataRestriction": "sample string 10",
"SecurityParms": [
{
"ID": "sample string 1",
"Value": "sample string 2"
},
{
"ID": "sample string 1",
"Value": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<TMSSettingsResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models">
<AllowCreateInvoice>true</AllowCreateInvoice>
<BillAnyOffice>true</BillAnyOffice>
<CanChangeQuote>true</CanChangeQuote>
<DataRestriction>sample string 10</DataRestriction>
<ErrorMessage>sample string 3</ErrorMessage>
<IsAdvocate>true</IsAdvocate>
<IsGermanyLBAAuthorized>true</IsGermanyLBAAuthorized>
<IsSuccessful>true</IsSuccessful>
<KnownShipperOverride>true</KnownShipperOverride>
<SecurityParms>
<SecurityParm>
<ID>sample string 1</ID>
<Value>sample string 2</Value>
</SecurityParm>
<SecurityParm>
<ID>sample string 1</ID>
<Value>sample string 2</Value>
</SecurityParm>
</SecurityParms>
<UserGUID>sample string 1</UserGUID>
</TMSSettingsResp>