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

# Remove a business identity's credential set for a provider

> Removes the per-identity credential set for the given business identity and provider. The organization-level default and other identities' credentials are left intact. Fails if the provider does not support per-identity credentials.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json delete /v1/organizations/integrations/credentials/{identityId}
openapi: 3.0.0
info:
  title: Borderless API
  description: The Borderless API documentation.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox-api.borderless.xyz
security: []
tags: []
paths:
  /v1/organizations/integrations/credentials/{identityId}:
    delete:
      tags:
        - Integrations Config
      summary: Remove a business identity's credential set for a provider
      description: >-
        Removes the per-identity credential set for the given business identity
        and provider. The organization-level default and other identities'
        credentials are left intact. Fails if the provider does not support
        per-identity credentials.
      operationId: IntegrationsConfigController_removeCredentialForIdentity
      parameters:
        - name: provider
          required: true
          in: query
          schema:
            type: string
        - name: identityId
          required: true
          in: path
          schema:
            type: string
      responses:
        '204':
          description: Credential set removed.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````