Report: сервис отчётов

1. Все операции начиная с какого-то времени

Запрос: /report/since_overall
Тело:

{
   auth_token: <auth_token>,
   timestamp_from: <timestamp>
}

Ответ:

{
    error_code: 1 
}

или

{
    error_code: 0
    operations: [
        {
            op_id: <operation_id>,
            cat_id: <category_id>,
            account_id: <account_id>,
            timestamp: <timestamp>,
            sum: <sum_of_operation>,
            memo: <memo>,
            notes: <notes>,
            tags: [<tag_string>, ....]
        },
        ..... ]
}

2. Все операции по аккаунту, начиная с какого-то времени

Запрос: /report/since
Тело:

{
   auth_token: <auth_token>,
   account_id: <account_id>,
   timestamp_from: <timestamp>
}

Ответ:

{
    error_code: 1 
}

или

{
    error_code: 0
    operations: [
        {
            op_id: <operations_id>,
            cat_id: <category_id>,
            timestamp: <timestamp>,
            sum: <sum_of_operation>,
            balance: <balance>,
            memo: <memo>,
            notes: <notes>,
            tags: [<tag_string>, ....]
        },
        ..... ]
}