Create User

creating new user accounts

Must have the authorization to use this API

Create a new user

POST https://example.com/wp-json/rimplenet/v1 /users

Request Body

Name
Type
Description

first_name

String

Enter first name

last_name

String

Enter last name

username**

String

Preferred Username

user_email**

String

Email Address

user_password**

any

Preferred password

{
    "status_code": 201,
    "status": true,
    "message": "User created successfully",
    "data": {
        "id": 49
    },
    "error": []
}

To view request params, click on the arrow (>) at the right-hand side of the endpoint URL to expand or collapse

Sample response

{
    "status_code": 201,
    "status": true,
    "message": "User created successfully",
    "data": {
        "id": 49
    },
    "error": []
}

Last updated