curl --location --request GET '/api/v2/fund-requests//history?limit&cursor_key_starting_after' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"requester": {
"uid": "string",
"uuid": "string",
"first_name": "Piers",
"last_name": "Morgan",
"preferred_name": "Piers M.",
"image_url": "http://example.com/sample.png",
"is_blocked": true,
"can_receive_funds": true,
"is_new_user": true,
"user_status": "Registered",
"can_become_admin": false,
"email": {
"email_address": "string",
"is_email_verified": true
},
"phone": {
"country_iso_3": "AUS",
"country_code_prefix": "+61",
"phone_number": "431234567",
"is_phone_verified": true
}
},
"amount": {
"amount": "100.12",
"currency_code": "AUD"
},
"created_at": "2019-08-24T14:15:22.123Z",
"type": "created",
"message": "string",
"requestees": [
{
"user": {
"uid": "string",
"uuid": "string",
"first_name": "Piers",
"last_name": "Morgan",
"preferred_name": "Piers M.",
"image_url": "http://example.com/sample.png",
"is_blocked": true,
"can_receive_funds": true,
"is_new_user": true,
"user_status": "Registered",
"can_become_admin": false,
"email": {
"email_address": "string",
"is_email_verified": true
},
"phone": {
"country_iso_3": "AUS",
"country_code_prefix": "+61",
"phone_number": "431234567",
"is_phone_verified": true
}
},
"amount": {
"amount": "100.12",
"currency_code": "AUD"
}
}
]
}
],
"meta": {
"next_cursor_key": "string",
"has_more": true
}
}