Prosper AI API Keys API

The API Keys API from Prosper AI — 1 operation(s) for api keys.

Documentation

Specifications

Other Resources

OpenAPI Specification

prosper-ai-api-keys-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Prosper Voice API Keys API
  version: 1.0.0
tags:
- name: API Keys
paths:
  /api/v1/api-keys/{api_key_id}:
    delete:
      tags:
      - API Keys
      summary: Delete Api Key
      operationId: delete_api_key_api_v1_api_keys__api_key_id__delete
      parameters:
      - name: api_key_id
        in: path
        required: true
        schema:
          type: string
          title: Api Key Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
                title: Response Delete Api Key Api V1 Api Keys  Api Key Id  Delete
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError