GET api/v1/global_settings
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
GlobalSetting| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
|
| image_id | string |
None. |
|
| color | string |
None. |
|
| background_color | string |
None. |
|
| manual | File |
None. |
|
| client_name | string |
None. |
|
| language | CodeListSystem |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "3a7a8c21-9b8e-41d4-838a-10e704ad8da2",
"image_id": "sample string 2",
"color": "sample string 3",
"background_color": "sample string 4",
"manual": {
"id": "bab7be9e-40db-4e41-a522-d8835aecb571",
"name": "sample string 2"
},
"client_name": "sample string 5",
"language": {
"id": 1,
"name": "sample string 2",
"name_en": "sample string 3",
"code": "sample string 4"
}
}
application/xml, text/xml
Sample:
<GlobalSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models">
<background_color>sample string 4</background_color>
<client_name>sample string 5</client_name>
<color>sample string 3</color>
<id>3a7a8c21-9b8e-41d4-838a-10e704ad8da2</id>
<image_id>sample string 2</image_id>
<language>
<code>sample string 4</code>
<id>1</id>
<name>sample string 2</name>
<name_en>sample string 3</name_en>
</language>
<manual>
<id>bab7be9e-40db-4e41-a522-d8835aecb571</id>
<name>sample string 2</name>
</manual>
</GlobalSetting>