patch bid status , no field validation
STR:
- Create bid with data
{
"tenderers": {
"identifier": {
"id": "12345678",
"scheme": "UA-EDR",
"legalName": {"en_US": "tender name", "uk_UA": "Організація бідера"}
}
},
"value": {
"currency": "eurocent",
"amount": 200.00,
"valueAddedTaxIncluded": true
},
"quantity": 20.00,
"qualified": "true"
}
- Patch {{baseUrl}}/api/procedures/{{procedure_id}}/bids/{{bidder_1_id}}/status?acc_token={{bidder_1_token}} with data
{
"tenders": {
"name": {"en_US": "string2", "uk_UA": "tender name2"},
"identifier": {
"id": "string",
"scheme": "string",
"uri": "http://string.com",
"legalName": {"en_US": "tender name", "uk_UA": "Організація бідера"}
}
},
"value": {
"currency": "eurocent",
"amount": 210.00,
"valueAddedTaxIncluded": true
},
"status": "active",
"quantity": 21.00
}
Should get error about fields, other than status
.
Edited by Ghost User