PUT
/
webhooks
/
{webhook_id}
/
headers
/
{header_id}
Update a header by ID for a specific webhook
curl --request PUT \
  --url http://localhost:3001/portal-api/webhooks/{webhook_id}/headers/{header_id} \
  --header 'Content-Type: application/json' \
  --data '{
  "Name": "<string>",
  "Value": "<string>"
}'
{
  "Name": "<string>",
  "Value": "<string>"
}

Path Parameters

webhook_id
string
required
header_id
string
required

Body

application/json

Header object that needs to be updated

Details of a webhook header

Name
string

Name of the header

Value
string

Value of the header

Response

Header updated successfully.

Details of a webhook header

Name
string

Name of the header

Value
string

Value of the header