Skip to main content
PUT
/
api
/
v1
/
webhooks
/
{id}
Update Webhook
curl --request PUT \
  --url https://app.flowglad.com/api/v1/webhooks/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webhook": {
    "id": "<string>",
    "filterTypes": [
      "customer.created"
    ],
    "url": "<string>",
    "name": "<string>",
    "active": true
  }
}'
{
  "webhook": {
    "id": "<string>",
    "createdAt": 0,
    "updatedAt": 0,
    "livemode": true,
    "filterTypes": [
      "customer.created"
    ],
    "organizationId": "<string>",
    "url": "<string>",
    "name": "<string>",
    "active": true
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Body

application/json
webhook
object
required

Response

Successful response

webhook
object
required
I