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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#DYNAMICS_365_FINANCE_CREATE_CUSTOMER
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_CUSTOMER:
    post:
      summary: Create Customer
      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_CUSTOMER
                parameters:
                  type: object
                  properties:
                    CustomerAccount:
                      type: string
                      description: >-
                        Customer Account : Specify a unique identifier for the
                        Customer Account.
                    Name:
                      type: string
                      description: Name
                    CustomerGroupId:
                      type: string
                      description: >-
                        Customer Group : Specify the Customer Group for the new
                        customer.
                    OrganizationNumber:
                      type: string
                      description: Organization Number
                    PartyType:
                      type: string
                      description: 'Type : Specify the type of customer.'
                      enum:
                        - Organization
                        - Person
                    SalesCurrencyCode:
                      type: string
                      description: >-
                        Currency : The three-letter currency code associated
                        with this customer.
                    PartyCountry:
                      type: string
                      description: Country
                    AddressStreet:
                      type: string
                      description: Street Address
                    AddressCity:
                      type: string
                      description: City
                    AddressZipCode:
                      type: string
                      description: Zip Code
                    PrimaryContactPhone:
                      type: string
                      description: Phone Number
                    PrimaryContactEmail:
                      type: string
                      description: Email Address
                    customerAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this customer as JSON. For example, you may specify a
                        different billing address here. See the metadata for
                        available fields. (example: "[
                            {
                              "InvoiceAddressCity": "N.Y",
                              "PrimaryContactTwitter": "iamjohn@twitter"
                            },
                          ]")
                      properties: {}
                  required:
                    - CustomerAccount
                    - Name
                    - CustomerGroupId
                  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.

````