POST applications - ocariot/api-gateway GitHub Wiki
Description
Register a new application.
Permissions:
- Only Admin user can do this.
Scope
applications:create
URL
Request body
{
"username": "APPBR01",
"password": "mys3cr3tp4ss",
"application_name": "Raspberry Pi 3 Model B+",
"institution_id": "5a62be07de34500146d9c624"
}
Curl example
curl -X POST "https://localhost/v1/applications" -H "accept: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" -H "Content-Type: application/json" -d "{"username":"APPBR01","password":"mys3cr3tp4ss","application_name":"Raspberry Pi 3 Model B+","institution_id":"5a62be07de34500146d9c624"}"
Response body
-
201
Application saved sucessfully.{ "id": "5db32930bec1431c51ae15fb", "username": "APPBR01", "institution_id": "5a62be07de34500146d9c624", "application_name": "Raspberry Pi 3 Model B+" }
-
400
Validation errors-
- Example
{ "code": 400, "message": "Required fields were not provided...", "description": "username, password, application_name are required!" }
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "username must have at least one character!" }
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "username must be a string!" }
-
403
Permission Error -
409
Conflict Error