POST /api/user/
Header | Required value |
---|---|
Content-Type |
application/json |
{
"client_id": XXXXXXXXXXXXXXXXXX,
"email": "oliver@example.com",
"password1": "123",
"password2": "123",
"display_name": "Oliver"
}
You need to obtain a client_id
by registering your application with GeoKey.
{
"id": 1,
"display_name": "Oliver"
}
Code | Reason |
---|---|
201 | The user was registered successfully. |
400 | A user with the email and/or display has already registered. You did provide an invalid client id or not client id at all. |