Skip to main content
PUT
/
api_webhooks
/
{webhookId}
Update API webhook
curl --request PUT \
  --url https://api.heyy.io/api/v2.0/api_webhooks/{webhookId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>",
  "isActive": true
}'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "url": "<string>",
    "isActive": true,
    "channelId": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhookId
string
required

Body

application/json
url
string
isActive
boolean

Response

200 - application/json
data
object
required