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

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.