GET api/v1/clients/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ClientModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| clientName | string |
Required String length: inclusive between 0 and 100 |
|
| partnerClientId | string |
None. |
|
| isActive | boolean |
None. |
|
| globalSettings | GlobalSettingsModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"clientName": "sample string 2",
"partnerClientId": "sample string 3",
"isActive": true,
"globalSettings": {
"customLogoPath": "sample string 1",
"headerLinksColorCode": "sample string 2",
"headerColorCode": "sample string 3"
}
}