API schema
Schema
UserInfo
Basic information about user subscription
Type: object
Properties
| Name | Type | Description |
|---|---|---|
accountnumber | string | User's account number |
pass | string | User password |
token | string | authentication token to include in all other API request. |
appid | string | string representing developers app id |
expiration | string | account's expiration date |
err | err |
Example shape
{
"accountnumber": "string",
"pass": "string",
"token": "string",
"appid": "string",
"expiration": "string",
"err": {
"example": "err"
}
}