Travel RuleAPI Reference04-CodeVASP-Cipher
05-Health-Check
You can check if the Cipher server is operating normally.
Endpoint
GET /actuator/health
Request Parameters
Headers
| Name | Type | Required | Description |
|---|---|---|---|
| accept | string | Optional | application/json |
Response
Fields
| Name | Type | Description |
|---|---|---|
| status | string | Status of the server (e.g., "UP") |
Examples
Request
curl --request GET \
--url https://your-server-host.com/actuator/health \
--header 'accept: application/json'Response
{
"status": "UP"
}