Skip to content

Withdraw quote request

Request

Withdraw an active quote request.

Security
SSO_TOKEN
Path
requestIdstring, <= 255 charactersrequired

Request ID assigned by Integral. Returned in requestId of the response to Request quote.

Example:G4796976d517b1786e1fa242
DELETE
/v2/rfs/{requestId}
JavaScript
const requestId = 'G4796976d517b1786e1fa242';
const resp = await fetch(
  `https://docs.fxinside.net/_mock/openapi/integral-api-reference/rest/v2/rfs/${requestId}`,
  {
    method: 'DELETE',
    headers: {
      SSO_TOKEN: 'YOUR_API_KEY_HERE'
    }
  }
);

const data = await resp.text();
console.log(data);

Responses

Accepted response with no message body.