LDS Stake Portal
User Management

Create User

POST
/users/

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/users/" \  -H "Content-Type: application/json" \  -d '{    "email": "string",    "fname": "string",    "lname": "string",    "active": true,    "password": "string"  }'
null
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}