POST /api/admins/create

POST /api/admins/create

Body

Responses

curl \
 --request POST 'http://api.example.com/api/admins/create' \
 --header "Content-Type: application/json" \
 --data '{"firstName":"string","lastName":"string","city":"string","street":"string","year":42,"month":42,"day":42,"email":"string","password":"string"}'
curl \
 --request POST 'http://api.example.com/api/admins/create' \
 --header "Content-Type: text/json"
curl \
 --request POST 'http://api.example.com/api/admins/create' \
 --header "Content-Type: application/*+json"
Request examples
{
  "firstName": "string",
  "lastName": "string",
  "city": "string",
  "street": "string",
  "year": 42,
  "month": 42,
  "day": 42,
  "email": "string",
  "password": "string"
}