POST api/User/SettingsTMS/Update

Request Information

URI Parameters

None.

Body Parameters

TMSSettingsParm
NameDescriptionTypeAdditional information
auth

string

None.

UserGUID

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.

Request Formats

application/json, text/json

Sample:
{
  "auth": "sample string 1",
  "UserGUID": "sample string 2",
  "CanChangeQuote": true,
  "AllowCreateInvoice": true,
  "BillAnyOffice": true,
  "KnownShipperOverride": true,
  "IsAdvocate": true,
  "IsGermanyLBAAuthorized": true,
  "DataRestriction": "sample string 9",
  "SecurityParms": [
    {
      "ID": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "ID": "sample string 1",
      "Value": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<TMSSettingsParm 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 9</DataRestriction>
  <IsAdvocate>true</IsAdvocate>
  <IsGermanyLBAAuthorized>true</IsGermanyLBAAuthorized>
  <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 2</UserGUID>
  <auth>sample string 1</auth>
</TMSSettingsParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</ResponseBase>