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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR
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/#DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR:
    post:
      summary: Create Vendor
      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: DYNAMICS_BUSINESS_CENTRAL_CREATE_VENDOR
                parameters:
                  type: object
                  properties:
                    vendorNumber:
                      type: string
                      description: Vendor Number
                    vendorName:
                      type: string
                      description: Name
                    vendorEmail:
                      type: string
                      description: 'Email (example: "primary@vendor.com")'
                    taxRegNumber:
                      type: string
                      description: >-
                        Tax Registration Number : The vendor's tax registration
                        number.
                    paymentTermsId:
                      type: string
                      description: Payment Term ID
                    addressLine1:
                      type: string
                      description: Address Line 1
                    addressLine2:
                      type: string
                      description: Address Line 2
                    city:
                      type: string
                      description: City
                    state:
                      type: string
                      description: 'State (example: "Use state or province.")'
                    zip:
                      type: string
                      description: 'ZIP (example: "Use ZIP or postal code, if applicable.")'
                    country:
                      type: string
                      description: Country
                    vendorsAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this vendor as JSON. For example, you may specify a
                        different billing address here. See the docs
                        (https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/resources/dynamics_vendor)
                        for available fields. (example: "{
                          "phoneNumber": "string",
                          "website": "string",
                          "currencyCode": "string",
                          "irs1099Code": "string",
                          "taxLiable": "boolean",
                          "balance": "decimal",
                          "lastModifiedDateTime": "datetime"
                        }")
                      properties: {}
                  required:
                    - vendorNumber
                  x-integration: dynamicsbusinesscentral
              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.

````