List active webhook endpoints

Responses
  • application/json
  • application/problem+json
Request Example for get/v1/webhook_endpoints
curl https://api.sandbox.rostergiving.com/v1/webhook_endpoints \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "endpoints": [
    {
      "id": "string",
      "url": "https://example.com",
      "event_types": [
        "partner_session.created"
      ],
      "created_at": "2026-09-01T19:58:46.881Z"
    }
  ]
}