curl -L \ --request DELETE \ --url '/v1/platform-webhooks/{id}' \ --header 'Authorization: Bearer Bearer'
No body
curl -L \ --url '/v1/platform-webhooks' \ --header 'Authorization: Bearer Bearer'
[ { "id": "text", "url": "text", "isActive": true, "events": [ "text" ], "createdAt": "2025-03-29T14:27:05.465Z", "lastUpdatedAt": "2025-03-29T14:27:05.465Z" } ]
curl -L \ --request POST \ --url '/v1/platform-webhooks' \ --header 'Authorization: Bearer Bearer' \ --header 'Content-Type: application/json' \ --data '{ "url": "text", "events": [ "text" ], "secret": "text" }'
curl -L \ --request PUT \ --url '/v1/platform-webhooks/{id}' \ --header 'Authorization: Bearer Bearer' \ --header 'Content-Type: application/json' \ --data '{ "url": "text", "events": [ "text" ], "secret": "text" }'