Back to Callbacks Endpoints
GET /v1/callbacks/:id
Retrieve detailed information about a specific callback configuration. This endpoint returns the complete callback settings including the endpoint URL, timeout settings, authentication configuration, payload template, and current status. Use this to inspect callback settings, verify configuration, or retrieve callback details for integration with other systems.
Request
http
GET https://api.votepipe.com/v1/callbacks/1
Authorization: Bearer mr_live_your_api_key_hereResponse (200 OK)
json
{
"data": {
"id": "1",
"name": "Game Server Callback",
"url": "https://my-server.com/api/vote",
"timeout_ms": 5000,
"enabled": true,
"priority": 0,
"payload_template": { ... },
"created_at": "2026-01-02T15:30:00Z",
"updated_at": "2026-01-02T15:30:00Z"
}
}