TED Search API v3: matching winners to LotResults #1199
-
Hi, It may be quite obvious, but i can't find the necessary fields: How can i match the winners of field "winner-name" to the respective LotResults? For instance, in publication 285496-2025 there are two winners in "winner-name" (this field is a flattened list for some reason) for a total of 5 lots. Any ideas? kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Dear user, { and I get the following result ...{ -> This is an issue -> We are working on a fix |
Beta Was this translation helpful? Give feedback.
Dear user,
Thank you for raising it.To reproduce it, I executed the following query using the API:
{
"query": "publication-number=285496-2025",
"fields": ["result-lot-identifier","winner-selection-status","winner-name"],
"page": 1,
"limit": 10,
"scope": "ACTIVE",
"checkQuerySyntax": false,
"paginationMode": "PAGE_NUMBER",
"onlyLatestVersions": false
}
and I get the following result
...{
"notices": [
{
"publication-number": "285496-2025",
"winner-selection-status": [
"selec-w",
"selec-w",
"selec-w",
"selec-w",
"selec-w"
],
"result-lot-identifier": [
"LOT-0001",
"LOT-0002",
"LOT-0003",
"LOT-0004",
"LOT-0005"
],
......
"winner-name": {
"nld": [
"Vandeputte Medical",
"MF Services B.V."
]
}....
…