cURL
curl --request POST \ --url http://localhost/api/v3/users \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "email": "jsmith@example.com", "password": "<string>", "password_confirmation": "<string>", "throttle": 123, "roles": [ { "id": 123 } ] } '
{ "data": { "id": 123, "name": "<string>", "email": "<string>", "throttle": 123, "roles": [ { "id": 123, "handle": "<string>" } ], "permissions": [ { "id": 123, "handle": "<string>" } ], "created_at": "<string>", "updated_at": "<string>" } }
A POST to the /user endpoint allows your application to create a user.
POST
/user
Documentation IndexFetch the complete documentation index at: https://docs.omneo.io/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.omneo.io/llms.txt
Use this file to discover all available pages before exploring further.
8
1
Show child attributes
User