{ "openapi": "3.0.3", "info": { "description": "You can use Admin API to create and manage your Human API users", "version": "1.0.0", "title": "Admin API", "termsOfService": "https://www.humanapi.co/developer-terms", "contact": { "email": "help@humanapi.co", "url": "https://www.humanapi.co/contact" } }, "servers": [ { "url": "https://admin.humanapi.co", "description": "Production server" } ], "tags": [ { "name": "subscriptions", "description": "API endpoints to manage subscriptions", "externalDocs": { "description": "Find out more", "url": "https://reference.humanapi.co/docs/admin-api" } } ], "paths": { "/api/v1/subscriptions/{subscriptionId}": { "delete": { "tags": [ "subscriptions" ], "description": "Delete a specific subscription (by subscription id)", "operationId": "deleteSubscription", "parameters": [ { "$ref": "#/components/parameters/subscriptionIdPath" } ], "responses": { "200": { "description": "OK" } } } } }, "components": { "securitySchemes": { "bearerAuth": { "type": "http", "scheme": "bearer", "bearerFormat": "JWT" } }, "parameters": { "subscriptionIdPath": { "name": "subscriptionId", "in": "path", "description": "The subscriptionId of the user", "required": true, "schema": { "type": "string" } } } }, "security": [ { "bearerAuth": [] } ], "x-readme": { "explorer-enabled": true, "proxy-enabled": true } }