PUT api/Content/v3/GetAppSetting/{customerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

AppSettingResponse
NameDescriptionTypeAdditional information
PaypalClientId

string

None.

IsPaypalSendbox

boolean

None.

SupportEmail

string

None.

IsExternalMap

boolean

None.

ModuleList

Collection of string

None.

IsNewAuthentication

boolean

None.

SocialLogin

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "PaypalClientId": "sample string 1",
  "IsPaypalSendbox": true,
  "SupportEmail": "sample string 3",
  "IsExternalMap": true,
  "ModuleList": [
    "sample string 1",
    "sample string 2"
  ],
  "IsNewAuthentication": true,
  "SocialLogin": true
}

application/xml, text/xml

Sample:
<AppSettingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <IsExternalMap>true</IsExternalMap>
  <IsNewAuthentication>true</IsNewAuthentication>
  <IsPaypalSendbox>true</IsPaypalSendbox>
  <ModuleList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ModuleList>
  <PaypalClientId>sample string 1</PaypalClientId>
  <SocialLogin>true</SocialLogin>
  <SupportEmail>sample string 3</SupportEmail>
</AppSettingResponse>