/v1/platform-webhooks
curl -L \ --url '/v1/platform-webhooks' \ --header 'Authorization: Bearer Bearer'
[ { "id": "text", "url": "text", "isActive": true, "createdAt": "2025-02-20T19:08:40.340Z", "lastUpdatedAt": "2025-02-20T19:08:40.340Z", "events": [ "text" ] } ]
curl -L \ --request POST \ --url '/v1/platform-webhooks' \ --header 'Authorization: Bearer Bearer' \ --header 'Content-Type: application/json' \ --data '{"url":"text","events":[null]}'
No body
/v1/platform-webhooks/{id}
curl -L \ --request PUT \ --url '/v1/platform-webhooks/{id}' \ --header 'Authorization: Bearer Bearer' \ --header 'Content-Type: application/json' \ --data '{"events":[null]}'
curl -L \ --request DELETE \ --url '/v1/platform-webhooks/{id}' \ --header 'Authorization: Bearer Bearer'