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

# Update Account



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#NETSUITE_UPDATE_ACCOUNT
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/#NETSUITE_UPDATE_ACCOUNT:
    post:
      summary: Update Account
      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: NETSUITE_UPDATE_ACCOUNT
                parameters:
                  type: object
                  properties:
                    accountId:
                      type: string
                      description: 'Account ID : The ID of the account to update.'
                    acctNumber:
                      type: string
                      description: >-
                        Number : Enter the number to identify this account.
                        (example: "6000")
                    acctName:
                      type: string
                      description: >-
                        Name : Enter up to 31 characters for an account name
                        that will appear on all reports. (example: "Expenses")
                    subsidiaries:
                      type: string
                      description: >-
                        Subsidiaries : Select one or more subsidiaries by
                        subsidiary ID to restrict the use of this account.
                    acctType:
                      type: string
                      description: >-
                        Type : Select a GAAP category for the type of account
                        you are creating.
                      enum:
                        - Bank
                        - OthCurrAsset
                        - FixedAsset
                        - OthAsset
                        - CredCard
                    parent:
                      type: string
                      description: >-
                        Sub-Account Of : Select the parent account if this
                        account is a sub-account of another.
                    accountAdditionalFields:
                      type: string
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this Account as JSON. See the docs
                        (https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2021.2/index.html#/definitions/account)
                        for available fields. (example: "[
                            {
                              "availableBalance": 10
                            }
                          ]")
                  required:
                    - accountId
                  x-integration: netsuite
              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.

````