Skip to main content
POST
/
api
/
v1
/
auth
/
users
Create user
curl --request POST \
  --url https://api.example.com/api/v1/auth/users \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deny_scopes": [
    {
      "action": "<string>",
      "resource": "<string>"
    }
  ],
  "name": "<string>",
  "roles": [
    "<string>"
  ]
}
'
{
  "deny_scopes": [
    {
      "action": "<string>",
      "resource": "<string>"
    }
  ],
  "permissions": [
    {
      "action": "<string>",
      "resource": "<string>"
    }
  ],
  "role_names": [
    "<string>"
  ],
  "updated_at": "<string>",
  "user_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://gns3util.saygex.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Body

application/json

User Creation Payload

deny_scopes
object[]
name
string
roles
string[]

Response

OK

deny_scopes
object[]
permissions
object[]
role_names
string[]
updated_at
string
user_id
string