Qualification Operations

When auction is over, the qualification process starts. The status of tender is active.qualification then. Right after results are submitted to Central DB, there is award generated for auction winner.

Listing awards

The pending award can be retrieved via request to list all available awards:

GET /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org


200 OK
Content-Type: application/json; charset=UTF-8

{
  "data": [
    {
      "status": "pending",
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:51.988435+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "bid_id": "ee786a6e8a7d470196a751273f064e78",
      "value": {
        "currency": "UAH",
        "amount": 450.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:51.988424+03:00",
      "id": "aec061c3b3234a9981a292ae161d2ece"
    }
  ]
}

When the award is in pending status, it means that procuring entity has to review documents describing the bid and other bidder documents.

Disqualification

The protocol of Qualification Committee decision should be uploaded as document into award and later its status should switch to either active (if it is accepted) or unsuccessful (if rejected).

POST /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/aec061c3b3234a9981a292ae161d2ece/documents?acc_token=e96bd05708744828a13d48aa6e282cb9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 337
Content-Type: application/json
Host: api-sandbox.openprocurement.org

{
  "data": {
    "url": "http://public.docs-sandbox.openprocurement.org/get/800261cb6def4a11bf3791e830befb3c?KeyID=1a1ebb61&Signature=XeHObf%2F36dBstK6OOXGbrtZgI7VnysX79jIYHJFHxhq1sksc3cMVgcCfFY5nt4wR3V1Mn8LLhGuKaqZaxvpHDQ%3D%3D",
    "title": "Unsuccessful_Reason.pdf",
    "hash": "md5:00000000000000000000000000000000",
    "format": "application/pdf"
  }
}


201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/aec061c3b3234a9981a292ae161d2ece/documents/0ac19aedb5d2407598d91aa963d6a027

{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "tender_owner",
    "title": "Unsuccessful_Reason.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/800261cb6def4a11bf3791e830befb3c?KeyID=1a1ebb61&Signature=PbVLwL3AMNy7I%2FnhEANHhLSNoOKKay2pvYsHnbBXD%252BBZM60nIqXTk3UDDN6TsctsZ2k0TtSk0XEwlEoFdbKRAQ%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-07-25T17:36:52.098854+03:00",
    "id": "0ac19aedb5d2407598d91aa963d6a027",
    "dateModified": "2017-07-25T17:36:52.098871+03:00"
  }
}

The Qualification Committee can upload several documents, for example, decisions to prolong the qualification process - in order to allow the bidder to collect all necessary documents or correct errors. Such documents would help to have procedure as transparent as possible and will reduce risk of cancellation by Complaint Review Body.

PATCH /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/aec061c3b3234a9981a292ae161d2ece?acc_token=e96bd05708744828a13d48aa6e282cb9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 36
Content-Type: application/json
Host: api-sandbox.openprocurement.org

{
  "data": {
    "status": "unsuccessful"
  }
}


200 OK
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/4983c533470d473aa5769ba399849cb0

{
  "data": {
    "status": "unsuccessful",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "title": "Unsuccessful_Reason.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/800261cb6def4a11bf3791e830befb3c?KeyID=1a1ebb61&Signature=PbVLwL3AMNy7I%2FnhEANHhLSNoOKKay2pvYsHnbBXD%252BBZM60nIqXTk3UDDN6TsctsZ2k0TtSk0XEwlEoFdbKRAQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-07-25T17:36:52.098854+03:00",
        "id": "0ac19aedb5d2407598d91aa963d6a027",
        "dateModified": "2017-07-25T17:36:52.098871+03:00"
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-07-25T17:36:51.988435+03:00",
      "endDate": "2017-07-27T17:36:52.185900+03:00"
    },
    "suppliers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "bid_id": "ee786a6e8a7d470196a751273f064e78",
    "value": {
      "currency": "UAH",
      "amount": 450.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2017-07-25T17:36:52.191749+03:00",
    "id": "aec061c3b3234a9981a292ae161d2ece"
  }
}

Note that after award rejection the next bid in the value-sorted bid sequence becomes subject of subsequent award. For convenience you can use the Location response header from the response above that is pointing to an award in “pending” state.

Contract Awarding

Protocol upload:

POST /tenders/64e93250be76435397e8c992ed4214d1/awards/{}/documents HTTP/1.1

Confirming the Award:

PATCH /tenders/64e93250be76435397e8c992ed4214d1/awards/{} HTTP/1.1

{
    "data":{
        "status": "active"
    }
}
HTTP/1.1 200 OK

The procuring entity can wait until bidder provides all missing documents (licenses, certificates, statements, etc.) or update original bid documents to correct errors. Alternatively, they can reject the bid if provided documents do not satisfy the pass/fail criteria of tender (even before full package of supplementary documents is available).

Cancelling Active Award

Sometimes Bidder refuses to sign the contract even after passing qualification process. In this case Procuring Entity is expected to be able to reject approved award and disqualify Bid afterwards.

After we have Award with active status:

GET /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/4983c533470d473aa5769ba399849cb0 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org


200 OK
Content-Type: application/json; charset=UTF-8

{
  "data": {
    "status": "active",
    "complaintPeriod": {
      "startDate": "2017-07-25T17:36:52.186270+03:00",
      "endDate": "2017-07-27T17:36:52.318837+03:00"
    },
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "bid_id": "39481e7f97894915832b3b882afdade4",
    "value": {
      "currency": "UAH",
      "amount": 469.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2017-07-25T17:36:52.324371+03:00",
    "id": "4983c533470d473aa5769ba399849cb0"
  }
}

There is need to cancel it:

PATCH /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/4983c533470d473aa5769ba399849cb0?acc_token=e96bd05708744828a13d48aa6e282cb9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 33
Content-Type: application/json
Host: api-sandbox.openprocurement.org

{
  "data": {
    "status": "cancelled"
  }
}


200 OK
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/3ff474e4f3a843fba101c561e5cffb14

{
  "data": {
    "status": "cancelled",
    "complaintPeriod": {
      "startDate": "2017-07-25T17:36:52.186270+03:00",
      "endDate": "2017-07-25T17:36:52.456668+03:00"
    },
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "bid_id": "39481e7f97894915832b3b882afdade4",
    "value": {
      "currency": "UAH",
      "amount": 469.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2017-07-25T17:36:52.463690+03:00",
    "id": "4983c533470d473aa5769ba399849cb0"
  }
}

Note that there is Location header returned that aids in locating the “fresh” award that is most likely subject for disqualification:

POST /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/3ff474e4f3a843fba101c561e5cffb14/documents?acc_token=e96bd05708744828a13d48aa6e282cb9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 341
Content-Type: application/json
Host: api-sandbox.openprocurement.org

{
  "data": {
    "url": "http://public.docs-sandbox.openprocurement.org/get/6bd74e04745d4eeb99b4806f1dae82c9?KeyID=1a1ebb61&Signature=LAgDr%2B6y5LMCNb6bB7UPlkjL7JhiesqZ5QFPxZCHsPpJX5xpFFyc%2FYBKfYPhiDlHGcR6l9ObYpar4lpbkJ%2BBDw%3D%3D",
    "title": "Cancellation_Reason.pdf",
    "hash": "md5:00000000000000000000000000000000",
    "format": "application/pdf"
  }
}


201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/3ff474e4f3a843fba101c561e5cffb14/documents/6eec6788a5cb494589a9f3cab1661d99

{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "tender_owner",
    "title": "Cancellation_Reason.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/6bd74e04745d4eeb99b4806f1dae82c9?KeyID=1a1ebb61&Signature=qtr%252BRVTvbXo%2F%252BEsVgsfE%2Ff385WPW6pMjiTja4cwoCt2koVF19VA6%2FiSzHzcY5JvG7UmUl04wQa%2FBZSAmUVTcBw%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-07-25T17:36:52.594571+03:00",
    "id": "6eec6788a5cb494589a9f3cab1661d99",
    "dateModified": "2017-07-25T17:36:52.594591+03:00"
  }
}
PATCH /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/3ff474e4f3a843fba101c561e5cffb14?acc_token=e96bd05708744828a13d48aa6e282cb9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 36
Content-Type: application/json
Host: api-sandbox.openprocurement.org

{
  "data": {
    "status": "unsuccessful"
  }
}


200 OK
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/29402437b6c54e97a49bf9179e11fe08

{
  "data": {
    "status": "unsuccessful",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "title": "Cancellation_Reason.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/6bd74e04745d4eeb99b4806f1dae82c9?KeyID=1a1ebb61&Signature=qtr%252BRVTvbXo%2F%252BEsVgsfE%2Ff385WPW6pMjiTja4cwoCt2koVF19VA6%2FiSzHzcY5JvG7UmUl04wQa%2FBZSAmUVTcBw%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-07-25T17:36:52.594571+03:00",
        "id": "6eec6788a5cb494589a9f3cab1661d99",
        "dateModified": "2017-07-25T17:36:52.594591+03:00"
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-07-25T17:36:52.457048+03:00",
      "endDate": "2017-07-27T17:36:52.718103+03:00"
    },
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "bid_id": "39481e7f97894915832b3b882afdade4",
    "value": {
      "currency": "UAH",
      "amount": 469.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2017-07-25T17:36:52.726245+03:00",
    "id": "3ff474e4f3a843fba101c561e5cffb14"
  }
}

In the case when there is another Bid for qualification, there will be Location header in the response pointing to its Award.

Influence of Complaint Satisfaction

If decision of the procuring entity is unfair any bidder can file complaint and after proper review the whole awarding process can start from the award in question.

Disqualification decision of procuring entity’s qualification committee can be cancelled in the following cases:

  • claim for this disqualification has been submitted (claim status is claim);
  • claim has been answered (claim status is answered);
  • complaint is pending review (complaint status is pending);
  • complaint has been satisfied by the Complaint Review Body (complaint status is resolved).

After the disqualification decision cancellation it receives cancelled status. New pending award is generated and procuring entity is obliged to qualify it again (taking into consideration recommendations from the report of Complaint Review Body if there is one).

GET /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org


200 OK
Content-Type: application/json; charset=UTF-8

{
  "data": [
    {
      "status": "unsuccessful",
      "documents": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "author": "tender_owner",
          "title": "Unsuccessful_Reason.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/800261cb6def4a11bf3791e830befb3c?KeyID=1a1ebb61&Signature=PbVLwL3AMNy7I%2FnhEANHhLSNoOKKay2pvYsHnbBXD%252BBZM60nIqXTk3UDDN6TsctsZ2k0TtSk0XEwlEoFdbKRAQ%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-07-25T17:36:52.098854+03:00",
          "id": "0ac19aedb5d2407598d91aa963d6a027",
          "dateModified": "2017-07-25T17:36:52.098871+03:00"
        }
      ],
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:51.988435+03:00",
        "endDate": "2017-07-27T17:36:52.185900+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "bid_id": "ee786a6e8a7d470196a751273f064e78",
      "value": {
        "currency": "UAH",
        "amount": 450.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:52.191749+03:00",
      "complaints": [
        {
          "status": "resolved",
          "documents": [
            {
              "hash": "md5:00000000000000000000000000000000",
              "author": "complaint_owner",
              "title": "Complaint_Attachement.pdf",
              "url": "http://public.docs-sandbox.openprocurement.org/get/8f6064cff50e40e98b6a0d3a5bf285f3?KeyID=1a1ebb61&Signature=GUupJVcUEjCGb8j6wOYSyvTs7P6XMvDfE%2FK1BBt82UFMqRa8qpjkQ2qziQjf8yqB5eZ5KRggHUyaUA0qhE67AQ%253D%253D",
              "format": "application/pdf",
              "documentOf": "tender",
              "datePublished": "2017-07-25T17:36:53.000914+03:00",
              "id": "96ad4bc79c704f6eb094b83bf2ca817a",
              "dateModified": "2017-07-25T17:36:53.000946+03:00"
            }
          ],
          "description": "complaint description",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "resolutionType": "resolved",
          "type": "claim",
          "title": "complaint title",
          "satisfied": true,
          "tendererAction": "Виправлено неконкурентні умови",
          "dateAnswered": "2017-07-25T17:36:53.465653+03:00",
          "tendererActionDate": "2017-07-25T17:36:53.465668+03:00",
          "dateSubmitted": "2017-07-25T17:36:53.127004+03:00",
          "complaintID": "UA-2017-07-25-000001.5",
          "date": "2017-07-25T17:36:53.605801+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "fc1eef6ef50d4656b981aae8bb181467"
        },
        {
          "status": "resolved",
          "description": "complaint description",
          "title": "complaint title",
          "resolutionType": "resolved",
          "type": "claim",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "satisfied": false,
          "dateAnswered": "2017-07-25T17:36:53.730015+03:00",
          "dateSubmitted": "2017-07-25T17:36:53.245113+03:00",
          "complaintID": "UA-2017-07-25-000001.6",
          "date": "2017-07-25T17:36:53.871088+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "d9f8daa198f44112b4ec51a00598d823"
        },
        {
          "status": "resolved",
          "description": "complaint description",
          "title": "complaint title",
          "resolutionType": "resolved",
          "type": "claim",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "satisfied": false,
          "dateAnswered": "2017-07-25T17:36:54.133250+03:00",
          "dateSubmitted": "2017-07-25T17:36:53.993166+03:00",
          "complaintID": "UA-2017-07-25-000001.7",
          "date": "2017-07-25T17:36:54.279826+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "52fd0b0be7a84115824d49a5f5b915a2"
        },
        {
          "status": "resolved",
          "description": "complaint description",
          "title": "complaint title",
          "resolutionType": "resolved",
          "type": "claim",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "satisfied": false,
          "dateAnswered": "2017-07-25T17:36:54.570422+03:00",
          "dateSubmitted": "2017-07-25T17:36:54.418211+03:00",
          "complaintID": "UA-2017-07-25-000001.8",
          "date": "2017-07-25T17:36:54.762393+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "2d1216c07c35480ea9dbc1d5e537c84b"
        }
      ],
      "id": "aec061c3b3234a9981a292ae161d2ece"
    },
    {
      "status": "cancelled",
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:52.186270+03:00",
        "endDate": "2017-07-25T17:36:52.456668+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "name": "Державне управління справами",
            "telephone": "0440000000"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00037256",
            "uri": "http://www.dus.gov.ua/"
          },
          "name": "Державне управління справами",
          "address": {
            "postalCode": "01220",
            "countryName": "Україна",
            "streetAddress": "вул. Банкова, 11, корпус 1",
            "region": "м. Київ",
            "locality": "м. Київ"
          }
        }
      ],
      "bid_id": "39481e7f97894915832b3b882afdade4",
      "value": {
        "currency": "UAH",
        "amount": 469.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:52.463690+03:00",
      "id": "4983c533470d473aa5769ba399849cb0"
    },
    {
      "status": "unsuccessful",
      "documents": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "author": "tender_owner",
          "title": "Cancellation_Reason.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/6bd74e04745d4eeb99b4806f1dae82c9?KeyID=1a1ebb61&Signature=qtr%252BRVTvbXo%2F%252BEsVgsfE%2Ff385WPW6pMjiTja4cwoCt2koVF19VA6%2FiSzHzcY5JvG7UmUl04wQa%2FBZSAmUVTcBw%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-07-25T17:36:52.594571+03:00",
          "id": "6eec6788a5cb494589a9f3cab1661d99",
          "dateModified": "2017-07-25T17:36:52.594591+03:00"
        }
      ],
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:52.457048+03:00",
        "endDate": "2017-07-27T17:36:52.718103+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "name": "Державне управління справами",
            "telephone": "0440000000"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00037256",
            "uri": "http://www.dus.gov.ua/"
          },
          "name": "Державне управління справами",
          "address": {
            "postalCode": "01220",
            "countryName": "Україна",
            "streetAddress": "вул. Банкова, 11, корпус 1",
            "region": "м. Київ",
            "locality": "м. Київ"
          }
        }
      ],
      "bid_id": "39481e7f97894915832b3b882afdade4",
      "value": {
        "currency": "UAH",
        "amount": 469.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:52.726245+03:00",
      "id": "3ff474e4f3a843fba101c561e5cffb14"
    },
    {
      "status": "pending",
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:52.718479+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "bid_id": "784c395f01c84791abb1f43f6360f9b0",
      "value": {
        "currency": "UAH",
        "amount": 475.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:52.718469+03:00",
      "id": "29402437b6c54e97a49bf9179e11fe08"
    }
  ]
}
PATCH /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/aec061c3b3234a9981a292ae161d2ece?acc_token=e96bd05708744828a13d48aa6e282cb9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 33
Content-Type: application/json
Host: api-sandbox.openprocurement.org

{
  "data": {
    "status": "cancelled"
  }
}


200 OK
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards/4bf169f2d26d4e0698cf83c1d8f47c8b

{
  "data": {
    "status": "cancelled",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "title": "Unsuccessful_Reason.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/800261cb6def4a11bf3791e830befb3c?KeyID=1a1ebb61&Signature=PbVLwL3AMNy7I%2FnhEANHhLSNoOKKay2pvYsHnbBXD%252BBZM60nIqXTk3UDDN6TsctsZ2k0TtSk0XEwlEoFdbKRAQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-07-25T17:36:52.098854+03:00",
        "id": "0ac19aedb5d2407598d91aa963d6a027",
        "dateModified": "2017-07-25T17:36:52.098871+03:00"
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-07-25T17:36:51.988435+03:00",
      "endDate": "2017-07-25T17:36:55.073733+03:00"
    },
    "suppliers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "bid_id": "ee786a6e8a7d470196a751273f064e78",
    "value": {
      "currency": "UAH",
      "amount": 450.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2017-07-25T17:36:55.083321+03:00",
    "complaints": [
      {
        "status": "resolved",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "author": "complaint_owner",
            "title": "Complaint_Attachement.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/8f6064cff50e40e98b6a0d3a5bf285f3?KeyID=1a1ebb61&Signature=GUupJVcUEjCGb8j6wOYSyvTs7P6XMvDfE%2FK1BBt82UFMqRa8qpjkQ2qziQjf8yqB5eZ5KRggHUyaUA0qhE67AQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-07-25T17:36:53.000914+03:00",
            "id": "96ad4bc79c704f6eb094b83bf2ca817a",
            "dateModified": "2017-07-25T17:36:53.000946+03:00"
          }
        ],
        "description": "complaint description",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "resolutionType": "resolved",
        "type": "claim",
        "title": "complaint title",
        "satisfied": true,
        "tendererAction": "Виправлено неконкурентні умови",
        "dateAnswered": "2017-07-25T17:36:53.465653+03:00",
        "tendererActionDate": "2017-07-25T17:36:53.465668+03:00",
        "dateSubmitted": "2017-07-25T17:36:53.127004+03:00",
        "complaintID": "UA-2017-07-25-000001.5",
        "date": "2017-07-25T17:36:53.605801+03:00",
        "resolution": "Виправлено неконкурентні умови",
        "id": "fc1eef6ef50d4656b981aae8bb181467"
      },
      {
        "status": "resolved",
        "description": "complaint description",
        "title": "complaint title",
        "resolutionType": "resolved",
        "type": "claim",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "satisfied": false,
        "dateAnswered": "2017-07-25T17:36:53.730015+03:00",
        "dateSubmitted": "2017-07-25T17:36:53.245113+03:00",
        "complaintID": "UA-2017-07-25-000001.6",
        "date": "2017-07-25T17:36:53.871088+03:00",
        "resolution": "Виправлено неконкурентні умови",
        "id": "d9f8daa198f44112b4ec51a00598d823"
      },
      {
        "status": "resolved",
        "description": "complaint description",
        "title": "complaint title",
        "resolutionType": "resolved",
        "type": "claim",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "satisfied": false,
        "dateAnswered": "2017-07-25T17:36:54.133250+03:00",
        "dateSubmitted": "2017-07-25T17:36:53.993166+03:00",
        "complaintID": "UA-2017-07-25-000001.7",
        "date": "2017-07-25T17:36:54.279826+03:00",
        "resolution": "Виправлено неконкурентні умови",
        "id": "52fd0b0be7a84115824d49a5f5b915a2"
      },
      {
        "status": "resolved",
        "description": "complaint description",
        "title": "complaint title",
        "resolutionType": "resolved",
        "type": "claim",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "satisfied": false,
        "dateAnswered": "2017-07-25T17:36:54.570422+03:00",
        "dateSubmitted": "2017-07-25T17:36:54.418211+03:00",
        "complaintID": "UA-2017-07-25-000001.8",
        "date": "2017-07-25T17:36:54.762393+03:00",
        "resolution": "Виправлено неконкурентні умови",
        "id": "2d1216c07c35480ea9dbc1d5e537c84b"
      }
    ],
    "id": "aec061c3b3234a9981a292ae161d2ece"
  }
}
GET /api/2.3/tenders/6e33b56945624315afece8e75af7193c/awards HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org


200 OK
Content-Type: application/json; charset=UTF-8

{
  "data": [
    {
      "status": "cancelled",
      "documents": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "author": "tender_owner",
          "title": "Unsuccessful_Reason.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/800261cb6def4a11bf3791e830befb3c?KeyID=1a1ebb61&Signature=PbVLwL3AMNy7I%2FnhEANHhLSNoOKKay2pvYsHnbBXD%252BBZM60nIqXTk3UDDN6TsctsZ2k0TtSk0XEwlEoFdbKRAQ%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-07-25T17:36:52.098854+03:00",
          "id": "0ac19aedb5d2407598d91aa963d6a027",
          "dateModified": "2017-07-25T17:36:52.098871+03:00"
        }
      ],
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:51.988435+03:00",
        "endDate": "2017-07-25T17:36:55.073733+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "bid_id": "ee786a6e8a7d470196a751273f064e78",
      "value": {
        "currency": "UAH",
        "amount": 450.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:55.083321+03:00",
      "complaints": [
        {
          "status": "resolved",
          "documents": [
            {
              "hash": "md5:00000000000000000000000000000000",
              "author": "complaint_owner",
              "title": "Complaint_Attachement.pdf",
              "url": "http://public.docs-sandbox.openprocurement.org/get/8f6064cff50e40e98b6a0d3a5bf285f3?KeyID=1a1ebb61&Signature=GUupJVcUEjCGb8j6wOYSyvTs7P6XMvDfE%2FK1BBt82UFMqRa8qpjkQ2qziQjf8yqB5eZ5KRggHUyaUA0qhE67AQ%253D%253D",
              "format": "application/pdf",
              "documentOf": "tender",
              "datePublished": "2017-07-25T17:36:53.000914+03:00",
              "id": "96ad4bc79c704f6eb094b83bf2ca817a",
              "dateModified": "2017-07-25T17:36:53.000946+03:00"
            }
          ],
          "description": "complaint description",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "resolutionType": "resolved",
          "type": "claim",
          "title": "complaint title",
          "satisfied": true,
          "tendererAction": "Виправлено неконкурентні умови",
          "dateAnswered": "2017-07-25T17:36:53.465653+03:00",
          "tendererActionDate": "2017-07-25T17:36:53.465668+03:00",
          "dateSubmitted": "2017-07-25T17:36:53.127004+03:00",
          "complaintID": "UA-2017-07-25-000001.5",
          "date": "2017-07-25T17:36:53.605801+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "fc1eef6ef50d4656b981aae8bb181467"
        },
        {
          "status": "resolved",
          "description": "complaint description",
          "title": "complaint title",
          "resolutionType": "resolved",
          "type": "claim",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "satisfied": false,
          "dateAnswered": "2017-07-25T17:36:53.730015+03:00",
          "dateSubmitted": "2017-07-25T17:36:53.245113+03:00",
          "complaintID": "UA-2017-07-25-000001.6",
          "date": "2017-07-25T17:36:53.871088+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "d9f8daa198f44112b4ec51a00598d823"
        },
        {
          "status": "resolved",
          "description": "complaint description",
          "title": "complaint title",
          "resolutionType": "resolved",
          "type": "claim",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "satisfied": false,
          "dateAnswered": "2017-07-25T17:36:54.133250+03:00",
          "dateSubmitted": "2017-07-25T17:36:53.993166+03:00",
          "complaintID": "UA-2017-07-25-000001.7",
          "date": "2017-07-25T17:36:54.279826+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "52fd0b0be7a84115824d49a5f5b915a2"
        },
        {
          "status": "resolved",
          "description": "complaint description",
          "title": "complaint title",
          "resolutionType": "resolved",
          "type": "claim",
          "author": {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          },
          "satisfied": false,
          "dateAnswered": "2017-07-25T17:36:54.570422+03:00",
          "dateSubmitted": "2017-07-25T17:36:54.418211+03:00",
          "complaintID": "UA-2017-07-25-000001.8",
          "date": "2017-07-25T17:36:54.762393+03:00",
          "resolution": "Виправлено неконкурентні умови",
          "id": "2d1216c07c35480ea9dbc1d5e537c84b"
        }
      ],
      "id": "aec061c3b3234a9981a292ae161d2ece"
    },
    {
      "status": "cancelled",
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:52.186270+03:00",
        "endDate": "2017-07-25T17:36:55.073733+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "name": "Державне управління справами",
            "telephone": "0440000000"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00037256",
            "uri": "http://www.dus.gov.ua/"
          },
          "name": "Державне управління справами",
          "address": {
            "postalCode": "01220",
            "countryName": "Україна",
            "streetAddress": "вул. Банкова, 11, корпус 1",
            "region": "м. Київ",
            "locality": "м. Київ"
          }
        }
      ],
      "bid_id": "39481e7f97894915832b3b882afdade4",
      "value": {
        "currency": "UAH",
        "amount": 469.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:52.463690+03:00",
      "id": "4983c533470d473aa5769ba399849cb0"
    },
    {
      "status": "cancelled",
      "documents": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "author": "tender_owner",
          "title": "Cancellation_Reason.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/6bd74e04745d4eeb99b4806f1dae82c9?KeyID=1a1ebb61&Signature=qtr%252BRVTvbXo%2F%252BEsVgsfE%2Ff385WPW6pMjiTja4cwoCt2koVF19VA6%2FiSzHzcY5JvG7UmUl04wQa%2FBZSAmUVTcBw%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-07-25T17:36:52.594571+03:00",
          "id": "6eec6788a5cb494589a9f3cab1661d99",
          "dateModified": "2017-07-25T17:36:52.594591+03:00"
        }
      ],
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:52.457048+03:00",
        "endDate": "2017-07-25T17:36:55.073733+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "name": "Державне управління справами",
            "telephone": "0440000000"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00037256",
            "uri": "http://www.dus.gov.ua/"
          },
          "name": "Державне управління справами",
          "address": {
            "postalCode": "01220",
            "countryName": "Україна",
            "streetAddress": "вул. Банкова, 11, корпус 1",
            "region": "м. Київ",
            "locality": "м. Київ"
          }
        }
      ],
      "bid_id": "39481e7f97894915832b3b882afdade4",
      "value": {
        "currency": "UAH",
        "amount": 469.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:55.083321+03:00",
      "id": "3ff474e4f3a843fba101c561e5cffb14"
    },
    {
      "status": "cancelled",
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:52.718479+03:00",
        "endDate": "2017-07-25T17:36:55.073733+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "bid_id": "784c395f01c84791abb1f43f6360f9b0",
      "value": {
        "currency": "UAH",
        "amount": 475.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:55.083321+03:00",
      "id": "29402437b6c54e97a49bf9179e11fe08"
    },
    {
      "status": "pending",
      "complaintPeriod": {
        "startDate": "2017-07-25T17:36:55.074225+03:00"
      },
      "suppliers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "bid_id": "ee786a6e8a7d470196a751273f064e78",
      "value": {
        "currency": "UAH",
        "amount": 450.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2017-07-25T17:36:55.074214+03:00",
      "id": "4bf169f2d26d4e0698cf83c1d8f47c8b"
    }
  ]
}