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

# Update Record Deals



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#ZENDESK_SELL_UPDATE_RECORD_DEALS
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#ZENDESK_SELL_UPDATE_RECORD_DEALS:
    post:
      summary: Update Record Deals
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: ZENDESK_SELL_UPDATE_RECORD_DEALS
                parameters:
                  type: object
                  properties:
                    recordId:
                      type: string
                      description: 'Record ID : Specify the record ID to update.'
                    dealName:
                      type: string
                      description: >-
                        Name : Specify a name for this deal. (example: "Website
                        Redesign")
                    contact_id:
                      type: string
                      description: >-
                        Contact ID : Specify a contact ID to associate this deal
                        with. (example: "1")
                    dealValue:
                      type: string
                      description: >-
                        Value : Specify a value of the deal. (example:
                        "1000.50")
                    dealSource:
                      type: string
                      description: >-
                        Source ID : Specify a source ID to associate this deal
                        with. (example: "1")
                    dealAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify any other fields that should
                        be updated in JSON below. See the doc
                        (https://developer.zendesk.com/api-reference/sales-crm/resources/deals)for
                        available fields. (example: "{
                          "hot": true,
                          "currency": "USD",
                        }")
                      properties: {}
                  required:
                    - recordId
                    - dealName
                    - contact_id
                  x-integration: zendesksell
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````