Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/jsonRequired
{
"name": "Jane Smith",
"email": "jane@example.com",
"is_admin": true,
"password": "Secretp@ssw0rd",
"password_confirmation": "Secretp@ssw0rd"
}
Request Code Samples
curl --location 'https://app.onlysocial.io/os/api/panel/users' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Jane Smith",
"email": "jane@example.com",
"is_admin": true,
"password": "Secretp@ssw0rd",
"password_confirmation": "Secretp@ssw0rd"
}'
Responses
This response does not have a body.
Modified at 2026-06-14 08:07:00