Delete organization endpoint added (#5601)

* Delete organization endpoint added

* Parameters added in comment

* Typo fix

* Newline character removed
This commit is contained in:
Shashvat Kedia
2018-12-27 21:06:58 +05:30
committed by Jonas Franz
parent 21357a4ae0
commit 6e20b504b1
3 changed files with 49 additions and 1 deletions

View File

@ -467,6 +467,30 @@
}
}
},
"delete": {
"produces": [
"application/json"
],
"tags": [
"organization"
],
"summary": "Delete an organization",
"operationId": "orgDelete",
"parameters": [
{
"type": "string",
"description": "organization that is to be deleted",
"name": "org",
"in": "path",
"required": true
}
],
"responses": {
"204": {
"$ref": "#/responses/empty"
}
}
},
"patch": {
"consumes": [
"application/json"