> ## Documentation Index
> Fetch the complete documentation index at: https://www.quo.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Update a webhook by ID

> Partially update an existing webhook. Only the fields provided in the request body will be updated.



## OpenAPI

````yaml https://openphone-public-api-prod.s3.us-west-2.amazonaws.com/public/openphone-public-api-2026-03-30-prod.json patch /webhooks/{webhookId}
openapi: 3.1.0
info:
  title: Quo Public API
  version: 1.0.0
  description: API for connecting with Quo.
  contact:
    name: Quo Support
    email: support@quo.com
    url: https://support.quo.com/
  termsOfService: https://www.quo.com/terms
servers:
  - description: Production server
    url: https://api.quo.com
security:
  - apiKey: []
tags:
  - description: Operations related to calls
    name: Calls
  - description: >-
      Operations related to call summaries, including AI-generated summaries and
      Sona voice assistant summaries
    name: Call Summaries
  - description: >-
      Operations related to call transcripts, including AI-generated transcripts
      and Sona voice assistant transcripts
    name: Call Transcripts
  - description: Operations related to contacts
    name: Contacts
  - description: Operations related to conversations
    name: Conversations
  - description: Operations related to text messages
    name: Messages
  - description: Operations related to phone numbers
    name: Phone Numbers
  - description: Operations related to users
    name: Users
  - description: Operations related to webhooks
    name: Webhooks
paths:
  /webhooks/{webhookId}:
    patch:
      tags:
        - Webhooks
      summary: Update a webhook by ID
      description: >-
        Partially update an existing webhook. Only the fields provided in the
        request body will be updated.
      operationId: updateHeaderVersionedWebhookById
      parameters:
        - in: path
          name: webhookId
          required: true
          schema:
            description: The unique identifier of a webhook
            examples:
              - '123'
            pattern: ^[0-9]+$
            type: string
          example: '123'
        - in: header
          name: Quo-Api-Version
          required: true
          schema:
            type: string
            enum:
              - '2026-03-30'
            description: 'API version header. Supported values: 2026-03-30'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              minProperties: 1
              type: object
              properties:
                url:
                  format: uri
                  description: The endpoint that receives events from the webhook.
                  examples:
                    - https://example.com/
                  type: string
                  example: https://example.com/
                events:
                  minItems: 1
                  type: array
                  items:
                    type: string
                    enum:
                      - call.answered
                      - call.completed
                      - call.forwarded
                      - call.menu.selected
                      - call.missed
                      - call.ringing
                      - call.recording.completed
                      - call.summary.completed
                      - call.transcript.completed
                      - call.voicemail.completed
                      - message.received
                      - message.delivered
                      - message.failed
                      - message.undelivered
                      - contact.updated
                      - contact.deleted
                      - task.assigned
                      - task.created
                      - task.completed
                      - task.updated
                      - task.deleted
                      - task.unassigned
                      - task.reopened
                      - task.duedate.removed
                      - task.duedate.updated
                      - task.overdue
                      - task.linked
                      - task.unlinked
                    description: Event type
                    examples:
                      - call.completed
                    example: call.completed
                resourceIds:
                  description: >-
                    The unique identifiers of the phone numbers associated with
                    the webhook. Pass null, [], or ["*"] to clear phone number
                    filtering.
                  examples:
                    - - PN1234
                    - null
                    - []
                  example:
                    - PN1234
                  anyOf:
                    - type: 'null'
                    - maxItems: 0
                      type: array
                      items:
                        pattern: ^PN(.*)$
                        type: string
                    - minItems: 1
                      type: array
                      items:
                        pattern: ^PN(.*)$
                        type: string
                    - minItems: 1
                      maxItems: 1
                      type: array
                      items:
                        const: '*'
                        type: string
                status:
                  type: string
                  enum:
                    - enabled
                    - disabled
                  description: The status of the webhook.
                  examples:
                    - enabled
                  example: enabled
                label:
                  anyOf:
                    - description: Webhook's label
                      type: string
                    - type: 'null'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - id
                          - orgId
                          - label
                          - status
                          - url
                          - createdAt
                          - updatedAt
                          - events
                          - resourceIds
                        properties:
                          id:
                            description: Webhook identifier (stringified numeric id)
                            examples:
                              - '123'
                            pattern: ^[0-9]+$
                            type: string
                            example: '123'
                          orgId:
                            description: >-
                              The unique identifier of the organization the
                              webhook belongs to
                            examples:
                              - OR1223abc
                            pattern: ^OR(.*)$
                            type: string
                            example: OR1223abc
                          label:
                            anyOf:
                              - description: The webhook's label.
                                examples:
                                  - my webhook label
                                type: string
                                example: my webhook label
                              - type: 'null'
                          status:
                            type: string
                            enum:
                              - enabled
                              - disabled
                            default: enabled
                            description: The status of the webhook.
                            examples:
                              - enabled
                            example: enabled
                          url:
                            format: uri
                            description: >-
                              The endpoint that receives events from the
                              webhook.
                            examples:
                              - https://example.com/
                            type: string
                            example: https://example.com/
                          createdAt:
                            description: >-
                              The date the webhook was created at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          updatedAt:
                            description: >-
                              The date the webhook was updated at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          apiVersion:
                            type: string
                            enum:
                              - '2026-03-30'
                            description: The persisted webhook payload version.
                            examples:
                              - '2026-03-30'
                            example: '2026-03-30'
                          events:
                            minItems: 1
                            type: array
                            items:
                              type: string
                              enum:
                                - message.received
                                - message.delivered
                          resourceIds:
                            description: >-
                              The unique identifiers of the phone numbers
                              associated with the webhook.
                            examples:
                              - - PN1234
                            example:
                              - PN1234
                            anyOf:
                              - type: array
                                items:
                                  pattern: ^PN(.*)$
                                  type: string
                              - type: array
                                items:
                                  const: '*'
                                  type: string
                      - type: object
                        required:
                          - id
                          - orgId
                          - label
                          - status
                          - url
                          - createdAt
                          - updatedAt
                          - events
                          - resourceIds
                        properties:
                          id:
                            description: Webhook identifier (stringified numeric id)
                            examples:
                              - '123'
                            pattern: ^[0-9]+$
                            type: string
                            example: '123'
                          orgId:
                            description: >-
                              The unique identifier of the organization the
                              webhook belongs to
                            examples:
                              - OR1223abc
                            pattern: ^OR(.*)$
                            type: string
                            example: OR1223abc
                          label:
                            anyOf:
                              - description: The webhook's label.
                                examples:
                                  - my webhook label
                                type: string
                                example: my webhook label
                              - type: 'null'
                          status:
                            type: string
                            enum:
                              - enabled
                              - disabled
                            default: enabled
                            description: The status of the webhook.
                            examples:
                              - enabled
                            example: enabled
                          url:
                            format: uri
                            description: >-
                              The endpoint that receives events from the
                              webhook.
                            examples:
                              - https://example.com/
                            type: string
                            example: https://example.com/
                          createdAt:
                            description: >-
                              The date the webhook was created at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          updatedAt:
                            description: >-
                              The date the webhook was updated at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          apiVersion:
                            type: string
                            enum:
                              - '2026-03-30'
                            description: The persisted webhook payload version.
                            examples:
                              - '2026-03-30'
                            example: '2026-03-30'
                          events:
                            minItems: 1
                            type: array
                            items:
                              type: string
                              enum:
                                - call.completed
                                - call.ringing
                                - call.recording.completed
                          resourceIds:
                            description: >-
                              The unique identifiers of the phone numbers
                              associated with the webhook.
                            examples:
                              - - PN1234
                            example:
                              - PN1234
                            anyOf:
                              - type: array
                                items:
                                  pattern: ^PN(.*)$
                                  type: string
                              - type: array
                                items:
                                  const: '*'
                                  type: string
                      - type: object
                        required:
                          - id
                          - orgId
                          - label
                          - status
                          - url
                          - createdAt
                          - updatedAt
                          - events
                          - resourceIds
                        properties:
                          id:
                            description: Webhook identifier (stringified numeric id)
                            examples:
                              - '123'
                            pattern: ^[0-9]+$
                            type: string
                            example: '123'
                          orgId:
                            description: >-
                              The unique identifier of the organization the
                              webhook belongs to
                            examples:
                              - OR1223abc
                            pattern: ^OR(.*)$
                            type: string
                            example: OR1223abc
                          label:
                            anyOf:
                              - description: The webhook's label.
                                examples:
                                  - my webhook label
                                type: string
                                example: my webhook label
                              - type: 'null'
                          status:
                            type: string
                            enum:
                              - enabled
                              - disabled
                            default: enabled
                            description: The status of the webhook.
                            examples:
                              - enabled
                            example: enabled
                          url:
                            format: uri
                            description: >-
                              The endpoint that receives events from the
                              webhook.
                            examples:
                              - https://example.com/
                            type: string
                            example: https://example.com/
                          createdAt:
                            description: >-
                              The date the webhook was created at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          updatedAt:
                            description: >-
                              The date the webhook was updated at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          apiVersion:
                            type: string
                            enum:
                              - '2026-03-30'
                            description: The persisted webhook payload version.
                            examples:
                              - '2026-03-30'
                            example: '2026-03-30'
                          events:
                            minItems: 1
                            type: array
                            items:
                              type: string
                              enum:
                                - call.summary.completed
                          resourceIds:
                            description: >-
                              The unique identifiers of the phone numbers
                              associated with the webhook.
                            examples:
                              - - PN1234
                            example:
                              - PN1234
                            anyOf:
                              - type: array
                                items:
                                  pattern: ^PN(.*)$
                                  type: string
                              - type: array
                                items:
                                  const: '*'
                                  type: string
                      - type: object
                        required:
                          - id
                          - orgId
                          - label
                          - status
                          - url
                          - createdAt
                          - updatedAt
                          - events
                          - resourceIds
                        properties:
                          id:
                            description: Webhook identifier (stringified numeric id)
                            examples:
                              - '123'
                            pattern: ^[0-9]+$
                            type: string
                            example: '123'
                          orgId:
                            description: >-
                              The unique identifier of the organization the
                              webhook belongs to
                            examples:
                              - OR1223abc
                            pattern: ^OR(.*)$
                            type: string
                            example: OR1223abc
                          label:
                            anyOf:
                              - description: The webhook's label.
                                examples:
                                  - my webhook label
                                type: string
                                example: my webhook label
                              - type: 'null'
                          status:
                            type: string
                            enum:
                              - enabled
                              - disabled
                            default: enabled
                            description: The status of the webhook.
                            examples:
                              - enabled
                            example: enabled
                          url:
                            format: uri
                            description: >-
                              The endpoint that receives events from the
                              webhook.
                            examples:
                              - https://example.com/
                            type: string
                            example: https://example.com/
                          createdAt:
                            description: >-
                              The date the webhook was created at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          updatedAt:
                            description: >-
                              The date the webhook was updated at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          apiVersion:
                            type: string
                            enum:
                              - '2026-03-30'
                            description: The persisted webhook payload version.
                            examples:
                              - '2026-03-30'
                            example: '2026-03-30'
                          events:
                            minItems: 1
                            type: array
                            items:
                              type: string
                              enum:
                                - call.transcript.completed
                          resourceIds:
                            description: >-
                              The unique identifiers of the phone numbers
                              associated with the webhook.
                            examples:
                              - - PN1234
                            example:
                              - PN1234
                            anyOf:
                              - type: array
                                items:
                                  pattern: ^PN(.*)$
                                  type: string
                              - type: array
                                items:
                                  const: '*'
                                  type: string
                      - type: object
                        required:
                          - id
                          - orgId
                          - label
                          - status
                          - url
                          - createdAt
                          - updatedAt
                          - events
                          - resourceIds
                        properties:
                          id:
                            description: Webhook identifier (stringified numeric id)
                            examples:
                              - '123'
                            pattern: ^[0-9]+$
                            type: string
                            example: '123'
                          orgId:
                            description: >-
                              The unique identifier of the organization the
                              webhook belongs to
                            examples:
                              - OR1223abc
                            pattern: ^OR(.*)$
                            type: string
                            example: OR1223abc
                          label:
                            anyOf:
                              - description: The webhook's label.
                                examples:
                                  - my webhook label
                                type: string
                                example: my webhook label
                              - type: 'null'
                          status:
                            type: string
                            enum:
                              - enabled
                              - disabled
                            default: enabled
                            description: The status of the webhook.
                            examples:
                              - enabled
                            example: enabled
                          url:
                            format: uri
                            description: >-
                              The endpoint that receives events from the
                              webhook.
                            examples:
                              - https://example.com/
                            type: string
                            example: https://example.com/
                          createdAt:
                            description: >-
                              The date the webhook was created at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          updatedAt:
                            description: >-
                              The date the webhook was updated at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          apiVersion:
                            type: string
                            enum:
                              - '2026-03-30'
                            description: The persisted webhook payload version.
                            examples:
                              - '2026-03-30'
                            example: '2026-03-30'
                          events:
                            minItems: 1
                            type: array
                            items:
                              type: string
                              enum:
                                - contact.updated
                                - contact.deleted
                          resourceIds:
                            minItems: 1
                            maxItems: 1
                            type: array
                            items:
                              const: '*'
                              type: string
                      - type: object
                        required:
                          - id
                          - orgId
                          - label
                          - status
                          - url
                          - createdAt
                          - updatedAt
                          - events
                          - resourceIds
                        properties:
                          id:
                            description: Webhook identifier (stringified numeric id)
                            examples:
                              - '123'
                            pattern: ^[0-9]+$
                            type: string
                            example: '123'
                          orgId:
                            description: >-
                              The unique identifier of the organization the
                              webhook belongs to
                            examples:
                              - OR1223abc
                            pattern: ^OR(.*)$
                            type: string
                            example: OR1223abc
                          label:
                            anyOf:
                              - description: The webhook's label.
                                examples:
                                  - my webhook label
                                type: string
                                example: my webhook label
                              - type: 'null'
                          status:
                            type: string
                            enum:
                              - enabled
                              - disabled
                            default: enabled
                            description: The status of the webhook.
                            examples:
                              - enabled
                            example: enabled
                          url:
                            format: uri
                            description: >-
                              The endpoint that receives events from the
                              webhook.
                            examples:
                              - https://example.com/
                            type: string
                            example: https://example.com/
                          createdAt:
                            description: >-
                              The date the webhook was created at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          updatedAt:
                            description: >-
                              The date the webhook was updated at, in ISO 8601
                              format.
                            examples:
                              - '2022-01-01T00:00:00Z'
                            format: date-time
                            type: string
                            example: '2022-01-01T00:00:00Z'
                          apiVersion:
                            type: string
                            enum:
                              - '2026-03-30'
                            description: The persisted webhook payload version.
                            examples:
                              - '2026-03-30'
                            example: '2026-03-30'
                          events:
                            minItems: 1
                            type: array
                            items:
                              type: string
                              enum:
                                - call.answered
                                - call.completed
                                - call.forwarded
                                - call.menu.selected
                                - call.missed
                                - call.ringing
                                - call.recording.completed
                                - call.summary.completed
                                - call.transcript.completed
                                - call.voicemail.completed
                                - message.received
                                - message.delivered
                                - message.failed
                                - message.undelivered
                                - contact.updated
                                - contact.deleted
                                - task.assigned
                                - task.created
                                - task.completed
                                - task.updated
                                - task.deleted
                                - task.unassigned
                                - task.reopened
                                - task.duedate.removed
                                - task.duedate.updated
                                - task.overdue
                                - task.linked
                                - task.unlinked
                              description: Event type
                              examples:
                                - call.completed
                              example: call.completed
                          resourceIds:
                            description: >-
                              Phone number IDs to filter activity events, or
                              `["*"]` for all. Contact events are always
                              org-wide regardless of this setting.
                            examples:
                              - - PNabc123
                            example:
                              - PNabc123
                            anyOf:
                              - type: array
                                items:
                                  pattern: ^PN(.*)$
                                  type: string
                              - minItems: 1
                                maxItems: 1
                                type: array
                                items:
                                  const: '*'
                                  type: string
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - code
                  - status
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  code:
                    const: '0300400'
                    type: string
                  status:
                    const: 400
                    type: number
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Bad Request
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: '/url: Expected required property, /url: Expected string'
                docs: https://quo.com/docs
                title: Bad Request
                errors:
                  - path: /url
                    message: Expected required property
                    schema:
                      type: String
                  - path: /url
                    message: Expected string
                    schema:
                      type: String
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - code
                  - status
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  code:
                    const: '0300401'
                    type: string
                  status:
                    const: 401
                    type: number
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Unauthorized
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: You are unauthorized to access the webhook
                docs: https://quo.com/docs
                title: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - code
                  - status
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  code:
                    const: '0300403'
                    type: string
                  status:
                    const: 403
                    type: number
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Forbidden
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: You are forbidden to access the webhook
                docs: https://quo.com/docs
                title: Forbidden
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - code
                  - status
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  code:
                    const: '0300404'
                    type: string
                  status:
                    const: 404
                    type: number
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Not Found
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: Webhook with ID 123 not found
                docs: https://quo.com/docs
                title: Not Found
        '500':
          description: Unknown Error
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - code
                  - status
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  code:
                    const: '0301500'
                    type: string
                  status:
                    const: 500
                    type: number
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Unknown
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: An unknown error occurred
                docs: https://quo.com/docs
                title: Unknown Error
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      in: header
      name: Authorization
      type: apiKey

````