> ## Documentation Index
> Fetch the complete documentation index at: https://docs.base44.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Stripe integration

> <Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Deletes the app sandbox record and Stripe secrets and clears its Stripe mode. This does not delete the Stripe account or catalog, revoke credentials at Stripe, or redeploy existing backend functions. Deployed functions can retain their previous credentials until redeployed. Requires write access to the app. Workspace viewers cannot call this operation.



## OpenAPI

````yaml /developers/references/app-management/app-management-openapi.json delete /api/apps/{app_id}/payments/stripe
openapi: 3.1.0
info:
  title: Base44 App Management API
  version: 1.0.0
servers:
  - url: https://app.base44.com
security:
  - ApiKeyAuth: []
paths:
  /api/apps/{app_id}/payments/stripe:
    delete:
      summary: Remove Stripe integration
      description: >-
        <Info>This API is in beta. Endpoints, fields, and behavior may still
        change, so avoid depending on it in production.</Info>


        Deletes the app sandbox record and Stripe secrets and clears its Stripe
        mode. This does not delete the Stripe account or catalog, revoke
        credentials at Stripe, or redeploy existing backend functions. Deployed
        functions can retain their previous credentials until redeployed.
        Requires write access to the app. Workspace viewers cannot call this
        operation.
      operationId: remove_stripe_integration_api_apps__app_id__payments_stripe_delete
      parameters:
        - name: app_id
          in: path
          required: true
          schema:
            type: string
            description: ID of the Base44 app.
            title: App Id
          description: ID of the Base44 app.
          example: 6820f3a4e7b91d003c45a1f2
      responses:
        '200':
          description: The operation result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeRemovalResult'
        '401':
          description: Missing or invalid credentials.
        '403':
          description: >-
            The credential is not permitted or you don't have the required app
            access. A missing app also fails the app access check.
        '404':
          description: The app is outside the credential's granted workspace.
        '409':
          description: The workspace requires an unlocked SSO session.
components:
  schemas:
    StripeRemovalResult:
      properties:
        success:
          type: boolean
          title: Success
          description: Whether the removal completed.
          example: true
      type: object
      required:
        - success
      title: StripeRemovalResult
      description: The result of removing the app's Stripe configuration.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Personal API key.

````