Skip to content
Snippets Groups Projects
Commit 47af799e authored by Andreas Huber's avatar Andreas Huber
Browse files

Parameter in der Callback-URL umbenannt, da "path" zu einer Kollision mit dem Schlüsselwort führt.

parent 52ae3b58
No related branches found
No related tags found
1 merge request!5Version 0.2
...@@ -15,19 +15,20 @@ ...@@ -15,19 +15,20 @@
}, },
"servers": [ "servers": [
{ {
"url": "{callbackURL}" "url": "{callback-host}"
} }
], ],
"paths": { "paths": {
"/{path}": { "/{callback-path}": {
"parameters": [ "parameters": [
{ {
"schema": { "schema": {
"type": "string" "type": "string"
}, },
"name": "path", "name": "callback-path",
"in": "path", "in": "path",
"required": true "required": true,
"description": "Dies ist nur ein Platzhalter. Die ganze Callback-URL ergibt sich aus der Angabe in der Destiantion."
} }
], ],
"post": { "post": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment