SSO
  1. admin
SSO
  • sso
    • admin
      • account-create
        POST
      • account-suspend
        POST
      • account-unsuspend
        POST
      • account-bind-wallet
        POST
    • applications
      • scope
        • add
        • delete
      • user
        • add
        • update
        • delete
        • user-all
        • is-allowed
      • create
      • delete
      • new-api-key
      • all
      • all-own
      • details
      • is-owner
    • auth
      • token
        • token-refresh
      • register
        • register
        • request-email-code
        • verify-email-code
      • password
        • password-reset
        • request-email-code
        • verify-email-code
      • discord
        • authorize-URL
        • login
      • login
      • auth-me
      • logout
    • auth-eth
      • login-challenge
      • login
      • bind-account
      • bind-challenge
      • is-bound
    • access
      • planning
        • session
          • get
          • all
          • find
          • create
          • update
          • delete
        • assistant
          • create-sessions
          • delete-sessions
        • get
      • pbe-access
        • is-authorized
    • newsletter
      • get-subscribers
    • user
      • me
        • email
          • update
        • password
          • update
      • role
        • all
        • update-role
        • update-role-batch
        • delete-role
        • delete-role-batch
      • all
      • find
    • wallet
      • find-owner
      • find-wallet
    • Get API version
      GET
  1. admin

account-create

POST
https://sso.dlab.ovh/api/admin/account/create
Create easily an account. This admin management api bypass the email verification.

Request

Header Params
Authorization
string 
required
Example:
Bearer {{token}}
Body Params application/json
email
string 
required
password
string 
required
reason
string 
required
role
string  | null 
required
Example
{
    "email": "test@rct.ai",
    "password": "12345678",
    "reason": "whatever the reason"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sso.dlab.ovh/api/admin/account/create' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "test@rct.ai",
    "password": "12345678",
    "reason": "whatever the reason"
}'

Responses

🟢200成功
application/json
Body
object {0}
Example
{}
Next
account-suspend
Built with