Last updated 5 months ago
Was this helpful?
GET /Webhooks/{id} HTTP/1.1 Host: api.younium.com Accept: */*
Success
{ "id": "123e4567-e89b-12d3-a456-426614174000", "url": "text", "events": [ "text" ], "token": "text", "description": "text", "webhookStatus": "Enabled" }
The identifier of the webhook
DELETE /Webhooks/{id} HTTP/1.1 Host: api.younium.com Accept: */*
No Content
GET /Webhooks HTTP/1.1 Host: api.younium.com Accept: */*
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "url": "text", "events": [ "text" ], "token": "text", "description": "text", "webhookStatus": "Enabled" } ]
POST /Webhooks HTTP/1.1 Host: api.younium.com Content-Type: application/json Accept: */* Content-Length: 94 { "url": "https://example.com", "events": [ "text" ], "description": "text", "webhookStatus": "Enabled" }
Created