Skip to main content
POST
/
v1
/
studio
Create a studio admin
curl --request POST \
  --url http://localhost:6900/v1/studio \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "passwordHash": "<string>",
  "name": "<string>",
  "isSuperadmin": false
}
'
null

Documentation Index

Fetch the complete documentation index at: https://docs.revstack.dev/llms.txt

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

Body

application/json
email
string<email>
required
passwordHash
string
required
Minimum string length: 1
name
string
isSuperadmin
boolean
default:false

Response

201 - application/json

Admin created

The response is of type unknown.