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

# team.credential.delete

> Permanently deletes an API credential. Any integrations still using it lose access immediately and irreversibly.

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

<Tip>
  **Auth:** Browser session token (Bearer).

  **Immediate and irreversible:** Any integration still using the credential loses access right away. Verify nothing is in flight before deleting.

  **Cannot be undone:** If you accidentally delete the wrong credential, create a fresh one via [team.credential.create](/enterprise/v1/team.credential.create) and rotate the consumer.

  **Successful delete returns an empty object** (`{}`).
</Tip>


## OpenAPI

````yaml POST /team.v1.TeamManagementService/DeleteApiCredential
openapi: 3.1.0
info:
  title: Manus Team User Management OpenAPI v1
  description: >-
    API for enterprise tenant administrators to manage team members
    programmatically (SailPoint, Okta, custom IDP integrations). Two surfaces:
    (1) credential management RPCs at `/team.v1.TeamManagementService/*` use a
    session token; (2) REST endpoints under `/api/user/manage/v1/*` use an OAuth
    2.0 Client Credentials access token issued by the credentials. v2 of this
    API ([User Management v2](/enterprise/v2/user-management-overview))
    consolidates everything behind `X-API-Key` — prefer it for new integrations.
  version: 1.0.0
servers:
  - url: https://api.manus.im
security: []
paths:
  /team.v1.TeamManagementService/DeleteApiCredential:
    post:
      summary: DeleteApiCredential
      description: >-
        Permanently deletes an API credential. Any integrations still using it
        lose access immediately and irreversibly.
      operationId: team.v1.TeamManagementService.DeleteApiCredential
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - clientId
              properties:
                clientId:
                  type: string
                  description: Client identifier of the credential to delete.
                  example: tm_RRa7dgjD_AFhru6AnZJ8W
      responses:
        '200':
          description: Credential deleted. Empty object on success.
          content:
            application/json:
              schema:
                type: object
      security:
        - BearerSessionAuth: []
components:
  securitySchemes:
    BearerSessionAuth:
      type: http
      scheme: bearer
      description: >-
        Browser session token. Open Manus, find any authenticated request in
        DevTools → Network, and copy the value after `Bearer ` from the
        `Authorization` header. Used only for credential management RPCs.

````