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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#DYNAMICS_365_FINANCE_CREATE_BILL
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_365_FINANCE_CREATE_BILL:
    post:
      summary: Create Bill
      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_365_FINANCE_CREATE_BILL
                parameters:
                  type: object
                  properties:
                    dataAreaId:
                      type: string
                      description: >-
                        Company : Specify the company code of the company
                        incurring the bill. (example: "dat")
                    InvoiceAccount:
                      type: string
                      description: >-
                        Invoice Account : Specify the vendor account sending the
                        bill.
                    InvoiceNumber:
                      type: string
                      description: >-
                        Invoice Number : Specify an internal invoice
                        identification number. (example: "001")
                    InvoiceDescription:
                      type: string
                      description: Invoice Description
                    InvoiceDate:
                      type: string
                      description: 'Invoice Date (example: "2022-01-01")'
                    Date:
                      type: string
                      description: 'Posting Date (example: "2022-01-01")'
                    DueDate:
                      type: string
                      description: 'Due Date (example: "2022-01-01")'
                    IsOnHold:
                      type: string
                      description: Invoice On Hold Status
                      enum:
                        - 'Yes'
                        - 'No'
                    billAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this bill as JSON. For example, you may specify a
                        cash discount date here. See the metadata for available
                        fields. (example: "[
                            {
                              "CashDiscountDate": "2022-10-01",
                              "PrimaryContactTwitter": "iamjohn@twitter"
                            },
                          ]")
                      properties: {}
                  required:
                    - dataAreaId
                    - InvoiceAccount
                    - InvoiceNumber
                  x-integration: dynamicsfinance
              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.

````