Skip to content

Get all deal ids

GET
/api/apiGateway/getAllDealIds

Retrieve all the deal ids available in the system.

Response

Type: application/json

Schema: DealIdsResponseDto

success boolean

Indicates whether the request completed successfully.

error ErrorDto

dealIds array [ string ]

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