Retrieve a single FX transaction
GET/api/fx_transaction_details/:id
This API endpoint is your gateway to delving into the intricacies of an individual foreign exchange (FX) transaction, enabling you to uncover a treasure trove of details about a specific FX transaction.
Request
Path Parameters
id stringrequired
FxTransactionDetail identifier
Responses
- 200
- 401
- 403
- 404
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
id integer
currencyFrom string
currencyTo string
amountFrom string
amountTo string
direction string
Possible values: [sell, buy]
dealDate string
valueDate string
type string
Possible values: [spot, forward]
spotRate string
forwardPoints stringnull
platformRate string
status string
Possible values: [created, pending, transferred, canceled]
fromAutomation boolean
{
"id": 1,
"currencyFrom": "CHF",
"currencyTo": "EUR",
"amountFrom": "100.00",
"amountTo": "105.53",
"direction": "sell",
"dealDate": "2023-01-01T00:00:00+00:00",
"valueDate": "2023-01-01T00:00:00+00:00",
"type": "forward",
"spotRate": "1.0553",
"forwardPoints": "1.0553",
"platformRate": "1.0553",
"status": "hedged",
"fromAutomation": true
}
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Not Found -- The requested resource could not be found.
Loading...