Update a webhook
PATCHhttps://api.iap.dev/v1/organizations/:organizationId/projects/:projectId/webhooks/:webhookId
Update a webhook
Request
Path Parameters
organizationId stringrequired
projectId stringrequired
webhookId stringrequired
- application/json
Body
required
name stringrequired
url stringrequired
events string[]required
Possible values: [purchase_started
, purchase_created
, purchase_updated
, purchase_consumed
, purchase_acknowledged
, subscription_purchase_created
, subscription_purchase_updated
, subscription_purchase_acknowledged
, purchase_receipt_validation
, user_created
]
secret stringrequired
Responses
- 200
- 404
Webhook updated
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
name stringrequired
url stringrequired
events string[]required
Possible values: [purchase_started
, purchase_created
, purchase_updated
, purchase_consumed
, purchase_acknowledged
, subscription_purchase_created
, subscription_purchase_updated
, subscription_purchase_acknowledged
, purchase_receipt_validation
, user_created
]
secret stringrequired
active booleanrequired
{
"id": "string",
"name": "string",
"url": "string",
"events": [
"purchase_started"
],
"secret": "string",
"active": true
}
Webhook not found
Authorization: JWT
name: JWTtype: httpscheme: bearerbearerFormat: JWTdescription: Enter JWT tokenin: header
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PATCH 'https://api.iap.dev/v1/organizations/:organizationId/projects/:projectId/webhooks/:webhookId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"url": "string",
"events": [
"purchase_started"
],
"secret": "string"
}'
ResponseClear