Lookup a funding event
/v1/funding_events/{id}
Retrieves the details of an existing funding event. Supply the unique funding event id, and Straddle will return the individual transaction items that make up the funding event.
Path Parameters
id: string
Header Parameters
"Correlation-Id": optional string
"Request-Id": optional string
"Straddle-Account-Id": optional string
Returns
Lookup a funding event
curl https://sandbox.straddle.com/v1/funding_events/$ID \
-H "Authorization: Bearer $STRADDLE_API_KEY"
{
"data": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"amount": 100000,
"created_at": "2019-12-27T18:11:19.117Z",
"direction": "deposit",
"event_type": "charge_deposit",
"payment_count": 0,
"trace_ids": {
"foo": "string"
},
"trace_numbers": [
"string"
],
"transfer_date": "2019-12-27",
"updated_at": "2019-12-27T18:11:19.117Z",
"trace_number": "trace_number"
},
"meta": {
"api_request_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"api_request_timestamp": "2019-12-27T18:11:19.117Z"
},
"response_type": "object"
}Returns Examples
{
"data": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"amount": 100000,
"created_at": "2019-12-27T18:11:19.117Z",
"direction": "deposit",
"event_type": "charge_deposit",
"payment_count": 0,
"trace_ids": {
"foo": "string"
},
"trace_numbers": [
"string"
],
"transfer_date": "2019-12-27",
"updated_at": "2019-12-27T18:11:19.117Z",
"trace_number": "trace_number"
},
"meta": {
"api_request_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"api_request_timestamp": "2019-12-27T18:11:19.117Z"
},
"response_type": "object"
}