I need to GET a request history (log) per single user for last 30 days (only success)
How to achieve that with Metadata API request history? I mean user_id, and timestamp 'last 30 days'
{
'page': 1,
'per_page': 50,
'branch_id': null,
'api_id': XXX,
'query_id': null,
'sort': {
'created_at': 'desc'
},
'search': [{status: 200}, ?????????????????????]
}
Thank you in advance!