/api/create-account
Create a new user account. and get the access token.
End point: http://greatpost.es/api/create-account
POST data:
Key
Value
Description
Required
username
string
User’s username
Yes
password
string
User’s username
Yes
string
User’s username
Yes
confirm_password
string
User’s username
Yes
JSON formatted success repsond:
{
"api_status": 200,
"access_token": "", // store this, it will be used for all other API calls
"user_id": "", // authenticated user id
}Last updated