History

Rank History

GET ‎https://<domain>/<api prefix>/<version>/user/rank/history/

This API endpoint will return a list of user rank history.

Query Parameters

Name
Type
Description

limit

string

offset

string

Headers

Name
Type
Description

apikey*

string

Apikey

Authorization*

string

Bearer access token

HTTP/1.1 200 OK
Content-Type: application/json

Body:
{
    "status_code": 200,
    "errors": {},
    "data": {
        "results": [
            {
                "rank": {
                    "titile": "<rank_title>",
                    "image": "<rank_image>"
                },
                "created": "<created_date>",
                "username": "<username>"
            }
            ...
        ],
        "count": <list_count>,
        "previous": <previous_page_url>,
        "next": <next_page_url>
    }
}

Sample Code

Node

PHP

Package History

GET ‎https://<domain>/<api prefix>/<version>/user/package/history/

This API endpoint will return a list of user package history.

Query Parameters

Name
Type
Description

offset

string

limit

string

Headers

Name
Type
Description

apikey*

string

Apikey

Authorization*

string

Bearer access token

Sample Code

Node

PHP

Last updated

Was this helpful?