POST educators - ocariot/api-gateway GitHub Wiki

Description

Register a new educator.

Permissions:

  • Only Admin user can do this.

Scope

educators:create

URL

POST https://localhost/v1/educators

Request body

{
  "username": "educator01",
  "password": "mys3cr3tp4ss",
  "institution_id": "5a62be07de34500146d9c624"
}

Curl example

curl -X POST "https://localhost/v1/educators" -H "accept: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" -H "Content-Type: application/json" -d "{"username":"educator01","password":"mys3cr3tp4ss","institution_id":"5a62be07de34500146d9c624"}"

Response body