Create a new user. It creates new user and sends an email or SMS (depends on login type) with a pin code.
Users
POST sign up(referral)
Endpoint
POST /api/v1/users
Parameters
Name | Description | Enum |
---|---|---|
user[login] required | Email or Phone number | |
user[role] required | User role | ["driver", "operator", "admin"] |
Request
Route
POST /api/v1/users
Headers
Accept: application/json
Content-Type: application/json
Host: example.org
Cookie:
Body
{
"user": {
"login": "horacio.bechtelar@king-deckow.test",
"role": "driver",
"referral_code": "756495"
}
}
Response
Simulated Response
Status
200
Headers
x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"1451421cacbf436844140b1b377555da"
cache-control: max-age=0, private, must-revalidate
x-request-id: eb7b03c7-9792-4839-a325-db5972fde9c3
x-runtime: 0.021194
content-length: 179
Body
{
"user": {
"id": 1893,
"email": "horacio.bechtelar@king-deckow.test",
"first_name": null,
"last_name": null,
"phone_number": null,
"profile_id": null,
"referral_code": "652893",
"role": "driver"
}
}