Skip to main content
GET
/
json-delta
/
notify
Get notification of dataset updates
curl --request GET \
  --url https://api.hixbe.com/rpki/json-delta/notify
{
  "session": "a1b2c3d4",
  "serial": 43
}
Long-polling endpoint that returns current session and serial. Blocks until dataset changes if parameters match current values. Use Cases:
  • Real-time update notifications
  • Efficient polling mechanism
  • Event-driven validation systems
  • Minimize unnecessary requests

Query Parameters

session
string

Current session ID to wait for changes

Example:

"a1b2c3d4"

serial
integer

Current serial number to wait for changes

Example:

42

Response

Successful response with current session and serial (returns immediately if changed, or when timeout occurs)

session
string
required

Session ID of the current dataset

Example:

"a1b2c3d4"

serial
integer
required

Serial number of the current dataset

Example:

43