POST
/
fraud
/
release
curl --request POST \
  --url https://prod01.oms.fabric.inc/api/v2/fraud/release \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "orderNumber": "<string>",
  "channel": "<string>",
  "tenant": "<string>",
  "target": {
    "serviceName": "<string>",
    "serviceAttributes": {}
  }
}'
{
  "status": "SUCCESS",
  "message": "Order has been cancelled",
  "errors": "[MerchantId is not configured]"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
orderNumber
string
channel
string
tenant
string
target
object

Response

200 - */*
Release request completed
status
string
Example:

"SUCCESS"

message
string
Example:

"Order has been cancelled"

errors
string[]
Example:

"[MerchantId is not configured]"