curl --request GET \
--url https://api.example.com/cabinet/admin/users/{user_id}/gifts \
--header 'Authorization: Bearer <token>'{
"sent": [],
"received": [],
"sent_total": 0,
"received_total": 0
}Get all gift subscriptions sent and received by user.
curl --request GET \
--url https://api.example.com/cabinet/admin/users/{user_id}/gifts \
--header 'Authorization: Bearer <token>'{
"sent": [],
"received": [],
"sent_total": 0,
"received_total": 0
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.