EasypanelDocs

Create a WordPress user

Creates a WordPress user with a password and assigned role.

POST
/createWordPressUser

Creates a WordPress user with a password and assigned role.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/createWordPressUser" \  -H "Content-Type: application/json" \  -d '{    "projectName": "string",    "serviceName": "string",    "user": {      "display_name": "string",      "password": "string",      "roles": "string",      "user_email": "string"    }  }'
null