Getting Started

You need to sign up here via a json JSON post request

Endpoint: https://app.plex.coach/plapi/v1/partners/auth/signup/

REQUEST STRUCTURE

BODY PARAMETERS
{
username: 'string',
password: 'string',
email": 'string',
first_name": 'string'(optional),
last_name": 'string'(optional)
}

Response

{
"message": "success"
}

Logging In

After signing up, our team will perform verfication of your account and subsequently enable it.

You can log in here via a json JSON post request

Endpoint: https://app.plex.coach/plapi/v1/partners/auth/token-auth/

REQUEST PARAMETERS

BODY PARAMETERS
{
username: 'string',
password: 'string'
}

Response

{
"token": "xxxxxxxxxxxxyyyyyyyyy",
"userinfo": {
"id": 12345,
"email": "partner@gmail.com",
"username": "partner",
"first_name": "first",
"last_name": "first"
},
"subscription": {
"NextPaymentDateTime": null,
"SubscriptionLevel": 1,
"SubscriptionStatus": 2,
"SubscriptionType": "PAID"
},
"profile": {
"Subscription_id": "12345678",
"ApiKey": "dummykey",
"User_id": 12345
},
"designation": {
"id": "2345677",
"name": "partners"
}
}