Lookup a funding event
$ straddle funding-events get
GET/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.
Lookup a funding event
straddle funding-events get \
--api-key 'My API Key' \
--id 182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e{
"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",
"status": "created",
"status_details": {
"changed_at": "2019-12-27T18:11:19.117Z",
"message": "Bank account sucesfully validated",
"reason": "insufficient_funds",
"source": "watchtower",
"code": "code"
},
"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",
"status": "created",
"status_details": {
"changed_at": "2019-12-27T18:11:19.117Z",
"message": "Bank account sucesfully validated",
"reason": "insufficient_funds",
"source": "watchtower",
"code": "code"
},
"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"
}