POST /v1/rimo/webhooks
Service: integrations · operationId: (none)
Required scopes
(no scope declared — review service config)
Responses
202 Webhook accepted
{
"type": "object",
"properties": {
"received": {
"type": "boolean",
"enum": [
true
]
},
"eventType": {
"type": "string"
}
},
"required": [
"received",
"eventType"
]
}400 Webhook payload invalid
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}401 Webhook signature missing or invalid
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}412 Webhook timestamp stale or receiver misconfigured
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}500 Webhook event publication failed
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X POST https://integrations.platform.loop.health/v1/rimo/webhooks \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/integrations— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced