Order Cancel API

Test this service via Swagger: https://app.swaggerhub.com/apis-docs/Synnetra4/FXWebAPISOA/1.7

During implementation we provide dedicated Swagger documentation pointing to the Sandbox environment of the customer

For architecture overview check:

REST API for SOAClient facing REST API

/FXWebAPI/OrderCancel

POST https://demo.fxcib.com/api/FXWebAPI/OrderCancel

This service allows to cancel previously placed Order. It can be used as client facing service after Oauth2 authentication or service behind firewall used by SOA After successful cancellation your SOA can for example: unblock limit

Request Body

Name
Type
Description

customerCode

string

Used by SOA when placing order in the name of the customer after internal verification.

orderId

string

OrderID of the Order that need to be canceled

pair

number

Currency Pair code in CCY/CCY format Ex. EUR/USD. Pair is used mainly for request verification

key

string

Key provided by FXWebAPI

"Order canceled"

Request Example:

{
  "customerCode": "SYNNETRA.HTML.TEST",
  "orderId": "45433n5k3u45uk34",
  "pair": "EUR/USD",
  "request": {
    "key": "X445Acg7tkxsy7HfZKHgDUKxKW9g4RWazM9NtjWTwdU6nxtQGKgKTMNmSdDcPECHGpvz3PnNVDH4H2Mq"
  }
}

Last updated