> ## 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 Contacts



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#ZENDESK_SELL_UPDATE_RECORD_CONTACTS
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_CONTACTS:
    post:
      summary: Update Record Contacts
      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_CONTACTS
                parameters:
                  type: object
                  properties:
                    recordId:
                      type: string
                      description: 'Record ID : Specify the record ID to update.'
                    first_name:
                      type: string
                      description: First Name
                    last_name:
                      type: string
                      description: Last Name
                    email:
                      type: string
                      description: 'Email (example: "mark@designservices.com")'
                    website:
                      type: string
                      description: 'Website (example: "www.designservices.com")'
                    title:
                      type: string
                      description: >-
                        Title : Title of the contact, such as CEO or Vice
                        President. (example: "CEO")
                    description:
                      type: string
                      description: 'Description (example: "I know him via Tom")'
                    contactAddress:
                      type: object
                      description: |-
                        Address (example: "{
                          "line1": "2726 Smith Street",
                          "city": "Hyannis",
                          "postal_code": "02601",
                          "state": "MA",
                          "country": "US"
                        }")
                      properties: {}
                    contactAdditionalFields:
                      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/contacts)for
                        available fields. (example: "{
                          "name": "Mark Johnson",
                          "customer_status": "none",
                          "prospect_status": "current",
                          "custom_fields": {"known_via": "tom"},
                        }")
                      properties: {}
                  required:
                    - recordId
                  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.

````