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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SAP_UPDATE_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/#SAP_UPDATE_CUSTOMER:
    post:
      summary: Update 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: SAP_UPDATE_CUSTOMER
                parameters:
                  type: object
                  properties:
                    Customer:
                      type: string
                      description: >-
                        Customer ID : The ID of the Customer to update.
                        (example: "202")
                    AuthorizationGroup:
                      type: string
                      description: Authorization Group
                    CustomerClassification:
                      type: string
                      description: Customer Classification
                    Supplier:
                      type: string
                      description: >-
                        Supplier ID : The ID of the Supplier to update.
                        (example: "17300001")
                    CustomerCorporateGroup:
                      type: string
                      description: Customer CorporateGroup
                    CustomerAccountGroup:
                      type: string
                      description: 'CustomerAccountGroup (example: "CUST")'
                    customerAdditionalFields:
                      type: string
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this Customer as JSON. For example, you may specify a
                        AuthorizationGroup here. See the docs
                        (https://api.sap.com/api/API_BUSINESS_PARTNER/resource)
                        for available fields. (example: "
                            {
                            "AuthorizationGroup": "group1",
                            "BillingIsBlockedForCustomer": "true",
                            "CustomerAccountGroup": "group1",
                            "County": "US"
                            "OrderIsBlockedForCustomer": "",
                            }")
                  required:
                    - Customer
                    - CustomerAccountGroup
                  x-integration: saps4hana
              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.

````