Get Transaction Detail
Returns the transaction-detail payload for the given transaction id.
Parameters
- transaction_id
- Transaction identifier (the underlying order's tx_id).
- api_key
- Resolved Partner API key, providing the financial institution scope for the lookup.
Returns
Transaction-detail response with the transaction metadata and lifecycle state.
Raises
- HTTPException
- 404 Not Found when no transaction with that id exists within the partner's financial institution.
Authorization
APIKeyHeader x-api-key<token>
In: header
Path Parameters
transaction_id*Transaction Id
Response Body
application/json
application/json
curl -X GET "https://partner-api.investifi.com/v1/transactions/string/"{
"transaction_id": "string",
"user_account_id": "string",
"product": "crypto",
"transaction_name": "buy",
"symbol": "string",
"quantity": "string",
"notional": "string",
"fee": "string",
"status": "pending",
"placed_at": "2019-08-24T14:15:22Z",
"completed_at": "2019-08-24T14:15:22Z",
"is_recurring_transaction": true,
"recurring_transaction_id": "string",
"trading_period_id": "string"
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}
