Skip to content

Get cross deal collateral report

POST
/api/apiGateway/getCrossDealCollateralReport/{id}

Get the deal and collateral pairs for the specified collateral ids.

Request

Type: application/json

Schema: CrossDealCollateralReportFilterDto

collateralIds array [ string ]

Response

Type: application/json

Schema: CrossDealCollateralReportResponseDto

success boolean

Indicates whether the request completed successfully.

error ErrorDto

body array [ DealCollateralPairDto ]

POST ${BASE_URL}/api/apiGateway/getCrossDealCollateralReport
Accept: */*
Authorization: Bearer eyJz93a...k4laUWw
curl --request POST \
    --url "${BASE_URL}/api/apiGateway/getCrossDealCollateralReport" \
    --header 'Accept: */*' \
    --header 'Authorization: Bearer eyJz93a...k4laUWw'
Response
{
  "success": true,
  "error": {
    "target": "string",
    "code": "Duplicated",
    "message": "string",
    "details": ["string"]
  },
  "body": [
    {
      "collateralId": "string",
      "dealId": "string"
    }
  ]
}