> ## Documentation Index
> Fetch the complete documentation index at: https://www.1password.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete billing account

> Removes an account from the partnership domain.



## OpenAPI

````yaml /openapi/partnership_api.yaml delete /api/v1/partners/accounts/{customer_account_uid}
openapi: 3.0.0
info:
  version: 2.0.0
  title: 1Password Partnership API
  contact:
    name: 1Password Partnerships
    url: https://www.1password.partners/English/
    email: partners@1password.com
servers:
  - url: https://billing.b5test.eu
  - url: https://billing.1password.com
security:
  - bearerAuth: []
paths:
  /api/v1/partners/accounts/{customer_account_uid}:
    delete:
      description: Removes an account from the partnership domain.
      operationId: deleteAccount
      parameters:
        - name: customer_account_uid
          in: path
          description: Unique ID of partner_account to delete.
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Returned upon successful deactivation of a partnership account.
        '403':
          description: >-
            Returned when the Authorization header is missing or an invalid
            token is specified.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                code: 403
                error: forbidden
                description: Invalid auth token.
        '404':
          description: Returned when a resource or dependency of a resource is not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                code: 404
                error: not_found
                description: Failed to find the requested account.
        '500':
          description: Returned on unexpected errors.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                code: 500
                error: internal_server_error
                description: Internal server error
      security:
        - bearerAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        code:
          type: integer
          description: The HTTP response code of the error.
        error:
          type: string
          description: A machine parsable string that represents the code.
        description:
          type: string
          description: A description of the error.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````