GET api/v2/tenant/getTenantSettingsForKey?TenantId={TenantId}&Key={Key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| TenantId | globally unique identifier |
None. |
|
| Key | string |
None. |
Body Parameters
None.
Response Information
Resource Description
GetTenantSettingsResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
None. |
|
| Value | string |
None. |
|
| Succeeded | boolean |
None. |
|
| Errors | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Key": "sample string 1",
"Value": "sample string 2",
"Succeeded": true,
"Errors": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<GetTenantSettingsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models.v2.Result">
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Errors>
<Succeeded xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">true</Succeeded>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</GetTenantSettingsResult>