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

# Delete credential

> Available only for offers with `credential_system_type_id = 3` (MULTIPLE / credential-mode).
     *
     * `credential_system_type_id` is the authoritative delivery-mode field. Values: 1 = No Credentials (manual delivery via chat),
     * 2 = Single (deprecated — coerced to MULTIPLE on write), 3 = Multiple.



## OpenAPI

````yaml /api-docs.json delete /api/shop/marketplace/offers/{offerId}/credentials/{credentialId}
openapi: 3.0.0
info:
  title: Currency Marketplace API
  description: API documentation for Currency Marketplace
  version: 1.0.0
servers:
  - url: https://skycoach.gg/
    description: API Server
security: []
tags:
  - name: Currency Marketplace
    description: Currency Marketplace
  - name: Offers
    description: Offers
  - name: Offer Credentials
    description: Offer Credentials
paths:
  /api/shop/marketplace/offers/{offerId}/credentials/{credentialId}:
    delete:
      tags:
        - Offer Credentials
      summary: Delete credential
      description: >-
        Available only for offers with `credential_system_type_id = 3` (MULTIPLE
        / credential-mode).
             *
             * `credential_system_type_id` is the authoritative delivery-mode field. Values: 1 = No Credentials (manual delivery via chat),
             * 2 = Single (deprecated — coerced to MULTIPLE on write), 3 = Multiple.
      operationId: b8c27c5594e84c75fd65d676ba3f64eb
      parameters:
        - name: Accept
          in: header
          description: API response format
          required: true
          schema:
            type: string
            default: application/json
            enum:
              - application/json
        - name: offerId
          in: path
          required: true
          schema:
            type: integer
            example: 123
        - name: credentialId
          in: path
          required: true
          schema:
            type: integer
            example: 456
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: Credential deleted successfully
                type: object
        '400':
          description: Cannot delete this credential
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: Unauthenticated.
                type: object
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: Forbidden.
                type: object
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````