Get FX Quote

Request quote for FX trade

SecurityoAuth2
Request
Request Body schema: application/json
required

Quote request attributes to get the quote for a given ccy pair

channel
string

The channel name set by the FX quote request system such as API, TELLER etc. This is an optional field and defaulted to API if it is not provided. The channel names should be defined in the Finzly system before it can be used in the API.

customerId
required
string

The value based on the customerIdType

customerIdType
required
string

CustomerId type

Enum: "CustomerUID" "CustomerShortName" "CustomerId" "DDA"
sellCurrency
required
string

Sell Currency

buyCurrency
required
string

Buy Currency

fundingAmount
number

Funding Amount. Only one is needed between fundingAmount and transferAmount

transferAmount
number

Beneficiay receive amount. Only one is needed between fundingAmount and transferAmount

productType
required
string

FX financial instrument such SPOT or FORWARD

Enum: "SPOT" "FORWARD"
tenor
string

The length of time remaining before a financial contract expires. Only one is needed between tenor or valueDate. e.g. SPOT, ON, TN

valueDate
string

The delivery date on which counterparties to a transaction agree to settle their respective obligations by making payments and transferring ownership.Only one is needed between tenor or valueDate.The date format is in mm-dd-yyyy.

Responses
200

Successfully processed request

400

bad input parameter environment

401

You are not authorized to access the resource

403

Accessing the resource you were trying to reach is forbidden

404

The resource you were trying to reach is not found

405

bad input parameter environment

500

Internal server error

503

Service unavailable

default

Response to the Get FX Quote

post/v2/fx/quote
Request samples
application/json
{
  • "channel": "ONLINE.",
  • "customerId": "112344",
  • "customerIdType": "CustomerUID",
  • "sellCurrency": "EUR",
  • "buyCurrency": "INR",
  • "fundingAmount": 10000,
  • "transferAmount": 1000,
  • "productType": "SPOT",
  • "tenor": "SPOT",
  • "valueDate": "01-01-2020"
}
Response samples
application/json
{
  • "status": "Success",
  • "code": "string",
  • "message": "string",
  • "data": {
    }
}