GET /v1/overview/monthly_movement?date_from={date_from}

View monthly movement


Parameters

+ date_from (string, optional) - date which to load overview from (in format YYYY-MM-DD)

Request

application/json
TS-Apikey: api_key
{}

Response

application/json
HTTP 200
{
    "list":[
        {
            "year": 2018,
            "month": 12,
            "direction": "I",
            "count": 60
        },
        {
            "year": 2018,
            "month": 12,
            "direction": "O",
            "count": 9034
        },
        {
            "year": 2018,
            "month": 11,
            "direction": "O",
            "count": 43
        },
        {
            "year": 2018,
            "month": 11,
            "direction": "I",
            "count": 21061
        }
    ]
}