Application Information
- Last UpdatedJul 11, 2023
- 1 minute read
API for Client Failover application information.
Get Information
Gets the Client Failover application information.
Request
GET /api/v1/tenants/{tenantId}/namespaces/{namespaceId}/clientfailover
Parameters
string tenantId
string namespaceId
Response
| Status Code | Body Type | Description |
|---|---|---|
| 200 | EndpointInfo | The application information. |
| 400 | ErrorResponse | Request is not valid. See the response body for additional details. |
| 403 | ErrorResponse | Request is not authorized. |
| 503 | ErrorResponse | Service unavailable. |
Example response body
200 Response (EndpointInfo)
{
"Version": "string"
}
Definitions
EndpointInfo
Properties
| Property Name | Data Type | Required | Nullable | Description |
|---|---|---|---|---|
| Version | string | false | true | Endpoint version |
{
"Version": "string"
}
ErrorResponse
Response error for controller methods.
Properties
| Property Name | Data Type | Required | Nullable | Description |
|---|---|---|---|---|
| OperationId | string | false | true | Operation identifier |
| Error | string | false | true | Error string |
| Reason | string | false | true | Error reason string |
| Resolution | string | false | true | Resolution string |
| AdditionalParameters | object | false | true | Additional parameters to add to the response. |
{
"OperationId": "string",
"Error": "string",
"Reason": "string",
"Resolution": "string",
"AdditionalParameters": {
"property1": null,
"property2": null
},
"property1": null,
"property2": null
}