Create user
Create a user in your system
POST api/users
Parameters
Parameter | Type | Status | Description |
---|---|---|---|
name | string | required | Maximum: 255 |
string | required | Maximum: 255 |
Example request:
curl -X POST "https://panel.examplehosting.com/api/users" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
--data '{"name":"John Doe", "email":"john@doe.com"}'