Registering a Learner

Performance Learning allows you to add learners to your subscription, once registered, you are responsible for managing your learners, you will also manage your learner's requests to the Performance Learning. To access Performance Learning features, you will need to supply your API_KEY and the learner's identification - user_id.

Creating a Learner

Endpoint: POST https://app.plex.coach/plapi/v1/partners/users/create-learner

See the parameters, request schema and sample response below

HEADER PARAMETERS
{
apikey: 'string' (Your API KEY),
}
OPTIONAL URL PARAMETERS
{
level: 'string' (eg. PLOA_PARTNER_LEVEL1 for FE PLOA_PARTNER_LEVEL2 for secondary PLOA_PARTNER_LEVEL3 for primary)
}

Request Schema

{
"password": "string",
"dob": "string",
"username": "string",
"email": "email" (optional),
"first_name": "string" (optional),
"last_name": "string" (optional),
}

Sample Response

{
"user_id": "string",
"message": "string"
}