> ## 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/#SAGE_INTACCT_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/#SAGE_INTACCT_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: SAGE_INTACCT_CREATE_VENDOR
                parameters:
                  type: object
                  properties:
                    name:
                      type: string
                      description: 'Name : The name of the vendor.'
                    status:
                      type: string
                      description: 'Status : Defaults to Active.'
                      enum:
                        - active
                        - inactive
                    printAs:
                      type: string
                      description: >-
                        Primary Contact: Print As : The display name to print as
                        the contact info for the vendor. (example: "Acme Widget
                        Company, Inc.")
                    firstName:
                      type: string
                      description: 'Primary Contact: First Name'
                    lastName:
                      type: string
                      description: 'Primary Contact: Last Name'
                    phoneNumber:
                      type: string
                      description: 'Primary Contact: Phone Number'
                    email:
                      type: string
                      description: >-
                        Primary Contact: Email Address (example:
                        "sean@example.com")
                    url:
                      type: string
                      description: 'Company URL (example: "https://example.com")'
                    addressLine1:
                      type: string
                      description: Address Line 1
                    addressLine2:
                      type: string
                      description: Address Line 2
                    city:
                      type: string
                      description: City
                    state:
                      type: string
                      description: 'State : Use state or province.'
                    zip:
                      type: string
                      description: 'ZIP : Use ZIP or postal code, if applicable.'
                    country:
                      type: string
                      description: Country
                    vendorType:
                      type: string
                      description: >-
                        The name of the vendor type. (example: Commercial &
                        Retail Products)
                    parent:
                      type: string
                      description: 'Parent : The ID of the parent vendor, if applicable.'
                    glGroup:
                      type: string
                      description: >-
                        GL Group : The name of the GL group this vendor should
                        be included in.
                    taxId:
                      type: string
                      description: 'Tax ID (example: "12-3456789")'
                    form1099Name:
                      type: string
                      description: 'Form 1099 Name (example: "Acme Co Inc.")'
                    form1099Type:
                      type: string
                      description: 'Form 1099 Type (example: "MISC")'
                    form1099Box:
                      type: string
                      description: 'Form 1099 Box (example: "3")'
                    defaultExpenseAccount:
                      type: string
                      description: >-
                        The GL account used for expenses from this vendor.
                        (example: 1000)
                    creditLimit:
                      type: string
                      description: 'Credit Limit (example: "1234.56")'
                    onHold:
                      type: boolean
                      description: On Hold
                    doNotPay:
                      type: boolean
                      description: Do Not Pay
                    billingComments:
                      type: string
                      description: Billing Comments
                    taxable:
                      type: boolean
                      description: Taxable
                    contactTaxGroup:
                      type: string
                      description: >-
                        Contact Tax Group : The name of the tax group this
                        vendor should be included in.
                    preferredPaymentMethod:
                      type: string
                      description: Preferred Payment Method
                      enum:
                        - Printed Check
                        - Charge Card
                        - EFT
                        - Cash
                        - ACH
                    paymentPriority:
                      type: string
                      description: Payment Priority
                      enum:
                        - Urgent
                        - High
                        - Normal
                        - Low
                    billingType:
                      type: string
                      description: Billing Type
                      enum:
                        - openitem
                        - balanceforward
                    term:
                      type: string
                      description: >-
                        The name of the payment term for this vendor. (example:
                        Net 30)
                    mergePaymentRequests:
                      type: boolean
                      description: Merge Payment Requests
                    sendPaymentNotification:
                      type: boolean
                      description: Send Automatic Payment Notification
                    displayTermDiscount:
                      type: boolean
                      description: >-
                        Display Term Discount : Determines if term discount
                        appears on the check stub.
                    additionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify any additional fields to be
                        included in this vendor. (example: "{
                          "ACHENABLED": true,
                          "ACHBANKROUTINGNUMBER": "xxx",
                          "ACHACCOUNTNUMBER": "xxx"
                        }")
                      properties: {}
                  required:
                    - name
                    - printAs
                  x-integration: sageintacct
              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.

````