# Create new user for the account User's profile required fields: username, displayName, applicationId Endpoint: POST /api/v1/users Version: 1.0 Security: header ## Query parameters: - `htmlContent` (any) Returns text as html if true or original text if false. Applicable only to local posts and users. Default is true. ## Request fields (application/json): - `username` (string, required) Username Example: "john_smith" - `displayName` (string, required) Display Name Example: "John Smith" - `summary` (string,null) User's bio Example: "I work in IT" - `avatarId` (string,null) Avatar upload id or null to remove Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `headerId` (string,null) Header upload id or null to remove Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `actorType` (string,null) User's role Enum: "Application", "Group", "Organization", "Person", "Service" - `channel` (boolean) Whether this user is a channel ## Response 401 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 403 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 404 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 409 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 500 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 400 fields