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

# Create Record Lead



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#CLOSE_CREATE_RECORD_LEAD
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/#CLOSE_CREATE_RECORD_LEAD:
    post:
      summary: Create Record Lead
      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: CLOSE_CREATE_RECORD_LEAD
                parameters:
                  type: object
                  properties:
                    name:
                      type: string
                      description: 'Name : Specify the name of the lead.'
                    leadDescription:
                      type: string
                      description: 'Description : Specify a description for this lead.'
                    leadContact:
                      type: object
                      description: >-
                        Contacts : Specify contact details as JSON to attach to
                        this lead. (example: "[
                          {
                            "name": "Gob",
                            "title": "Sr. Vice President",
                            "emails": [
                              {
                                "type": "office",
                                "email": "gob@example.com"
                              }
                            ],
                            "phones": [
                              {
                                "type": "office",
                                "phone": "8004445555"
                              }
                            ]
                          }
                        ]")
                      properties: {}
                    leadAddress:
                      type: object
                      description: >-
                        Addresses : Specify address details as JSON to attach to
                        this lead. (example: "[
                          {
                            "label": "business",
                            "address_1": "747 Howard St",
                            "address_2": "Room 3",
                            "city": "San Francisco",
                            "state": "CA",
                            "zipcode": "94103",
                            "country":"US",
                          }
                        ]")
                      properties: {}
                    status:
                      type: string
                      description: The status of the lead
                    leadAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify any additional fields that
                        should be created with this lead as JSON. See the docs
                        (https://developer.close.com/resources/leads/#create-a-new-lead)
                        for available fields. (example: "{
                          "confidence": 90,
                          "value_period": "monthly",
                          "custom.cf_j0P7kHmgFTZZnYBFtyPSZ3uQw4dpW8xKcW7Krps8atj": "https://www.example.com/contract.pdf"
                        }")
                      properties: {}
                  x-integration: close
              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.

````