Created
November 6, 2023 13:34
-
-
Save manuelmazzuola/8beac04fcefb77874acd6b1328e3b817 to your computer and use it in GitHub Desktop.
marketplace-api openapi spec 1.0.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
title: Cloudesire Marketplace API | |
version: 1.0.0 | |
servers: | |
- url: 'https://cloudesire-dev-backend.netasaas.cloudeng.it/marketplace' | |
paths: | |
/configuration/{name}: | |
patch: | |
summary: Updates the configuration file | |
description: '' | |
operationId: patchConfiguration | |
parameters: | |
- name: name | |
in: path | |
description: Name of the configuration file | |
required: true | |
schema: | |
type: string | |
requestBody: | |
$ref: '#/components/requestBodies/ConfigurationBody' | |
responses: | |
'204': | |
description: No Content | |
components: | |
requestBodies: | |
ConfigurationBody: | |
description: A JSON object containing Configuration information | |
required: true | |
content: | |
application/json: | |
schema: | |
type: object | |
additionalProperties: | |
type: string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment