Update Incoming Webhook Receiver
PATCH /v2/partner/incoming-webhook-receivers/{id}
Required scopes
partner:incoming-webhooks:write
Tokens missing any required scope return 401 scope_missing.
See Auth & Scopes for issuance.
Operation
| Operation ID | updateIncomingWebhookReceiver |
| Tags | Operations |
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| id * | path | id |
Request body
Required
object
| Field | Type | Description |
|---|---|---|
| id * | id | UUID v4. |
| type * | enum (1) | incoming_webhook_receiver |
| team_id * | id | UUID v4. |
| receiver_kind * | enum (9) | aws_transfer_familysendgridsesmailguntwiliobandwidthfirebaseapnsgeneric_hmac |
| name | string | |
| is_active * | boolean | |
| dedup_window_seconds * | integer | |
| signature_required * | boolean | |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| updated_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| last_received_at | updated_at | RFC 3339 / ISO 8601 timestamp. |
| last_signature_failure_at | updated_at | RFC 3339 / ISO 8601 timestamp. |
| consecutive_signature_failures * | integer |
Responses
200
OK
object
| Field | Type | Description |
|---|---|---|
| id * | id | UUID v4. |
| type * | enum (1) | incoming_webhook_receiver |
| team_id * | id | UUID v4. |
| receiver_kind * | enum (9) | aws_transfer_familysendgridsesmailguntwiliobandwidthfirebaseapnsgeneric_hmac |
| name | string | |
| is_active * | boolean | |
| dedup_window_seconds * | integer | |
| signature_required * | boolean | |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| updated_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| last_received_at | updated_at | RFC 3339 / ISO 8601 timestamp. |
| last_signature_failure_at | updated_at | RFC 3339 / ISO 8601 timestamp. |
| consecutive_signature_failures * | integer |
Example request
PATCH https://api.digitalonboarding.com/v2/partner/incoming-webhook-receivers/{id}
Authorization: Bearer <partner-token>
Content-Type: application/json
Idempotency-Key: <uuid-v4>
{ /* request body matching schema above */ }