PUT
/
v3
/
connectors
/
configuration
/
webhooks
/
{id}
Update a specific Webhook Configuration by ID.
curl --request PUT \
  --url https://api.lilt.com/v3/connectors/configuration/webhooks/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "webhookName": "<string>"
}'
{
  "id": 12345,
  "webhookName": "<string>",
  "webhookUrl": "<string>",
  "eventType": [
    "JOB_DELIVER"
  ]
}

Authorizations

key
string
query
required

Path Parameters

id
integer
required

The Webhook Configuration ID.

Example:

12345

Body

application/json

Response

200
application/json

Returns the updated webhook configuration.

The response is of type object.