Get system endpoints
GET/system/endpoints
Get system endpoints.
History
Version | Changes |
---|---|
v6.1.97,v6.10.0 | Added in: v6.1.97,v6.10.0 |
Responses
- 200
- 401
- 403
- 404
- 500
Request successful
- application/json
- Schema
- Example (from schema)
Schema
data
object
Universal endpoint, used to access ONES web frontend applications
Regional endpoint, used to access ONES backend APIs or static resource files
The result of this request.
The error code of this request.
Error message for this request.
Error meta data for this request.
{
"data": {
"universal_endpoint": "string",
"regional_endpoint": "string"
},
"result": "string",
"errorCode": "string",
"errorMsg": "string",
"errorData": {}
}
Returned if the authentication credentials are incorrect or missing.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Unauthorized",
"errorMsg": "Access token is invalid"
}
Returns if the scope check fails.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Forbidden",
"errorMsg": "Scope is invalid"
}
Returned if the resource object was not found.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "NotFound",
"errorMsg": "Not Found"
}
Internal Server Error.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Internal Server Error",
"errorMsg": "Internal Server Error"
}