curl --request GET \
--url https://api.example.com/cabinet/gift/received \
--header 'Authorization: Bearer <token>'[
{
"token": "<string>",
"period_days": 123,
"status": "<string>",
"tariff_name": "<string>",
"device_limit": 1,
"sender_display": "<string>",
"gift_message": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]Get all gifts the current user has received.
curl --request GET \
--url https://api.example.com/cabinet/gift/received \
--header 'Authorization: Bearer <token>'[
{
"token": "<string>",
"period_days": 123,
"status": "<string>",
"tariff_name": "<string>",
"device_limit": 1,
"sender_display": "<string>",
"gift_message": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.