You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.
All endpoints wrap responses in a standard format:
{success: Boolean,code: Number,result: Object|Array|null|undefined,// will be defined if success === trueerror: Object|String|undefined// will be defined if success === false}
Success
Success result is not required, but the definition of the key result in the response object is, if success === true. Results should be either an object, an array or null (thereby conforming to JSON in itself).