Skip to main content

Update a webhook

PATCH 

https://api.iap.dev/v1/organizations/:organizationId/projects/:projectId/webhooks/:webhookId

Update a webhook

Request

Path Parameters

    organizationId stringrequired
    projectId stringrequired
    webhookId stringrequired

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

Webhook updated

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

Authorization: JWT

name: JWTtype: httpscheme: bearerbearerFormat: JWTdescription: Enter JWT tokenin: header
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"
}'
Request Collapse all
Base URL
https://api.iap.dev
Auth
Parameters
— pathrequired
— pathrequired
— pathrequired
Body required
{
  "name": "string",
  "url": "string",
  "events": [
    "purchase_started"
  ],
  "secret": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!