Create user w/Plan API Endpoint

API Endpoint

API Call to create user with a plan & associate tags

POST https://yourWLdomain.com/api/users

To create a user & assign them to a specific plan on your WL Application you can use the following endpoint.

Please note that the system will bypass Stripe that is associated with this plan and purely assign/restrict to the specific plans specifications

Headers

Name
Type
Description

x-api-key*

String

{{WL.APIKEY}}

Content-Type*

String

application/json

Request Body

Name
Type
Description

JSON Payload*

{ "name": "John Doe",

"password": "123admin##",

"email": "[email protected]",

"tags": [ "CustomTag1", "CustomTag2" ],

"remove_tags": [

"CustomTag3" ],

"subscription_plan_id": 3

}

Example Successful Request Response

Last updated