Accounts API - Basics
API Methods
Method Name | Access URI | Methods | Description |
---|---|---|---|
get_user | intellivoid/v1/accounts/get_user | GET POST | Returns the basic information about the authenticated user such as their ID, Username and Avatar permalinks |
get_email | intellivoid/v1/accounts/get_email | GET POST | Returns the user's Email Address |
get_personal_information | intellivoid/v1/accounts/get_personal_information | GET POST | Returns the user's Personal Information such as their name and birthday |
API Authentication
All these API methods requires authentication using your Application ID, Secret Key
and Access Token
The following authentication methods are available
Basic HTTP Authentication
You can authenticate by providing your Application ID via the username field and your Secret Key via the password field but you must provide the Access Token either in the GET parameter or POST parameter usingaccess_token
GET/POST Parameter
You can provide your authentication details via a GET Parameter or within a POST (multipart/form-data), the parameter names that is applicable to both methods isapplication_id
for your Application ID, secret_key
for your secret key and access_token
for your Access Token
Obtaining an Access Token
You can obtain an Access Token by authenticating the user to your Application, for more information see COA API IntroductionTroubleshooting
All API responses returns a
X-Request-ID
header with a unique
value set with every response you get. It is important to log this request ID
if you encounter unexpected issues and server-side errors. Intellivoid can use
this ID to get more details about the request and troubleshoot the error.
Data protection
To protect your data, we do not store the information our server returns to your client, the only data we keep track of is the request data you sent and server-side details that are not visible in the request such as exception dumps, cache information and so on. This information is automatically deleted from our server after two weeks. This data is used to troubleshoot any problems with our services and to address them accordingly.Error Codes
There are no special error codes for Accounts, but it does incorporate COAs
error codes if a error is to arise related to COA, for more information see
COA Error Codes