Theneo · Example Payload

Theneo Import Api Specification Example

API DocumentationDeveloper PortalDeveloper ToolsDocumentation PlatformAIAI Co-PilotMCPPlatform

Theneo Import Api Specification Example is an example object payload from Theneo, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.theneo.io/projects/proj_01HX5QK8Z3JVBM2N4P7R9T6WY/import",
    "headers": {
      "Authorization": "your-api-key-here",
      "Content-Type": "multipart/form-data"
    },
    "body": {
      "link": "https://example.com/v2/openapi.yml",
      "importType": "merge"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "success": true,
      "message": "API specification imported successfully. 14 endpoints merged."
    }
  }
}