Welcome to openprocurement.tender.openua’s documentation!

Please report any problems or suggestions for improvement either via the mailing list or the issue tracker.

Contents:

Overview

The Open Procurement Open UA procedure is plugin to Open Procurement API software. It requires 0.12 version of openprocurement.api package to work.

REST-ful interface to plugin is in line with core software design principles.

Conventions

This plugin conventions follow the Open Procurement API conventions.

Main responsibilities

Open Procurement Open UA procedure is dedicated to Open Tender procedure for Ukrainian above threshold procurements. The code for that type of procedure is aboveThresholdUA.

Business logic

The approach to Open UA procedure is different from core Open Procurement API procedure (that is used for below threshold procurements) mainly in stage that precedes auction. Differences are in the following aspects:

  1. Tender can be edited through the whole tenderPeriod (while in active.tendering state), but any edit that is close to tenderPeriod.endDate would require extending that period.
  2. There is no dedicated active.enguiries state.
  3. Questions can be asked within enquiryPeriod that is based upon tenderPeriod.
  4. Answers are provided during the whole tenderPeriod.
  5. Bids can be placed during the whole tenderPeriod.
  6. Placed bids are invalidated after any tender condition editing and have to be re-confirmed.

Project status

The project is in active development and has pilot installations.

The source repository for this project is on GitHub: https://github.com/openprocurement/openprocurement.tender.openua

You can leave feedback by raising a new issue on the issue tracker (GitHub registration necessary). For general discussion use Open Procurement General maillist.

API stability

API is highly unstable, and while API endpoints are expected to remain relatively stable the data exchange formats are expected to be changed a lot. The changes in the API are communicated via Open Procurement API maillist.

Change log

0.2

Released: unreleased

New features:

Modifications:

0.1

Released: 2016-01-25

New features:

  • no active.enquiries status
  • Bid invalidation
  • Open Tender UA validation rules

Next steps

You might find it helpful to look at the Tutorial, or the API Reference.

Tendering

Open UA procedure has active.tendering status and can be represented with the following diagram:

_images/active-tendering.png

Constraints

  • tenderPeriod cannot be shorter than 15 days.
  • enquiryPeriod always ends 3 days before tenderPeriod ends.
  • If tender conditions are modified with less than 7 days left to tenderPeriod.endDate, it has to be extended to meet the constraint.

Claims and Complaits

  • Claims can be submitted only if there are more than 10 days left in tenderPeriod.
  • Complaints can be submitted only if there are 4 or more days left in tenderPeriod.

Tutorial

Exploring basic rules

Let’s try exploring the /tenders endpoint:

GET /api/2.3/tenders?opt_pretty=1 HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "next_page": {
    "path": "/api/2.3/tenders?offset=",
    "uri": "http://api-sandbox.openprocurement.org/api/2.3/tenders?offset=",
    "offset": ""
  },
  "data": []
}

Just invoking it reveals empty set.

Now let’s attempt creating some tender:

POST /api/2.3/tenders?opt_pretty=1 HTTP/1.0
Content-Length: 4
Content-Type: application/x-www-form-urlencoded
Host: api-sandbox.openprocurement.org

Response: 415 Unsupported Media Type
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "Content-Type header should be one of ['application/json']",
      "location": "header",
      "name": "Content-Type"
    }
  ]
}

Error states that the only accepted Content-Type is application/json.

Let’s satisfy the Content-type requirement:

POST /api/2.3/tenders?opt_pretty=1 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 4
Content-Type: application/json
Host: api-sandbox.openprocurement.org

Response: 422 Unprocessable Entity
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "No JSON object could be decoded",
      "location": "body",
      "name": "data"
    }
  ]
}

Error states that no data has been found in JSON body.

Creating tender

Let’s provide the data attribute in the submitted body :

POST /api/2.3/tenders?opt_pretty=1 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 2508
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "tenderPeriod": {
      "endDate": "2017-07-07T15:53:06.068679+03:00"
    },
    "title": "футляри до державних нагород",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35
    },
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "id": "37810000-9",
          "description": "Test"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "countryName": "Україна",
          "postalCode": "79000",
          "region": "м. Київ",
          "streetAddress": "вул. Банкова 1",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "procurementMethodType": "aboveThresholdUA",
    "value": {
      "currency": "UAH",
      "amount": 500
    },
    "procuringEntity": {
      "kind": "special",
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "address": {
        "countryName": "Україна",
        "postalCode": "21027",
        "region": "м. Вінниця",
        "streetAddress": "вул. Стахурського. 22",
        "locality": "м. Вінниця"
      },
      "name": "ЗОСШ #10 м.Вінниці"
    }
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/1b2ee380634a4d6e9c44d26f6b5003e8
{
  "access": {
    "token": "4a6eb88d7be44a3da2fc039348c2a90c"
  },
  "data": {
    "procurementMethod": "open",
    "status": "active.tendering",
    "awardCriteria": "lowestCost",
    "tenderPeriod": {
      "startDate": "2017-06-21T15:53:24.829819+03:00",
      "endDate": "2017-07-07T15:53:06.068679+03:00"
    },
    "title": "футляри до державних нагород",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35.0,
      "valueAddedTaxIncluded": true
    },
    "enquiryPeriod": {
      "startDate": "2017-06-21T15:53:24.829819+03:00",
      "clarificationsUntil": "2017-07-03T15:53:06.068679+03:00",
      "endDate": "2017-06-27T15:53:06.068679+03:00"
    },
    "complaintPeriod": {
      "startDate": "2017-06-21T15:53:24.829819+03:00",
      "endDate": "2017-07-03T00:00:00+03:00"
    },
    "procurementMethodType": "aboveThresholdUA",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "submissionMethod": "electronicAuction",
    "date": "2017-06-21T15:53:24.857904+03:00",
    "next_check": "2017-07-07T15:53:06.068679+03:00",
    "procuringEntity": {
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name": "ЗОСШ #10 м.Вінниці",
      "kind": "special",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-07-08T00:00:00+03:00"
    },
    "owner": "broker",
    "dateModified": "2017-06-21T15:53:24.862584+03:00",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "6722b7b18fcb430880214d27464554df",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "id": "1b2ee380634a4d6e9c44d26f6b5003e8",
    "tenderID": "UA-2017-06-21-000002"
  }
}

Success! Now we can see that new object was created. Response code is 201 and Location response header reports the location of the created object. The body of response reveals the information about the created tender: its internal id (that matches the Location segment), its official tenderID and dateModified datestamp stating the moment in time when tender was last modified. Note that tender is created with active.tendering status.

The peculiarity of the Open UA procedure is that procurementMethodType was changed from belowThreshold to aboveThresholdUA. Also there is no opportunity to set up enquiryPeriod, it will be assigned automatically.

Let’s access the URL of the created object (the Location header of the response):

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "active.tendering",
    "awardCriteria": "lowestCost",
    "tenderPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "endDate": "2017-07-07T15:53:06.068679+03:00"
    },
    "title": "футляри до державних нагород",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35.0,
      "valueAddedTaxIncluded": true
    },
    "enquiryPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "clarificationsUntil": "2017-07-03T15:53:06.068679+03:00",
      "endDate": "2017-06-27T15:53:06.068679+03:00"
    },
    "complaintPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "endDate": "2017-07-03T00:00:00+03:00"
    },
    "procurementMethodType": "aboveThresholdUA",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "submissionMethod": "electronicAuction",
    "date": "2017-06-21T15:53:20.034093+03:00",
    "next_check": "2017-07-07T15:53:06.068679+03:00",
    "procuringEntity": {
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name": "ЗОСШ #10 м.Вінниці",
      "kind": "special",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-07-08T00:00:00+03:00"
    },
    "owner": "broker",
    "dateModified": "2017-06-21T15:53:20.038399+03:00",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "id": "97dd0ca9a0f741a6ad5628c6873d1de9",
    "tenderID": "UA-2017-06-21-000001"
  }
}

We can see the same response we got after creating tender.

Let’s see what listing of tenders reveals us:

GET /api/2.3/tenders?opt_pretty=1 HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "next_page": {
    "path": "/api/2.3/tenders?offset=",
    "uri": "http://api-sandbox.openprocurement.org/api/2.3/tenders?offset=",
    "offset": ""
  },
  "data": []
}

We do see the internal id of a tender (that can be used to construct full URL by prepending http://api-sandbox.openprocurement.org/api/0/tenders/) and its dateModified datestamp.

Modifying tender

Let’s update tender by supplementing it with all other essential properties:

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 75
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "tenderPeriod": {
      "endDate": "2017-07-06T15:53:30.143101+03:00"
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "active.tendering",
    "awardCriteria": "lowestCost",
    "tenderPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "endDate": "2017-07-06T15:53:30.143101+03:00"
    },
    "title": "футляри до державних нагород",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35.0,
      "valueAddedTaxIncluded": true
    },
    "enquiryPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "clarificationsUntil": "2017-06-30T15:53:30.143101+03:00",
      "endDate": "2017-06-26T15:53:30.143101+03:00",
      "invalidationDate": "2017-06-21T15:53:20.206626+03:00"
    },
    "complaintPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "endDate": "2017-07-02T00:00:00+03:00"
    },
    "procurementMethodType": "aboveThresholdUA",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "submissionMethod": "electronicAuction",
    "date": "2017-06-21T15:53:20.034093+03:00",
    "next_check": "2017-07-06T15:53:30.143101+03:00",
    "procuringEntity": {
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name": "ЗОСШ #10 м.Вінниці",
      "kind": "special",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-07-07T00:00:00+03:00"
    },
    "owner": "broker",
    "dateModified": "2017-06-21T15:53:20.209544+03:00",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "id": "97dd0ca9a0f741a6ad5628c6873d1de9",
    "tenderID": "UA-2017-06-21-000001"
  }
}

We see the added properies have merged with existing tender data. Additionally, the dateModified property was updated to reflect the last modification datestamp.

Checking the listing again reflects the new modification date:

GET /api/2.3/tenders?opt_pretty=1 HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "next_page": {
    "path": "/api/2.3/tenders?offset=2017-06-21T15%3A53%3A20.038399%2B03%3A00",
    "uri": "http://api-sandbox.openprocurement.org/api/2.3/tenders?offset=2017-06-21T15%3A53%3A20.038399%2B03%3A00",
    "offset": "2017-06-21T15:53:20.038399+03:00"
  },
  "data": [
    {
      "id": "97dd0ca9a0f741a6ad5628c6873d1de9",
      "dateModified": "2017-06-21T15:53:20.038399+03:00"
    }
  ]
}

Procuring entity can not change tender if there are less than 7 days before tenderPeriod ends. Changes will not be accepted by API.

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 38
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "value": {
      "amount": 501.0
    }
  }
}

Response: 403 Forbidden
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "tenderPeriod should be extended by 7 days",
      "location": "body",
      "name": "data"
    }
  ]
}

That is why tenderPeriod has to be extended by 7 days.

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 120
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "tenderPeriod": {
      "endDate": "2017-06-29T15:53:21.108184+03:00"
    },
    "value": {
      "currency": "UAH",
      "amount": 501
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-06-08T15:53:20.921360+03:00",
      "endDate": "2017-06-25T00:00:00+03:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-06-08T15:53:20.921360+03:00",
      "clarificationsUntil": "2017-06-22T15:53:21.108184+03:00",
      "endDate": "2017-06-19T15:53:21.108184+03:00",
      "invalidationDate": "2017-06-21T15:53:21.220290+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-06-29T15:53:21.108184+03:00",
    "procuringEntity": {
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name": "ЗОСШ #10 м.Вінниці",
      "kind": "special",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "dateAnswered": "2017-06-21T15:53:20.818993+03:00",
        "title": "Калорійність",
        "date": "2017-06-21T15:53:20.738523+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "id": "d490583bca4b41d68e36b2b53a5f4caf",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "id": "97dd0ca9a0f741a6ad5628c6873d1de9",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "author": "tender_owner",
        "title": "Notice.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?download=6f58464f57364eff809716a21346d568",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:20.439891+03:00",
        "id": "834ae499148f4eb7996d8db7dcd8fd14",
        "dateModified": "2017-06-21T15:53:20.439925+03:00"
      },
      {
        "author": "tender_owner",
        "title": "AwardCriteria.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=1b5689bd04d94e68813052edcc6e9eaa",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:20.531460+03:00",
        "id": "8eb8c964d53342919cf982b74ce28eee",
        "dateModified": "2017-06-21T15:53:20.531494+03:00"
      },
      {
        "author": "tender_owner",
        "title": "AwardCriteria-2.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=70093c4ab022423eb1acf14a6a34ca4b",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:20.531460+03:00",
        "id": "8eb8c964d53342919cf982b74ce28eee",
        "dateModified": "2017-06-21T15:53:20.635230+03:00"
      }
    ],
    "title": "футляри до державних нагород",
    "tenderID": "UA-2017-06-21-000001",
    "dateModified": "2017-06-21T15:53:21.224504+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-06-08T15:53:20.921360+03:00",
      "endDate": "2017-06-29T15:53:21.108184+03:00"
    },
    "auctionPeriod": {
      "startDate": "2017-06-23T15:53:20.921360+03:00",
      "shouldStartAfter": "2017-06-30T00:00:00+03:00"
    },
    "procurementMethodType": "aboveThresholdUA",
    "date": "2017-06-21T15:53:20.034093+03:00",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35.0,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "value": {
      "currency": "UAH",
      "amount": 501.0,
      "valueAddedTaxIncluded": true
    },
    "awardCriteria": "lowestCost"
  }
}

Procuring entity can set bid guarantee:

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 57
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "guarantee": {
      "currency": "USD",
      "amount": 8
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "active.tendering",
    "auctionPeriod": {
      "shouldStartAfter": "2017-07-07T00:00:00+03:00"
    },
    "awardCriteria": "lowestCost",
    "tenderPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "endDate": "2017-07-06T15:53:30.143101+03:00"
    },
    "title": "футляри до державних нагород",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35.0,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "endDate": "2017-07-02T00:00:00+03:00"
    },
    "procurementMethodType": "aboveThresholdUA",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "submissionMethod": "electronicAuction",
    "date": "2017-06-21T15:53:20.034093+03:00",
    "next_check": "2017-07-06T15:53:30.143101+03:00",
    "procuringEntity": {
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name": "ЗОСШ #10 м.Вінниці",
      "kind": "special",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "enquiryPeriod": {
      "startDate": "2017-06-21T15:53:20.003863+03:00",
      "clarificationsUntil": "2017-06-30T15:53:30.143101+03:00",
      "endDate": "2017-06-26T15:53:30.143101+03:00",
      "invalidationDate": "2017-06-21T15:53:20.370180+03:00"
    },
    "owner": "broker",
    "dateModified": "2017-06-21T15:53:20.373086+03:00",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "id": "97dd0ca9a0f741a6ad5628c6873d1de9",
    "tenderID": "UA-2017-06-21-000001"
  }
}

Uploading documentation

Procuring entity can upload PDF files into the created tender. Uploading should follow the Documents Uploading rules.

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 186
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy219192292822$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14
{
  "data": {
    "author": "tender_owner",
    "title": "Notice.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?download=6f58464f57364eff809716a21346d568",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:20.439891+03:00",
    "id": "834ae499148f4eb7996d8db7dcd8fd14",
    "dateModified": "2017-06-21T15:53:20.439925+03:00"
  }
}

201 Created response code and Location header confirm document creation. We can additionally query the documents collection API endpoint to confirm the action:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "author": "tender_owner",
    "title": "Notice.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?download=6f58464f57364eff809716a21346d568",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:20.439891+03:00",
    "previousVersions": [],
    "id": "834ae499148f4eb7996d8db7dcd8fd14",
    "dateModified": "2017-06-21T15:53:20.439925+03:00"
  }
}

The single array element describes the uploaded document. We can upload more documents:

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 193
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy744612241576$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee
{
  "data": {
    "author": "tender_owner",
    "title": "AwardCriteria.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=1b5689bd04d94e68813052edcc6e9eaa",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:20.531460+03:00",
    "id": "8eb8c964d53342919cf982b74ce28eee",
    "dateModified": "2017-06-21T15:53:20.531494+03:00"
  }
}

And again we can confirm that there are two documents uploaded.

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "author": "tender_owner",
      "title": "Notice.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?download=6f58464f57364eff809716a21346d568",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-06-21T15:53:20.439891+03:00",
      "id": "834ae499148f4eb7996d8db7dcd8fd14",
      "dateModified": "2017-06-21T15:53:20.439925+03:00"
    },
    {
      "author": "tender_owner",
      "title": "AwardCriteria.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=1b5689bd04d94e68813052edcc6e9eaa",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-06-21T15:53:20.531460+03:00",
      "id": "8eb8c964d53342919cf982b74ce28eee",
      "dateModified": "2017-06-21T15:53:20.531494+03:00"
    }
  ]
}

In case we made an error, we can reupload the document over the older version:

PUT /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 196
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy335652002875$
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "author": "tender_owner",
    "title": "AwardCriteria-2.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=70093c4ab022423eb1acf14a6a34ca4b",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:20.531460+03:00",
    "id": "8eb8c964d53342919cf982b74ce28eee",
    "dateModified": "2017-06-21T15:53:20.635230+03:00"
  }
}

And we can see that it is overriding the original version:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "author": "tender_owner",
      "title": "Notice.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?download=6f58464f57364eff809716a21346d568",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-06-21T15:53:20.439891+03:00",
      "id": "834ae499148f4eb7996d8db7dcd8fd14",
      "dateModified": "2017-06-21T15:53:20.439925+03:00"
    },
    {
      "author": "tender_owner",
      "title": "AwardCriteria-2.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=70093c4ab022423eb1acf14a6a34ca4b",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-06-21T15:53:20.531460+03:00",
      "id": "8eb8c964d53342919cf982b74ce28eee",
      "dateModified": "2017-06-21T15:53:20.635230+03:00"
    }
  ]
}

Enquiries

When tender has active.tendering status and Tender.enqueryPeriod.endDate hasn’t come yet, interested parties can ask questions:

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/questions HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1506
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "00137226",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "title": "Калорійність"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/questions/d490583bca4b41d68e36b2b53a5f4caf
{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "00137226",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Калорійність",
    "date": "2017-06-21T15:53:20.738523+03:00",
    "id": "d490583bca4b41d68e36b2b53a5f4caf",
    "questionOf": "tender"
  }
}

Procuring entity can answer them:

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/questions/d490583bca4b41d68e36b2b53a5f4caf?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 162
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\""
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "dateAnswered": "2017-06-21T15:53:20.818993+03:00",
    "title": "Калорійність",
    "date": "2017-06-21T15:53:20.738523+03:00",
    "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
    "id": "d490583bca4b41d68e36b2b53a5f4caf",
    "questionOf": "tender"
  }
}

One can retrieve either questions list:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/questions HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "description": "Просимо додати таблицю потрібної калорійності харчування",
      "dateAnswered": "2017-06-21T15:53:20.818993+03:00",
      "title": "Калорійність",
      "date": "2017-06-21T15:53:20.738523+03:00",
      "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
      "id": "d490583bca4b41d68e36b2b53a5f4caf",
      "questionOf": "tender"
    }
  ]
}

or individual answer:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/questions/d490583bca4b41d68e36b2b53a5f4caf HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "dateAnswered": "2017-06-21T15:53:20.818993+03:00",
    "title": "Калорійність",
    "date": "2017-06-21T15:53:20.738523+03:00",
    "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
    "id": "d490583bca4b41d68e36b2b53a5f4caf",
    "questionOf": "tender"
  }
}

Enquiries can be made only during Tender.enqueryPeriod

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/questions HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1506
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "00137226",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "title": "Калорійність"
  }
}

Response: 403 Forbidden
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "Can add question only in enquiryPeriod",
      "location": "body",
      "name": "data"
    }
  ]
}

Registering bid

Tender status active.tendering allows registration of bids.

Bidder can register a bid with draft status:

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1055
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "selfEligible": true,
    "tenderers": [
      {
        "contactPoint": {
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк",
          "email": "soleksuk@gmail.com"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "countryName": "Україна",
          "postalCode": "21100",
          "region": "м. Вінниця",
          "streetAddress": "вул. Островського, 33",
          "locality": "м. Вінниця"
        }
      }
    ],
    "selfQualified": true,
    "value": {
      "amount": 500
    },
    "subcontractingDetails": "ДКП «книга», Україна, м. Львів, вул. Островського, 33"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7
{
  "access": {
    "token": "dc58fc5e3b344a5db77a71f006efff76"
  },
  "data": {
    "status": "active",
    "selfEligible": true,
    "id": "f489e65e56b646f4a5948df764a5a2f7",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "subcontractingDetails": "ДКП «книга», Україна, м. Львів, вул. Островського, 33",
    "tenderers": [
      {
        "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": "м. Вінниця"
        }
      }
    ],
    "date": "2017-06-21T15:53:21.328392+03:00",
    "selfQualified": true
  }
}

And activate a bid:

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7?acc_token=dc58fc5e3b344a5db77a71f006efff76 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 30
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active"
  }
}

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

Proposal Uploading

Then bidder should upload proposal document(s):

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents?acc_token=dc58fc5e3b344a5db77a71f006efff76 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 186
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy63308102304$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents/85a461ee170a40d2bc84045c973b57b6
{
  "data": {
    "title": "Proposal.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents/85a461ee170a40d2bc84045c973b57b6?download=be65bb83b7124b4e8af2e2d230eb0f53",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:21.485925+03:00",
    "id": "85a461ee170a40d2bc84045c973b57b6",
    "dateModified": "2017-06-21T15:53:21.485962+03:00"
  }
}

It is possible to check the uploaded documents:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents?acc_token=dc58fc5e3b344a5db77a71f006efff76 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "title": "Proposal.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents/85a461ee170a40d2bc84045c973b57b6?download=be65bb83b7124b4e8af2e2d230eb0f53",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-06-21T15:53:21.485925+03:00",
      "id": "85a461ee170a40d2bc84045c973b57b6",
      "dateModified": "2017-06-21T15:53:21.485962+03:00"
    }
  ]
}

Bid invalidation

If tender is modified, status of all bid proposals will be changed to invalid. Bid proposal will look the following way after tender has been modified:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7?acc_token=dc58fc5e3b344a5db77a71f006efff76 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "invalid",
    "id": "f489e65e56b646f4a5948df764a5a2f7"
  }
}

Bid confirmation

Bidder should confirm bid proposal:

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7?acc_token=dc58fc5e3b344a5db77a71f006efff76 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 30
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "documents": [
      {
        "title": "Proposal.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents/85a461ee170a40d2bc84045c973b57b6?download=be65bb83b7124b4e8af2e2d230eb0f53",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:21.485925+03:00",
        "id": "85a461ee170a40d2bc84045c973b57b6",
        "dateModified": "2017-06-21T15:53:21.485962+03:00"
      }
    ],
    "selfEligible": true,
    "id": "f489e65e56b646f4a5948df764a5a2f7",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "subcontractingDetails": "ДКП «книга», Україна, м. Львів, вул. Островського, 33",
    "tenderers": [
      {
        "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": "м. Вінниця"
        }
      }
    ],
    "date": "2017-06-21T15:53:21.328392+03:00",
    "selfQualified": true
  }
}

Open UA procedure demands at least two bidders, so there should be at least two bid proposals registered to move to auction stage:

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 749
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "selfEligible": true,
    "selfQualified": true,
    "value": {
      "amount": 499
    },
    "tenderers": [
      {
        "contactPoint": {
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк",
          "email": "aagt@gmail.com"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "countryName": "Україна",
          "postalCode": "79013",
          "region": "м. Львів",
          "streetAddress": "вул. Островського, 34",
          "locality": "м. Львів"
        }
      }
    ]
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/52419358b91442179b33c01e2a6f908d
{
  "access": {
    "token": "7bbaca0d8ae649a28c0608a9f4d8e41a"
  },
  "data": {
    "status": "active",
    "selfEligible": true,
    "value": {
      "currency": "UAH",
      "amount": 499.0,
      "valueAddedTaxIncluded": true
    },
    "selfQualified": true,
    "tenderers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "date": "2017-06-21T15:53:21.963775+03:00",
    "id": "52419358b91442179b33c01e2a6f908d"
  }
}

Auction

After auction is scheduled anybody can visit it to watch. The auction can be reached at Tender.auctionUrl:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-06-05T15:53:05.318541+03:00",
      "endDate": "2017-06-17T00:00:00+03:00"
    },
    "auctionUrl": "http://auction-sandbox.openprocurement.org/tenders/97dd0ca9a0f741a6ad5628c6873d1de9",
    "enquiryPeriod": {
      "startDate": "2017-06-05T15:53:05.318541+03:00",
      "clarificationsUntil": "2017-06-15T00:00:00+03:00",
      "endDate": "2017-06-11T15:53:05.318541+03:00",
      "invalidationDate": "2017-06-21T15:53:21.710428+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-06-21T16:29:05.318541+03:00",
    "procuringEntity": {
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name": "Куца Світлана Валентинівна",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name": "ЗОСШ #10 м.Вінниці",
      "kind": "special",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "dateAnswered": "2017-06-21T15:53:20.818993+03:00",
        "title": "Калорійність",
        "date": "2017-06-21T15:53:20.738523+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "id": "d490583bca4b41d68e36b2b53a5f4caf",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "id": "97dd0ca9a0f741a6ad5628c6873d1de9",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "author": "tender_owner",
        "title": "Notice.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/834ae499148f4eb7996d8db7dcd8fd14?download=6f58464f57364eff809716a21346d568",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:20.439891+03:00",
        "id": "834ae499148f4eb7996d8db7dcd8fd14",
        "dateModified": "2017-06-21T15:53:20.439925+03:00"
      },
      {
        "author": "tender_owner",
        "title": "AwardCriteria.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=1b5689bd04d94e68813052edcc6e9eaa",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:20.531460+03:00",
        "id": "8eb8c964d53342919cf982b74ce28eee",
        "dateModified": "2017-06-21T15:53:20.531494+03:00"
      },
      {
        "author": "tender_owner",
        "title": "AwardCriteria-2.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/documents/8eb8c964d53342919cf982b74ce28eee?download=70093c4ab022423eb1acf14a6a34ca4b",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:20.531460+03:00",
        "id": "8eb8c964d53342919cf982b74ce28eee",
        "dateModified": "2017-06-21T15:53:20.635230+03:00"
      }
    ],
    "title": "футляри до державних нагород",
    "tenderID": "UA-2017-06-21-000001",
    "dateModified": "2017-06-21T15:53:22.246710+03:00",
    "status": "active.auction",
    "tenderPeriod": {
      "startDate": "2017-06-05T15:53:05.318541+03:00",
      "endDate": "2017-06-21T15:53:05.318541+03:00"
    },
    "auctionPeriod": {
      "startDate": "2017-06-21T15:53:05.318541+03:00",
      "shouldStartAfter": "2017-06-22T00:00:00+03:00"
    },
    "procurementMethodType": "aboveThresholdUA",
    "date": "2017-06-21T15:53:20.034093+03:00",
    "minimalStep": {
      "currency": "UAH",
      "amount": 35.0,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "value": {
      "currency": "UAH",
      "amount": 501.0,
      "valueAddedTaxIncluded": true
    },
    "awardCriteria": "lowestCost"
  }
}

Bidders can find out their participation URLs via their bids:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7?acc_token=dc58fc5e3b344a5db77a71f006efff76 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "documents": [
      {
        "title": "Proposal.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/f489e65e56b646f4a5948df764a5a2f7/documents/85a461ee170a40d2bc84045c973b57b6?download=be65bb83b7124b4e8af2e2d230eb0f53",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:21.485925+03:00",
        "id": "85a461ee170a40d2bc84045c973b57b6",
        "dateModified": "2017-06-21T15:53:21.485962+03:00"
      }
    ],
    "selfEligible": true,
    "id": "f489e65e56b646f4a5948df764a5a2f7",
    "value": {
      "currency": "UAH",
      "amount": 500.0,
      "valueAddedTaxIncluded": true
    },
    "subcontractingDetails": "ДКП «книга», Україна, м. Львів, вул. Островського, 33",
    "tenderers": [
      {
        "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": "м. Вінниця"
        }
      }
    ],
    "date": "2017-06-21T15:53:21.328392+03:00",
    "selfQualified": true,
    "participationUrl": "http://auction-sandbox.openprocurement.org/tenders/97dd0ca9a0f741a6ad5628c6873d1de9?key_for_bid=f489e65e56b646f4a5948df764a5a2f7"
  }
}

See the Bid.participationUrl in the response. Similar, but different, URL can be retrieved for other participants:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/bids/52419358b91442179b33c01e2a6f908d?acc_token=7bbaca0d8ae649a28c0608a9f4d8e41a HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "selfEligible": true,
    "value": {
      "currency": "UAH",
      "amount": 499.0,
      "valueAddedTaxIncluded": true
    },
    "id": "52419358b91442179b33c01e2a6f908d",
    "tenderers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "date": "2017-06-21T15:53:21.963775+03:00",
    "selfQualified": true,
    "participationUrl": "http://auction-sandbox.openprocurement.org/tenders/97dd0ca9a0f741a6ad5628c6873d1de9?key_for_bid=52419358b91442179b33c01e2a6f908d"
  }
}

Confirming qualification

Qualification commission registers its decision via the following call:

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/awards/62e97a4e15234f899c0ecc9c56860603?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 67
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active",
    "qualified": true,
    "eligible": true
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "eligible": true,
    "suppliers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-06-21T15:53:22.597972+03:00",
      "endDate": "2017-07-02T00:00:00+03:00"
    },
    "bid_id": "52419358b91442179b33c01e2a6f908d",
    "value": {
      "currency": "UAH",
      "amount": 499.0,
      "valueAddedTaxIncluded": true
    },
    "qualified": true,
    "date": "2017-06-21T15:53:22.785694+03:00",
    "id": "62e97a4e15234f899c0ecc9c56860603"
  }
}

Setting contract value

By default contract value is set based on the award, but there is a possibility to set custom contract value.

If you want to lower contract value, you can insert new one into the amount field.

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 36
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "value": {
      "amount": 238
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "value": {
      "currency": "UAH",
      "amount": 238.0,
      "valueAddedTaxIncluded": true
    },
    "awardID": "62e97a4e15234f899c0ecc9c56860603",
    "id": "c7cf2c266b524616bac79e27f7eef475",
    "contractID": "UA-2017-06-21-000001-1"
  }
}

200 OK response was returned. The value was modified successfully.

Setting contract signature date

There is a possibility to set custom contract signature date. You can insert appropriate date into the dateSigned field.

If this date is not set, it will be auto-generated on the date of contract registration.

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 60
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "dateSigned": "2017-06-21T15:53:23.113026+03:00"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "dateSigned": "2017-06-21T15:53:23.113026+03:00",
    "value": {
      "currency": "UAH",
      "amount": 238.0,
      "valueAddedTaxIncluded": true
    },
    "awardID": "62e97a4e15234f899c0ecc9c56860603",
    "id": "c7cf2c266b524616bac79e27f7eef475",
    "contractID": "UA-2017-06-21-000001-1"
  }
}

Setting contract validity period

Setting contract validity period is optional, but if it is needed, you can set appropriate startDate and endDate.

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 118
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "period": {
      "startDate": "2017-06-21T15:53:23.281777+03:00",
      "endDate": "2018-06-21T15:53:23.281840+03:00"
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "period": {
      "startDate": "2017-06-21T15:53:23.281777+03:00",
      "endDate": "2018-06-21T15:53:23.281840+03:00"
    },
    "value": {
      "currency": "UAH",
      "amount": 238.0,
      "valueAddedTaxIncluded": true
    },
    "dateSigned": "2017-06-21T15:53:23.113026+03:00",
    "awardID": "62e97a4e15234f899c0ecc9c56860603",
    "id": "c7cf2c266b524616bac79e27f7eef475",
    "contractID": "UA-2017-06-21-000001-1"
  }
}

Uploading contract documentation

You can upload contract documents for the OpenUA procedure.

Let’s upload contract document:

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475/documents?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 200
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy836632394277$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475/documents/cb09b38bf7824c42a1524feb5b89924d
{
  "data": {
    "title": "contract_document.doc",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475/documents/cb09b38bf7824c42a1524feb5b89924d?download=fa84f06ca8cf4503bce422717ca1b169",
    "format": "application/msword",
    "datePublished": "2017-06-21T15:53:23.528314+03:00",
    "dateModified": "2017-06-21T15:53:23.528351+03:00",
    "id": "cb09b38bf7824c42a1524feb5b89924d"
  }
}

201 Created response code and Location header confirm that this document was added.

Let’s view the uploaded contract document:

GET /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "documents": [
      {
        "title": "contract_document.doc",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/contracts/c7cf2c266b524616bac79e27f7eef475/documents/cb09b38bf7824c42a1524feb5b89924d?download=fa84f06ca8cf4503bce422717ca1b169",
        "format": "application/msword",
        "datePublished": "2017-06-21T15:53:23.528314+03:00",
        "dateModified": "2017-06-21T15:53:23.528351+03:00",
        "id": "cb09b38bf7824c42a1524feb5b89924d"
      }
    ],
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-07-11T15:53:06.068598+03:00",
          "endDate": "2017-08-10T15:53:06.068650+03:00"
        },
        "id": "fc733ce56c434220bb9e7418b0de6162",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "period": {
      "startDate": "2017-06-21T15:53:23.281777+03:00",
      "endDate": "2018-06-21T15:53:23.281840+03:00"
    },
    "dateSigned": "2017-06-21T15:53:23.113026+03:00",
    "value": {
      "currency": "UAH",
      "amount": 238.0,
      "valueAddedTaxIncluded": true
    },
    "awardID": "62e97a4e15234f899c0ecc9c56860603",
    "id": "c7cf2c266b524616bac79e27f7eef475",
    "contractID": "UA-2017-06-21-000001-1"
  }
}

Cancelling tender

Tender creator can cancel tender anytime. The following steps should be applied:

  1. Prepare cancellation request.
  2. Fill it with the protocol describing the cancellation reasons.
  3. Cancel the tender with the prepared reasons.

Only the request that has been activated (3rd step above) has power to cancel tender. I.e. you have to not only prepare cancellation request but to activate it as well.

See Cancellation data structure for details.

Preparing the cancellation request

You should pass reason, status defaults to pending.

id is autogenerated and passed in the Location header of response.

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 43
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "reason": "cancellation reason"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2
{
  "data": {
    "status": "pending",
    "reason": "cancellation reason",
    "reasonType": "cancelled",
    "date": "2017-06-21T15:53:23.742688+03:00",
    "cancellationOf": "tender",
    "id": "76718472024b4f2ca5de2893c07cd7b2"
  }
}

There are two possible types of cancellation reason - tender was cancelled or unsuccessful. By default reasonType value is cancelled.

You can change reasonType value to unsuccessful.

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 40
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "reasonType": "unsuccessful"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "reason": "cancellation reason",
    "reasonType": "unsuccessful",
    "date": "2017-06-21T15:53:23.935784+03:00",
    "cancellationOf": "tender",
    "id": "76718472024b4f2ca5de2893c07cd7b2"
  }
}

Filling cancellation with protocol and supplementary documentation

Upload the file contents

POST /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 186
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy146192052318$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9
{
  "data": {
    "title": "Notice.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?download=f78f4064cd6a46dbb7e02fbbaa170ae5",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:24.144949+03:00",
    "id": "6009105ed2a04ad6a38ddb0a76854ef9",
    "dateModified": "2017-06-21T15:53:24.145023+03:00"
  }
}

Change the document description and other properties

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 48
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "description": "Changed description"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "description": "Changed description",
    "title": "Notice.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?download=f78f4064cd6a46dbb7e02fbbaa170ae5",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:24.144949+03:00",
    "id": "6009105ed2a04ad6a38ddb0a76854ef9",
    "dateModified": "2017-06-21T15:53:24.145023+03:00"
  }
}

Upload new version of the document

PUT /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 189
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy358421017266$
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "description": "Changed description",
    "title": "Notice-2.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?download=55931e2acaac419484e7fc8070aa385c",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:24.144949+03:00",
    "id": "6009105ed2a04ad6a38ddb0a76854ef9",
    "dateModified": "2017-06-21T15:53:24.522331+03:00"
  }
}

Activating the request and cancelling tender

PATCH /api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2?acc_token=4da34917776743398aa0bb0b7a639d70 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 30
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "documents": [
      {
        "description": "Changed description",
        "title": "Notice.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?download=f78f4064cd6a46dbb7e02fbbaa170ae5",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:24.144949+03:00",
        "id": "6009105ed2a04ad6a38ddb0a76854ef9",
        "dateModified": "2017-06-21T15:53:24.145023+03:00"
      },
      {
        "description": "Changed description",
        "title": "Notice-2.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/97dd0ca9a0f741a6ad5628c6873d1de9/cancellations/76718472024b4f2ca5de2893c07cd7b2/documents/6009105ed2a04ad6a38ddb0a76854ef9?download=55931e2acaac419484e7fc8070aa385c",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:24.144949+03:00",
        "id": "6009105ed2a04ad6a38ddb0a76854ef9",
        "dateModified": "2017-06-21T15:53:24.522331+03:00"
      }
    ],
    "reason": "cancellation reason",
    "reasonType": "unsuccessful",
    "date": "2017-06-21T15:53:24.721063+03:00",
    "cancellationOf": "tender",
    "id": "76718472024b4f2ca5de2893c07cd7b2"
  }
}

Data Standard

Data standard is modelled along the Open Contracting Standard with extensions in areas that were not covered by it.

Tender

Schema

title:

string, multilingual

The name of the tender, displayed in listings. You can include the following items:

  • tender code (in procuring organization management system)
  • periodicity of the tender (annual, quarterly, etc.)
  • item being procured
  • some other info
description:

string, multilingual

Detailed description of tender.

tenderID:

string, auto-generated, read-only

The tender identifier to refer tender to in “paper” documentation.

OpenContracting Description: TenderID should always be the same as the OCID. It is included to make the flattened data structure more convenient.

procurementMethodType:
 

string

value: aboveThresholdUA

procuringEntity:
 

ProcuringEntity, required

Organization conducting the tender.

OpenContracting Description: The entity managing the procurement, which may be different from the buyer who is paying / using the items being procured.

value:

Value, required

Total available tender budget. Bids greater then value will be rejected.

OpenContracting Description: The total estimated value of the procurement.

guarantee:

Guarantee

Bid guarantee

items:

list of Item objects, required

List that contains single item being procured.

OpenContracting Description: The goods and services to be purchased, broken into line items wherever possible. Items should not be duplicated, but a quantity of 2 specified instead.

features:

list of Feature objects

Features of tender.

documents:

List of Document objects

OpenContracting Description: All documents and attachments related to the tender.

questions:

List of Question objects

Questions to procuringEntity and answers to them.

complaints:

List of Complaint objects

Complaints to tender conditions and their resolutions.

bids:

List of Bid objects

A list of all bids placed in the tender with information about tenderers, their proposal and other qualification documentation.

OpenContracting Description: A list of all the companies who entered submissions for the tender.

minimalStep:

Value, required

The minimal step of auction (reduction). Validation rules:

  • amount should be less then Tender.value.amount
  • currency should either be absent or match Tender.value.currency
  • valueAddedTaxIncluded should either be absent or match Tender.value.valueAddedTaxIncluded
awards:

List of Award objects

All qualifications (disqualifications and awards).

contracts:

List of Contract objects

enquiryPeriod:

Period, required

OpenContracting Description: The period during which enquiries may be made.

Period when questions are allowed.

enquiryPeriod has additional fields:

  • invalidationDate - date of the last tender conditions modification, when all bid proposals became invalid. Broker (eMall) should take action in order for bids to be activated or re-submitted.
  • clarificationsUntil - time before which answers for questions and claims can be provided. After this time the procedure will be blocked.
tenderPeriod:

Period, required

Period when bids can be submitted. At least endDate has to be provided.

OpenContracting Description: The period when the tender is open for submissions. The end date is the closing date for tender submissions.

auctionPeriod:

Period, read-only

Period when Auction is conducted.

auctionUrl:

url

A web address for view auction.

awardPeriod:

Period, read-only

Awarding process period.

OpenContracting Description: The date or period on which an award is anticipated to be made.

status:

string

active.tendering:
 Tendering period (tendering)
active.auction:Auction period (auction)
active.qualification:
 Winner qualification (qualification)
active.awarded:Standstill period (standstill)
unsuccessful:Unsuccessful tender (unsuccessful)
complete:Complete tender (complete)
cancelled:Cancelled tender (cancelled)

Status of the Tender.

lots:

List of Lot objects.

Contains all tender lots.

cancellations:

List of Cancellation objects.

Contains 1 object with active status in case of cancelled Tender.

The Cancellation object describes the reason of tender cancellation contains accompanying documents if any.

revisions:

List of Revision objects, auto-generated

Historical changes to Tender object properties.

Important

The Tender dates should be sequential:

  • Current time
  • enquiryPeriod.startDate
  • enquiryPeriod.endDate
  • tenderPeriod.startDate
  • tenderPeriod.endDate

Organization

Schema

name:

string, multilingual

OpenContracting Description: The common name of the organization.

identifier:

Identifier

OpenContracting Description: The primary identifier for this organization.

additionalIdentifiers:
 

List of Identifier objects

address:

Address, required

contactPoint:

ContactPoint, required

Identifier

Schema

scheme:

string

OpenContracting Description: Organization identifiers be drawn from an existing identification scheme. This field is used to indicate the scheme or codelist in which the identifier will be found. This value should be drawn from the Organization Identifier Scheme.

id:

string, required

OpenContracting Description: The identifier of the organization in the selected scheme.

The allowed codes are the ones found in “Organisation Registration Agency” codelist of IATI Standard with addition of UA-EDR code for organizations registered in Ukraine (EDRPOU and IPN).

legalName:

string, multilingual

OpenContracting Description: The legally registered name of the organization.

uri:

uri

OpenContracting Description: A URI to identify the organization, such as those provided by Open Corporates or some other relevant URI provider. This is not for listing the website of the organization: that can be done through the url field of the Organization contact point.

Address

Schema

streetAddress:

string, required

OpenContracting Description: The street address. For example, 1600 Amphitheatre Pkwy.

locality:

string, required

OpenContracting Description: The locality. For example, Mountain View.

region:

string, required

OpenContracting Description: The region. For example, CA.

postalCode:

string, required

OpenContracting Description: The postal code. For example, 94043.

countryName:

string, multilingual, required

OpenContracting Description: The country name. For example, United States.

ContactPoint

Schema

name:

string, multilingual, required

OpenContracting Description: The name of the contact person, department, or contact point, for correspondence relating to this contracting process.

email:

email

OpenContracting Description: The e-mail address of the contact point/person.

telephone:

string

OpenContracting Description: The telephone number of the contact point/person. This should include the international dialling code.

faxNumber:

string

OpenContracting Description: The fax number of the contact point/person. This should include the international dialling code.

url:

url

OpenContracting Description: A web address for the contact point/person.

Either email or telephone field has to be provided.

ProcuringEntity

Schema

name:

string, multilingual

OpenContracting Description: The common name of the organization.

identifier:

Identifier

OpenContracting Description: The primary identifier for this organization.

additionalIdentifiers:
 

List of Identifier objects

address:

Address, required

contactPoint:

ContactPoint, required

kind:

string

Type of procuring entity

Possible values:
  • general - Procuring entity (general)
  • special - Procuring entity that operates in certain spheres of economic activity
  • defense - Procuring entity that conducts procurement for the defense needs

Item

Schema

id:

string, auto-generated

description:

string, multilingual, required

OpenContracting Description: A description of the goods, services to be provided.

classification:

Classification

OpenContracting Description: The primary classification for the item. See the itemClassificationScheme to identify preferred classification lists, including CPV and GSIN.

It is mandatory for classification.scheme to be CPV. The classification.id should be valid CPV code.

additionalClassifications:
 

List of Classification objects

OpenContracting Description: An array of additional classifications for the item. See the itemClassificationScheme codelist for common options to use in OCDS. This may also be used to present codes from an internal classification scheme.

It is mandatory to have at least one item with ДКПП as scheme.

unit:

Unit

OpenContracting Description: Description of the unit which the good comes in e.g. hours, kilograms. Made up of a unit name, and the value of a single unit.

quantity:

integer

OpenContracting Description: The number of units required

deliveryDate:

Period, required

Period during which the item should be delivered.

deliveryAddress:
 

Address, required

Address, where the item should be delivered.

deliveryLocation:
 

dictionary

Geographical coordinates of delivery location. Element consist of the following items:

latitude:string, required
longitude:string, required
elevation:string, optional, usually not used

deliveryLocation usually takes precedence over deliveryAddress if both are present.

relatedLot:

string

Id of related Lot.

Classification

Schema

scheme:

string

OpenContracting Description: A classification should be drawn from an existing scheme or list of codes. This field is used to indicate the scheme/codelist from which the classification is drawn. For line item classifications, this value should represent a known Item Classification Scheme wherever possible.

id:

string

OpenContracting Description: The classification code drawn from the selected scheme.

description:

string

OpenContracting Description: A textual description or title for the code.

uri:

uri

OpenContracting Description: A URI to identify the code. In the event individual URIs are not available for items in the identifier scheme this value should be left blank.

Unit

Schema

code:

string, required

UN/CEFACT Recommendation 20 unit code.

name:

string

OpenContracting Description: Name of the unit

Document

Schema

id:

string, auto-generated

documentType:

string

Possible values for Tender

  • notice - Tender notice

    The formal notice that gives details of a tender. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • biddingDocuments - Bidding Documents

    Information for potential suppliers, describing the goals of the contract (e.g. goods and services to be procured), and the bidding process.

  • technicalSpecifications - Technical Specifications

    Detailed technical information about goods or services to be provided.

  • evaluationCriteria - Evaluation Criteria

    Information about how bids will be evaluated.

  • clarifications - Clarifications to bidders questions

    Including replies to issues raised in pre-bid conferences.

  • eligibilityCriteria - Eligibility Criteria

    Detailed documents about the eligibility of bidders.

  • shortlistedFirms - Shortlisted Firms

  • riskProvisions - Provisions for management of risks and liabilities

  • billOfQuantity - Bill Of Quantity

  • bidders - Information on bidders

    Information on bidders or participants, their validation documents and any procedural exemptions for which they qualify.

  • conflictOfInterest - Conflicts of interest uncovered

  • debarments - Debarments issued

  • contractProforma - Draft contract

Possible values for Award

  • notice - Award Notice

    The formal notice that gives details of the contract award. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • evaluationReports - Evaluation report

    Report on the evaluation of the bids and the application of the evaluation criteria, including the justification fo the award.

  • winningBid - Winning Bid

  • complaints - Complaints and decisions

Possible values for Contract

  • notice - Contract notice

    The formal notice that gives details of a contract being signed and valid to start implementation. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • contractSigned - Signed Contract

  • contractArrangements - Arrangements for ending contract

  • contractSchedule - Schedules and milestones

  • contractAnnexe - Annexes to the Contract

  • contractGuarantees - Guarantees

  • subContract - Subcontracts

Possible values for Bid

  • commercialProposal - Сommercial proposal
  • qualificationDocuments - Qualification documents
  • eligibilityDocuments - Eligibility documents
title:

string, multilingual

OpenContracting Description: The document title.

description:

string, multilingual

OpenContracting Description: A short description of the document. In the event the document is not accessible online, the description field can be used to describe arrangements for obtaining a copy of the document.

format:

string

OpenContracting Description: The format of the document taken from the IANA Media Types code list, with the addition of one extra value for ‘offline/print’, used when this document entry is being used to describe the offline publication of a document.

url:

string, auto-generated

OpenContracting Description: Direct link to the document or attachment.

datePublished:

string, Date

OpenContracting Description: The date on which the document was first published.

dateModified:

string, Date

OpenContracting Description: Date that the document was last modified

language:

string

OpenContracting Description: Specifies the language of the linked document using either two-digit ISO 639-1, or extended BCP47 language tags.

documentOf:

string

Possible values are:

  • tender
  • item
  • lot
relatedItem:

string

Id of related Lot or Item.

Lot

Schema

id:

string, auto-generated

title:

string, multilingual

The name of the tender lot.

description:

string, multilingual

Detailed description of tender lot.

value:

Value, required

Total available tender lot budget. Bids greater then value will be rejected.

guarantee:

Guarantee

Bid guarantee

minimalStep:

Value, required

The minimal step of auction (reduction). Validation rules:

  • amount should be less then Lot.value.amount
  • currency should either be absent or match Lot.value.currency
  • valueAddedTaxIncluded should either be absent or match Lot.value.valueAddedTaxIncluded
auctionPeriod:

Period, read-only

Period when Auction is conducted.

auctionUrl:

url

A web address for view auction.

status:

string

active:Active tender lot (active)
unsuccessful:Unsuccessful tender lot (unsuccessful)
complete:Complete tender lot (complete)
cancelled:Cancelled tender lot (cancelled)

Status of the Lot.

Bid

Schema

tenderers:

List of Organization objects

date:

string, Date, auto-generated

id:

uid, auto-generated

status:

string

Possible values are:

  • draft
  • active
  • invalid
  • deleted
value:

Value, required

Validation rules:

  • amount should be less than Tender.value.amout
  • currency should either be absent or match Tender.value.currency
  • valueAddedTaxIncluded should either be absent or match Tender.value.valueAddedTaxIncluded
selfEligible:

True, required

Confirms compliance of eligibility criteria set by the procuring entity in the tendering documents.

selfQualified:

True, required

Confirms the absence of grounds for refusal to participate in accordance with Article 17 of the Law of Ukraine “On Public Procurement”.

subcontractingDetails:
 

string

When submitting proposals, participant can fill in the text field of any length about subcontractor.

documents:

List of Document objects

parameters:

List of Parameter objects

lotValues:

List of LotValue objects

participationUrl:
 

url

A web address for participation in auction.

Parameter

Schema

code:

string, required

Code of the feature.

value:

float, required

Value of the feature.

LotValue

Schema

value:

Value, required

Validation rules:

  • amount should be less than Lot.value.amout
  • currency should either be absent or match Lot.value.currency
  • valueAddedTaxIncluded should either be absent or match Lot.value.valueAddedTaxIncluded
relatedLot:

string

Id of related Lot.

date:

string, Date, auto-generated

subcontractingDetails:
 

string

When submitting proposals, participant can fill in the text field of any length about subcontractor.

participationUrl:
 

url

A web address for participation in auction.

Award

Schema

id:

string, auto-generated, read-only

OpenContracting Description: The identifier for this award.

bid_id:

string, auto-generated, read-only

The Id of a bid that the award relates to.

title:

string, multilingual

OpenContracting Description: Award title.

description:

string, multilingual

OpenContracting Description: Award description.

eligible:

bool

Confirms compliance of eligibility criteria set by the procuring entity in the tendering documents.

qualified:

bool

Confirms the absence of grounds for refusal to participate in accordance with Article 17 of the Law of Ukraine “On Public Procurement”.

status:

string

OpenContracting Description: The current status of the award drawn from the awardStatus codelist.

Possible values are:

  • pending - the award is under review of qualification committee
  • unsuccessful - the award has been rejected by qualification comittee
  • active - the tender is awarded to the bidder from the bid_id
  • cancelled - the award has been cancelled by complaint review body
date:

string, Date, auto-generated, read-only

OpenContracting Description: The date of the contract award.

value:

List of Value objects, auto-generated, read-only

OpenContracting Description: The total value of this award.

suppliers:

List of Organization objects, auto-generated, read-only

OpenContracting Description: The suppliers awarded with this award.

items:

List of Item objects, auto-generated, read-only

OpenContracting Description: The goods and services awarded in this award, broken into line items wherever possible. Items should not be duplicated, but the quantity specified instead.

documents:

List of Document objects

OpenContracting Description: All documents and attachments related to the award, including any notices.

complaints:

List of Complaint objects

complaintPeriod:
 

Period

The timeframe when complaints can be submitted.

lotID:

string

Id of related Lot.

Question

Schema

id:

uid, auto-generated

author:

Organization, required

Who is asking a question (contactPoint - person, identification - organization that person represents).

title:

string, required

Title of the question.

description:

string

Description of the question.

date:

string, Date, auto-generated

Date of posting.

dateAnswered:

string, Date, auto-generated

Date when answer has been provided.

answer:

string

Answer for the question asked.

questionOf:

string

Possible values are:

  • tender
  • item
  • lot
relatedItem:

string

Id of related Lot or Item.

Complaint

Schema

id:

uid, auto-generated

author:

Organization, required

Organization filing a complaint (contactPoint - person, identification - organization that person represents).

title:

string, required

Title of the complaint.

description:

Description of the issue.

date:

string, Date, auto-generated

Date of posting.

dateSubmitted:

string, Date, auto-generated

Date when claim was submitted.

dateAnswered:

string, Date, auto-generated

Date when Procuring entity answered the claim.

dateEscalated:

string, Date, auto-generated

Date of claim to complaint escalation.

dateDecision:

string, Date, auto-generated

Date of complaint decision.

dateCanceled:

string, Date, auto-generated

Date of cancelling.

status:

string

Possible values are:

  • draft
  • claim
  • answered
  • pending
  • invalid
  • declined
  • resolved
  • cancelled
  • accepted
type:

string

Possible values of type are:

  • claim
  • complaint
resolution:

string

Resolution of Procuring entity.

resolutionType:

string

Possible values of resolution type are:

  • invalid
  • declined
  • resolved
satisfied:

bool

Claim is satisfied?

decision:

string

Reviewer decision.

cancellationReason:
 

string

Cancellation reason.

documents:

List of Document objects

relatedLot:

string

Id of related Lot.

tendererAction:

string

Tenderer action.

tendererActionDate:
 

string, Date, auto-generated

Date of tenderer action.

acceptance:

bool

Claim is satisfied?

rejectReason:

string

Possible values of reject reason are:

  • lawNonСompliance - law non compliance
  • noPaymentReceived - no payment received
  • buyerViolationsСorrected - violations were corrected by Procuring entity
rejectReasonDescription:
 

string

Reject reason description.

reviewDate:

string, Date, auto-generated

Date of review.

reviewPlace:

string

Place of review.

Contract

Schema

id:

uid, auto-generated

OpenContracting Description: The identifier for this contract.

awardID:

string, required

OpenContracting Description: The Award.id against which this contract is being issued.

contractID:

string, auto-generated, read-only

contractNumber:

string

title:

string, required

OpenContracting Description: Contract title

description:

string

OpenContracting Description: Contract description

status:

string, required

OpenContracting Description: The current status of the contract.

Possible values are:

  • pending - this contract has been proposed, but is not yet in force. It may be awaiting signature.
  • active - this contract has been signed by all the parties, and is now legally in force.
  • cancelled - this contract has been cancelled prior to being signed.
period:

Period

OpenContracting Description: The start and end date for the contract.

items:

List of Item objects, auto-generated, read-only

OpenContracting Description: The goods, services, and any intangible outcomes in this contract. Note: If the items are the same as the award do not repeat.

suppliers:

List of Organization objects, auto-generated, read-only

value:

Value object, auto-generated, read-only

OpenContracting Description: The total value of this contract.

dateSigned:

string, Date, auto-generated

OpenContracting Description: The date when the contract was signed. In the case of multiple signatures, the date of the last signature.

date:

string, Date

The date when the contract was changed or activated.

documents:

List of Document objects

OpenContracting Description: All documents and attachments related to the contract, including any notices.

Period

Schema

startDate:

string, Date

OpenContracting Description: The start date for the period.

endDate:

string, Date, required

OpenContracting Description: The end date for the period.

startDate should always precede endDate.

Date

Date/time in Date Format: ISO 8601.

Value

Schema

amount:

float, required

OpenContracting Description: Amount as a number.

Should be positive.

currency:

string, required

OpenContracting Description: The currency in 3-letter ISO 4217 format.

valueAddedTaxIncluded:
 

bool, required

Revision

Schema

date:

string, Date

Date when changes were recorded.

changes:

List of Change objects

Guarantee

Schema

amount:

float, required

OpenContracting Description: Amount as a number.

Should be positive.

currency:

string, required, default = UAH

OpenContracting Description: The currency in 3-letter ISO 4217 format.

Cancellation

Schema

id:

uid, auto-generated

reason:

string, multilingual, required

The reason, why Tender is being cancelled.

status:

string

Possible values are:
pending:Default. The request is being prepared.
active:Cancellation activated.
reasonType:

string

There are two possible types of cancellation reason set by procuring entity:

cancelled:Default. Tender was cancelled.
unsuccessful:Tender was unsuccessful.
documents:

List of Document objects

Documents accompanying the Cancellation: Protocol of Tender Committee with decision to cancel the Tender.

date:

string, Date

Cancellation date.

cancellationOf:

string

Possible values are:

  • tender
  • lot
relatedLot:

string

Id of related Lot.

Feature

Schema

code:

string, auto-generated

Code of the feature.

featureOf:

string, required

Possible values are:

  • tenderer
  • lot
  • item
relatedItem:

string

Id of related item.

title:

string, multilingual, required

Title of the feature.

description:

string, multilingual

Description of the feature.

enum:

list

List of values:

value:

float, required

Value of the feature.

title:

string, multilingual, required

Title of the value.

description:

string, multilingual

Description of the value.

Complaint Workflow

For more detailed information read Complaints.

Tender Conditions Claims/Complaints

digraph G {
    rankdir=LR;
    {rank=same; mistaken; invalid; resolved; declined; stopped; cancelled;}
    subgraph cluster_claim {
        label = "claim";
        claim; answered;
    }
    subgraph cluster_complaint {
        label = "complaint";
        pending; satisfied; accepted; stopping;
    }
    claim -> answered;
    satisfied -> resolved;
    edge[style=dashed];
    answered -> {pending,resolved};
    draft -> {claim,pending};
    claim -> pending;
    {draft,claim,answered} -> cancelled;
    pending -> stopping;
    accepted -> stopping;
    edge[style=bold];
    accepted -> {declined,satisfied,stopped};
    pending -> {accepted,invalid,stopped};
    stopping -> {stopped,invalid,declined,satisfied};
    {pending;stopping} -> mistaken;
    edge[label="auction" style=dotted];
    answered -> {invalid,declined,resolved};
}

Claim/Complaint Retrieval

Tender Conditions Claim/Complaint Retrieval

You can list all Tender Conditions Claims/Complaints:

GET /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "status": "resolved",
      "dateDecision": "2017-06-21T15:53:18.047796+03:00",
      "documents": [
        {
          "author": "complaint_owner",
          "title": "Complaint_Attachement.pdf",
          "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-06-21T15:53:15.977188+03:00",
          "id": "71178621d5c043e690c2890ac59c3291",
          "dateModified": "2017-06-21T15:53:15.977226+03:00"
        },
        {
          "author": "aboveThresholdReviewers",
          "title": "ComplaintResolution.pdf",
          "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/171db05e003c44b5b98c26f4bcb3c9be?download=50000b765f914d979f5a0598174c1e1d",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-06-21T15:53:17.894039+03:00",
          "id": "171db05e003c44b5b98c26f4bcb3c9be",
          "dateModified": "2017-06-21T15:53:17.894075+03:00"
        }
      ],
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "title": "Недостатньо інформації",
      "tendererAction": "Умови виправлено",
      "tendererActionDate": "2017-06-21T15:53:18.494006+03:00",
      "dateSubmitted": "2017-06-21T15:53:16.408891+03:00",
      "complaintID": "UA-2017-06-21-000001.1",
      "date": "2017-06-21T15:53:18.501460+03:00",
      "acceptance": true,
      "type": "complaint",
      "id": "8d4fecf6d7dc4d4097f635cd467faf4a",
      "dateAccepted": "2017-06-21T15:53:17.338325+03:00"
    },
    {
      "status": "resolved",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "resolutionType": "resolved",
      "type": "claim",
      "satisfied": true,
      "dateAnswered": "2017-06-21T15:53:16.512480+03:00",
      "dateSubmitted": "2017-06-21T15:53:16.128559+03:00",
      "complaintID": "UA-2017-06-21-000001.2",
      "date": "2017-06-21T15:53:16.735334+03:00",
      "resolution": "Виправлено неконкурентні умови",
      "id": "dee424857de941a192e3060a80846b23"
    },
    {
      "status": "declined",
      "dateDecision": "2017-06-21T15:53:18.190844+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "acceptance": true,
      "dateAccepted": "2017-06-21T15:53:17.471272+03:00",
      "dateSubmitted": "2017-06-21T15:53:16.211615+03:00",
      "complaintID": "UA-2017-06-21-000001.3",
      "date": "2017-06-21T15:53:18.198319+03:00",
      "title": "Недостатньо інформації",
      "type": "complaint",
      "id": "099d77558f49450591cccd933844d637"
    },
    {
      "status": "invalid",
      "dateDecision": "2017-06-21T15:53:17.199933+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "resolutionType": "invalid",
      "type": "complaint",
      "acceptance": false,
      "satisfied": false,
      "dateEscalated": "2017-06-21T15:53:16.844756+03:00",
      "dateAnswered": "2017-06-21T15:53:16.618827+03:00",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "dateSubmitted": "2017-06-21T15:53:16.298822+03:00",
      "complaintID": "UA-2017-06-21-000001.4",
      "date": "2017-06-21T15:53:17.207116+03:00",
      "resolution": "Вимога не відповідає предмету закупівлі",
      "id": "f356417abffc41da80d644d17ac04b98"
    },
    {
      "status": "stopped",
      "dateDecision": "2017-06-21T15:53:18.335179+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "decision": "Тендер скасовується замовником",
      "acceptance": true,
      "dateCanceled": "2017-06-21T15:53:18.335215+03:00",
      "dateAccepted": "2017-06-21T15:53:17.608921+03:00",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "dateSubmitted": "2017-06-21T15:53:16.955523+03:00",
      "complaintID": "UA-2017-06-21-000001.5",
      "date": "2017-06-21T15:53:18.342849+03:00",
      "type": "complaint",
      "id": "3f9a271507cb4fbab55721b899a7d8a8"
    },
    {
      "status": "stopped",
      "dateDecision": "2017-06-21T15:53:18.821113+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "decision": "Тендер скасовується замовником",
      "acceptance": true,
      "cancellationReason": "Тендер скасовується замовником",
      "dateCanceled": "2017-06-21T15:53:18.659643+03:00",
      "dateAccepted": "2017-06-21T15:53:17.762377+03:00",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "dateSubmitted": "2017-06-21T15:53:17.072064+03:00",
      "complaintID": "UA-2017-06-21-000001.6",
      "date": "2017-06-21T15:53:18.830188+03:00",
      "type": "complaint",
      "id": "fb2a86ac340c41159673b9c88bf737a8"
    },
    {
      "status": "cancelled",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "cancellationReason": "Умови виправлено",
      "dateCanceled": "2017-06-21T15:53:19.138434+03:00",
      "complaintID": "UA-2017-06-21-000001.7",
      "date": "2017-06-21T15:53:19.146806+03:00",
      "type": "claim",
      "id": "9320aa9daf764e6aa3e7c8a73a61af19"
    }
  ]
}

And check individual complaint or claim:

GET /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "resolved",
    "dateDecision": "2017-06-21T15:53:18.047796+03:00",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:15.977188+03:00",
        "id": "71178621d5c043e690c2890ac59c3291",
        "dateModified": "2017-06-21T15:53:15.977226+03:00"
      },
      {
        "author": "aboveThresholdReviewers",
        "title": "ComplaintResolution.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/171db05e003c44b5b98c26f4bcb3c9be?download=50000b765f914d979f5a0598174c1e1d",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:17.894039+03:00",
        "id": "171db05e003c44b5b98c26f4bcb3c9be",
        "dateModified": "2017-06-21T15:53:17.894075+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "tendererAction": "Умови виправлено",
    "tendererActionDate": "2017-06-21T15:53:18.494006+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.408891+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:18.501460+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a",
    "dateAccepted": "2017-06-21T15:53:17.338325+03:00"
  }
}

Claim Submission

If tender conditions are favoriting particular supplier, or in any other viable case, any registered user can submit Tender Conditions Claim.

Tender Conditions Claim Submission (with documents)

At first create a claim:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1682
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a
{
  "access": {
    "token": "424f7eed6c9e49c5b55b62c96b1b8ffd"
  },
  "data": {
    "status": "draft",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:15.917984+03:00",
    "type": "claim",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a"
  }
}

Then upload necessary documents:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents?acc_token=424f7eed6c9e49c5b55b62c96b1b8ffd HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 201
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy409055726731$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291
{
  "data": {
    "author": "complaint_owner",
    "title": "Complaint_Attachement.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:15.977188+03:00",
    "id": "71178621d5c043e690c2890ac59c3291",
    "dateModified": "2017-06-21T15:53:15.977226+03:00"
  }
}

Submit tender conditions claim:

PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a?acc_token=424f7eed6c9e49c5b55b62c96b1b8ffd HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 29
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "claim"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "claim",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:15.977188+03:00",
        "id": "71178621d5c043e690c2890ac59c3291",
        "dateModified": "2017-06-21T15:53:15.977226+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "dateSubmitted": "2017-06-21T15:53:16.055636+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:16.059466+03:00",
    "type": "claim",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a"
  }
}
Tender Conditions Claim Submission (without documents)

You can submit claim that does not need additional documents:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1701
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "claim",
    "title": "Недостатньо інформації",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    }
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/dee424857de941a192e3060a80846b23
{
  "access": {
    "token": "c536a7682c074a958af806a12ad5f665"
  },
  "data": {
    "status": "claim",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "dateSubmitted": "2017-06-21T15:53:16.128559+03:00",
    "complaintID": "UA-2017-06-21-000001.2",
    "date": "2017-06-21T15:53:16.128429+03:00",
    "type": "claim",
    "id": "dee424857de941a192e3060a80846b23"
  }
}

Complaint Submission

If tender conditions are favoriting particular supplier, or in any other viable case, any registered user can submit Tender Conditions Complaint.

Tender Conditions Complaint Submission (with documents)

At first create a draft:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1682
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a
{
  "access": {
    "token": "424f7eed6c9e49c5b55b62c96b1b8ffd"
  },
  "data": {
    "status": "draft",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:15.917984+03:00",
    "type": "claim",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a"
  }
}

Then upload necessary documents:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents?acc_token=424f7eed6c9e49c5b55b62c96b1b8ffd HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 201
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy409055726731$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291
{
  "data": {
    "author": "complaint_owner",
    "title": "Complaint_Attachement.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:15.977188+03:00",
    "id": "71178621d5c043e690c2890ac59c3291",
    "dateModified": "2017-06-21T15:53:15.977226+03:00"
  }
}

Submit tender conditions complaint:

PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a?acc_token=424f7eed6c9e49c5b55b62c96b1b8ffd HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 31
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:15.977188+03:00",
        "id": "71178621d5c043e690c2890ac59c3291",
        "dateModified": "2017-06-21T15:53:15.977226+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:16.408891+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:16.414948+03:00",
    "type": "complaint",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a"
  }
}
Tender Conditions Complaint Submission (without documents)

You can submit complaint that does not need additional documents:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1703
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending",
    "title": "Недостатньо інформації",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    }
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/099d77558f49450591cccd933844d637
{
  "access": {
    "token": "10f575ed69e94ed1a2ae99a98fdb3cc0"
  },
  "data": {
    "status": "pending",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "dateSubmitted": "2017-06-21T15:53:16.211615+03:00",
    "complaintID": "UA-2017-06-21-000001.3",
    "date": "2017-06-21T15:53:16.211332+03:00",
    "type": "complaint",
    "id": "099d77558f49450591cccd933844d637"
  }
}

Claim’s Answer

Answer to resolved claim
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/dee424857de941a192e3060a80846b23?acc_token=64b418df49b3485f9ec5e222a6be1a51 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 250
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "answered",
    "resolutionType": "resolved",
    "resolution": "Виправлено неконкурентні умови"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "answered",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "resolutionType": "resolved",
    "type": "claim",
    "dateAnswered": "2017-06-21T15:53:16.512480+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.128559+03:00",
    "complaintID": "UA-2017-06-21-000001.2",
    "date": "2017-06-21T15:53:16.518811+03:00",
    "resolution": "Виправлено неконкурентні умови",
    "id": "dee424857de941a192e3060a80846b23"
  }
}

Satisfied Claim

Satisfying resolution
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/dee424857de941a192e3060a80846b23?acc_token=c536a7682c074a958af806a12ad5f665 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 51
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "resolved",
    "satisfied": true
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "resolved",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "resolutionType": "resolved",
    "type": "claim",
    "satisfied": true,
    "dateAnswered": "2017-06-21T15:53:16.512480+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.128559+03:00",
    "complaintID": "UA-2017-06-21-000001.2",
    "date": "2017-06-21T15:53:16.735334+03:00",
    "resolution": "Виправлено неконкурентні умови",
    "id": "dee424857de941a192e3060a80846b23"
  }
}
Escalate claim to complaint
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/f356417abffc41da80d644d17ac04b98?acc_token=85f1f2576ef64a6190bbdfab2b913cc3 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 51
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending",
    "satisfied": false
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "resolutionType": "invalid",
    "type": "complaint",
    "title": "Недостатньо інформації",
    "satisfied": false,
    "dateEscalated": "2017-06-21T15:53:16.844756+03:00",
    "dateAnswered": "2017-06-21T15:53:16.618827+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.298822+03:00",
    "complaintID": "UA-2017-06-21-000001.4",
    "date": "2017-06-21T15:53:16.850778+03:00",
    "resolution": "Вимога не відповідає предмету закупівлі",
    "id": "f356417abffc41da80d644d17ac04b98"
  }
}

Complaint Resolution

Rejecting Tender Conditions Complaint
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/f356417abffc41da80d644d17ac04b98 HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 31
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "invalid"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "invalid",
    "dateDecision": "2017-06-21T15:53:17.199933+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "resolutionType": "invalid",
    "type": "complaint",
    "acceptance": false,
    "satisfied": false,
    "dateEscalated": "2017-06-21T15:53:16.844756+03:00",
    "dateAnswered": "2017-06-21T15:53:16.618827+03:00",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:16.298822+03:00",
    "complaintID": "UA-2017-06-21-000001.4",
    "date": "2017-06-21T15:53:17.207116+03:00",
    "resolution": "Вимога не відповідає предмету закупівлі",
    "id": "f356417abffc41da80d644d17ac04b98"
  }
}
Accepting Tender Conditions Complaint
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 32
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "accepted"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "accepted",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:15.977188+03:00",
        "id": "71178621d5c043e690c2890ac59c3291",
        "dateModified": "2017-06-21T15:53:15.977226+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateAccepted": "2017-06-21T15:53:17.338325+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.408891+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:17.346476+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a"
  }
}
Submitting Tender Conditions Complaint Resolution

The Complaint Review Body uploads the resolution document:

POST /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 199
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy522437606114$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/171db05e003c44b5b98c26f4bcb3c9be
{
  "data": {
    "author": "aboveThresholdReviewers",
    "title": "ComplaintResolution.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/171db05e003c44b5b98c26f4bcb3c9be?download=50000b765f914d979f5a0598174c1e1d",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:17.894039+03:00",
    "id": "171db05e003c44b5b98c26f4bcb3c9be",
    "dateModified": "2017-06-21T15:53:17.894075+03:00"
  }
}

And either resolves complaint:

PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 33
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "satisfied"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "satisfied",
    "dateDecision": "2017-06-21T15:53:18.047796+03:00",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:15.977188+03:00",
        "id": "71178621d5c043e690c2890ac59c3291",
        "dateModified": "2017-06-21T15:53:15.977226+03:00"
      },
      {
        "author": "aboveThresholdReviewers",
        "title": "ComplaintResolution.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/171db05e003c44b5b98c26f4bcb3c9be?download=50000b765f914d979f5a0598174c1e1d",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:17.894039+03:00",
        "id": "171db05e003c44b5b98c26f4bcb3c9be",
        "dateModified": "2017-06-21T15:53:17.894075+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateAccepted": "2017-06-21T15:53:17.338325+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.408891+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:18.055168+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a"
  }
}

Or declines it:

PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/099d77558f49450591cccd933844d637 HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 32
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "declined"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "declined",
    "dateDecision": "2017-06-21T15:53:18.190844+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "acceptance": true,
    "dateAccepted": "2017-06-21T15:53:17.471272+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.211615+03:00",
    "complaintID": "UA-2017-06-21-000001.3",
    "date": "2017-06-21T15:53:18.198319+03:00",
    "title": "Недостатньо інформації",
    "type": "complaint",
    "id": "099d77558f49450591cccd933844d637"
  }
}
Submitting Resolution Confirmation
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a?acc_token=64b418df49b3485f9ec5e222a6be1a51 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 145
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "resolved",
    "tendererAction": "Умови виправлено"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "resolved",
    "dateDecision": "2017-06-21T15:53:18.047796+03:00",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/71178621d5c043e690c2890ac59c3291?download=2d9e1c4577484c9b8b2ecb3650481759",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:15.977188+03:00",
        "id": "71178621d5c043e690c2890ac59c3291",
        "dateModified": "2017-06-21T15:53:15.977226+03:00"
      },
      {
        "author": "aboveThresholdReviewers",
        "title": "ComplaintResolution.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/8d4fecf6d7dc4d4097f635cd467faf4a/documents/171db05e003c44b5b98c26f4bcb3c9be?download=50000b765f914d979f5a0598174c1e1d",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:17.894039+03:00",
        "id": "171db05e003c44b5b98c26f4bcb3c9be",
        "dateModified": "2017-06-21T15:53:17.894075+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "tendererAction": "Умови виправлено",
    "tendererActionDate": "2017-06-21T15:53:18.494006+03:00",
    "dateSubmitted": "2017-06-21T15:53:16.408891+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:18.501460+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "8d4fecf6d7dc4d4097f635cd467faf4a",
    "dateAccepted": "2017-06-21T15:53:17.338325+03:00"
  }
}

Cancelling Tender Conditions Complaint

Cancelling not accepted complaint
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/9320aa9daf764e6aa3e7c8a73a61af19?acc_token=5857ba1680174657b3ce143e8f03ac59 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 150
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "cancelled",
    "cancellationReason": "Умови виправлено"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "cancelled",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "cancellationReason": "Умови виправлено",
    "dateCanceled": "2017-06-21T15:53:19.138434+03:00",
    "complaintID": "UA-2017-06-21-000001.7",
    "date": "2017-06-21T15:53:19.146806+03:00",
    "type": "claim",
    "id": "9320aa9daf764e6aa3e7c8a73a61af19"
  }
}
Cancelling accepted complaint by Complainant
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/fb2a86ac340c41159673b9c88bf737a8?acc_token=a0cb182ab75b4363a11fabb7a9b38b2b HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 228
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "stopping",
    "cancellationReason": "Тендер скасовується замовником"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "stopping",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "acceptance": true,
    "cancellationReason": "Тендер скасовується замовником",
    "dateCanceled": "2017-06-21T15:53:18.659643+03:00",
    "dateAccepted": "2017-06-21T15:53:17.762377+03:00",
    "dateSubmitted": "2017-06-21T15:53:17.072064+03:00",
    "complaintID": "UA-2017-06-21-000001.6",
    "date": "2017-06-21T15:53:18.669628+03:00",
    "title": "Недостатньо інформації",
    "type": "complaint",
    "id": "fb2a86ac340c41159673b9c88bf737a8"
  }
}
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/fb2a86ac340c41159673b9c88bf737a8 HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 217
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "stopped",
    "decision": "Тендер скасовується замовником"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "stopped",
    "dateDecision": "2017-06-21T15:53:18.821113+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "decision": "Тендер скасовується замовником",
    "acceptance": true,
    "cancellationReason": "Тендер скасовується замовником",
    "dateCanceled": "2017-06-21T15:53:18.659643+03:00",
    "dateAccepted": "2017-06-21T15:53:17.762377+03:00",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:17.072064+03:00",
    "complaintID": "UA-2017-06-21-000001.6",
    "date": "2017-06-21T15:53:18.830188+03:00",
    "type": "complaint",
    "id": "fb2a86ac340c41159673b9c88bf737a8"
  }
}
Cancelling accepted complaint by Reviewer
PATCH /api/2.3/tenders/e7bf6cec15d549ef834232b159524866/complaints/3f9a271507cb4fbab55721b899a7d8a8 HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 217
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "stopped",
    "decision": "Тендер скасовується замовником"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "stopped",
    "dateDecision": "2017-06-21T15:53:18.335179+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "decision": "Тендер скасовується замовником",
    "acceptance": true,
    "dateCanceled": "2017-06-21T15:53:18.335215+03:00",
    "dateAccepted": "2017-06-21T15:53:17.608921+03:00",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:16.955523+03:00",
    "complaintID": "UA-2017-06-21-000001.5",
    "date": "2017-06-21T15:53:18.342849+03:00",
    "type": "complaint",
    "id": "3f9a271507cb4fbab55721b899a7d8a8"
  }
}

Tender Award Claims/Complaints

digraph G {
    rankdir=LR;
    {rank=same; mistaken; invalid; resolved; declined; stopped; cancelled;}
    subgraph cluster_complaint {
        label = "complaint";
        pending; accepted; stopping; satisfied;
    }
    subgraph cluster_claim {
        label = "claim";
        claim; answered;
    }
    claim -> answered;
    satisfied -> resolved;
    edge[style=dashed];
    draft -> {claim,pending};
    {draft,claim,answered} -> cancelled;
    pending -> stopping;
    accepted -> stopping;
    edge[style=bold];
    pending -> {accepted,invalid,stopped};
    stopping -> {stopped,invalid,declined,satisfied};
    accepted -> {declined,satisfied,stopped};
    {pending;stopping} -> mistaken;
}

Claim/Complaint Retrieval

Tender Award Claim/Complaint Retrieval

You can list all Tender Award Claims/Complaints:

GET /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "status": "satisfied",
      "dateDecision": "2017-06-21T15:53:12.499278+03:00",
      "documents": [
        {
          "author": "complaint_owner",
          "title": "Complaint_Attachement.pdf",
          "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-06-21T15:53:08.346179+03:00",
          "id": "c2b960bd63864644ac4b037b72248938",
          "dateModified": "2017-06-21T15:53:08.346231+03:00"
        },
        {
          "author": "aboveThresholdReviewers",
          "title": "ComplaintResolution.pdf",
          "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f?download=141223be6b82484e9a9d81c399766b09",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-06-21T15:53:12.249735+03:00",
          "id": "bd62cf6967734a8ab7f17cdc545b224f",
          "dateModified": "2017-06-21T15:53:12.249771+03:00"
        }
      ],
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "dateAccepted": "2017-06-21T15:53:11.308002+03:00",
      "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
      "complaintID": "UA-2017-06-21-000001.1",
      "date": "2017-06-21T15:53:12.511002+03:00",
      "acceptance": true,
      "type": "complaint",
      "id": "2e4cc336e8964ba5ada86f29c99e618f"
    },
    {
      "status": "invalid",
      "dateDecision": "2017-06-21T15:53:11.065922+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "acceptance": false,
      "dateSubmitted": "2017-06-21T15:53:08.645200+03:00",
      "complaintID": "UA-2017-06-21-000001.2",
      "date": "2017-06-21T15:53:11.077559+03:00",
      "title": "Недостатньо інформації",
      "type": "complaint",
      "id": "cb47bc83568d4518a49a9682e7c920fe"
    },
    {
      "status": "declined",
      "dateDecision": "2017-06-21T15:53:12.740807+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "acceptance": true,
      "dateAccepted": "2017-06-21T15:53:11.546899+03:00",
      "dateSubmitted": "2017-06-21T15:53:08.804455+03:00",
      "complaintID": "UA-2017-06-21-000001.3",
      "date": "2017-06-21T15:53:12.754327+03:00",
      "title": "Недостатньо інформації",
      "type": "complaint",
      "id": "2cf562eab1cd40488539d1e81b0ad1fe"
    },
    {
      "status": "accepted",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "acceptance": true,
      "dateAccepted": "2017-06-21T15:53:11.773874+03:00",
      "dateSubmitted": "2017-06-21T15:53:09.000608+03:00",
      "complaintID": "UA-2017-06-21-000001.4",
      "date": "2017-06-21T15:53:11.785603+03:00",
      "title": "Недостатньо інформації",
      "type": "complaint",
      "id": "2354b57545d94897819e1616a5022b00"
    },
    {
      "status": "stopped",
      "dateDecision": "2017-06-21T15:53:12.984005+03:00",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "title": "Недостатньо інформації",
      "decision": "Тендер скасовується замовником",
      "acceptance": true,
      "dateCanceled": "2017-06-21T15:53:12.984031+03:00",
      "dateAccepted": "2017-06-21T15:53:12.010192+03:00",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "dateSubmitted": "2017-06-21T15:53:09.183588+03:00",
      "complaintID": "UA-2017-06-21-000001.5",
      "date": "2017-06-21T15:53:12.995844+03:00",
      "type": "complaint",
      "id": "07b2843b36bd4938b9b4d1dd8d1fa990"
    },
    {
      "status": "answered",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "resolutionType": "resolved",
      "type": "claim",
      "title": "Недостатньо інформації",
      "satisfied": true,
      "dateAnswered": "2017-06-21T15:53:09.562568+03:00",
      "dateSubmitted": "2017-06-21T15:53:09.365755+03:00",
      "complaintID": "UA-2017-06-21-000001.6",
      "date": "2017-06-21T15:53:09.573439+03:00",
      "resolution": "Умови виправлено, вибір переможня буде розгянуто повторно",
      "id": "691ce2951a4645f2b2afbf99883c5fbb"
    },
    {
      "status": "answered",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "resolutionType": "invalid",
      "type": "claim",
      "title": "Недостатньо інформації",
      "satisfied": false,
      "dateAnswered": "2017-06-21T15:53:10.158033+03:00",
      "dateSubmitted": "2017-06-21T15:53:09.952089+03:00",
      "complaintID": "UA-2017-06-21-000001.7",
      "date": "2017-06-21T15:53:10.171432+03:00",
      "resolution": "Вимога не відповідає предмету закупівлі",
      "id": "a260ab0819a64be986486feed355803c"
    },
    {
      "status": "claim",
      "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
      "author": {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
          "id": "13313462",
          "uri": "http://sch10.edu.vn.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      },
      "title": "Недостатньо інформації",
      "dateSubmitted": "2017-06-21T15:53:10.824785+03:00",
      "complaintID": "UA-2017-06-21-000001.8",
      "date": "2017-06-21T15:53:10.836631+03:00",
      "type": "claim",
      "id": "1b4482bd1b1b49edb528a3da071c6fb4"
    }
  ]
}

And check individual complaint:

GET /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "satisfied",
    "dateDecision": "2017-06-21T15:53:12.499278+03:00",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:08.346179+03:00",
        "id": "c2b960bd63864644ac4b037b72248938",
        "dateModified": "2017-06-21T15:53:08.346231+03:00"
      },
      {
        "author": "aboveThresholdReviewers",
        "title": "ComplaintResolution.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f?download=141223be6b82484e9a9d81c399766b09",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:12.249735+03:00",
        "id": "bd62cf6967734a8ab7f17cdc545b224f",
        "dateModified": "2017-06-21T15:53:12.249771+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateAccepted": "2017-06-21T15:53:11.308002+03:00",
    "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:12.511002+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "2e4cc336e8964ba5ada86f29c99e618f"
  }
}

Claim Submission

If tender award is favoriting certain supplier, or in any other viable case, participants can submit Tender Award Claim.

Tender Award Claim Submission (with documents)

At first create a claim. Send POST request with bidder’s access token.

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints?acc_token=be8b0c4e87a74cd7b7a98eb52b57ae26 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1682
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f
{
  "access": {
    "token": "ad733eb9aa194f1bbd9337b3403c073a"
  },
  "data": {
    "status": "draft",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:07.952819+03:00",
    "type": "claim",
    "id": "2e4cc336e8964ba5ada86f29c99e618f"
  }
}

Then upload necessary documents:

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents?acc_token=ad733eb9aa194f1bbd9337b3403c073a HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 203
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy0761595241548$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938
{
  "data": {
    "author": "complaint_owner",
    "title": "Complaint_Attachement.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:08.346179+03:00",
    "id": "c2b960bd63864644ac4b037b72248938",
    "dateModified": "2017-06-21T15:53:08.346231+03:00"
  }
}

Submit tender award claim:

PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/1b4482bd1b1b49edb528a3da071c6fb4?acc_token=48751f79d26642a1809eab01db03aae4 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 29
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "claim"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "claim",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "dateSubmitted": "2017-06-21T15:53:10.824785+03:00",
    "complaintID": "UA-2017-06-21-000001.8",
    "date": "2017-06-21T15:53:10.836631+03:00",
    "type": "claim",
    "id": "1b4482bd1b1b49edb528a3da071c6fb4"
  }
}
Tender Award Claim Submission (without documents)

You can submit claim that does not need additional documents:

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints?acc_token=be8b0c4e87a74cd7b7a98eb52b57ae26 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1701
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "claim",
    "title": "Недостатньо інформації",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    }
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/691ce2951a4645f2b2afbf99883c5fbb
{
  "access": {
    "token": "0ac6aff02c5745a58e2da395970fb73d"
  },
  "data": {
    "status": "claim",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "dateSubmitted": "2017-06-21T15:53:09.365755+03:00",
    "complaintID": "UA-2017-06-21-000001.6",
    "date": "2017-06-21T15:53:09.365559+03:00",
    "type": "claim",
    "id": "691ce2951a4645f2b2afbf99883c5fbb"
  }
}

Complaint Submission

If tender award is favoriting certain supplier, or in any other viable case, participants can submit Tender Award Complaint.

Tender Award Complaint Submission (with documents)

At first create a complaint. Send POST request with bidder’s access token.

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints?acc_token=be8b0c4e87a74cd7b7a98eb52b57ae26 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1682
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f
{
  "access": {
    "token": "ad733eb9aa194f1bbd9337b3403c073a"
  },
  "data": {
    "status": "draft",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:07.952819+03:00",
    "type": "claim",
    "id": "2e4cc336e8964ba5ada86f29c99e618f"
  }
}

Then upload necessary documents:

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents?acc_token=ad733eb9aa194f1bbd9337b3403c073a HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 203
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy0761595241548$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938
{
  "data": {
    "author": "complaint_owner",
    "title": "Complaint_Attachement.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:08.346179+03:00",
    "id": "c2b960bd63864644ac4b037b72248938",
    "dateModified": "2017-06-21T15:53:08.346231+03:00"
  }
}

Submit tender award complaint:

PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f?acc_token=ad733eb9aa194f1bbd9337b3403c073a HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 31
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:08.346179+03:00",
        "id": "c2b960bd63864644ac4b037b72248938",
        "dateModified": "2017-06-21T15:53:08.346231+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:08.505248+03:00",
    "type": "complaint",
    "id": "2e4cc336e8964ba5ada86f29c99e618f"
  }
}
Tender Award Complaint Submission (without documents)

You can submit complaint that does not need additional documents:

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints?acc_token=be8b0c4e87a74cd7b7a98eb52b57ae26 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1703
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending",
    "title": "Недостатньо інформації",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    }
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/cb47bc83568d4518a49a9682e7c920fe
{
  "access": {
    "token": "b56e606d7afa4d8284739816ebf10869"
  },
  "data": {
    "status": "pending",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "dateSubmitted": "2017-06-21T15:53:08.645200+03:00",
    "complaintID": "UA-2017-06-21-000001.2",
    "date": "2017-06-21T15:53:08.645009+03:00",
    "type": "complaint",
    "id": "cb47bc83568d4518a49a9682e7c920fe"
  }
}

Claim’s Answer

Answer to resolved claim
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/691ce2951a4645f2b2afbf99883c5fbb?acc_token=6d598cd8e98748bc89119c83b5842719 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 387
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "answered",
    "resolutionType": "resolved",
    "resolution": "Умови виправлено, вибір переможня буде розгянуто повторно"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "answered",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "resolutionType": "resolved",
    "type": "claim",
    "title": "Недостатньо інформації",
    "dateAnswered": "2017-06-21T15:53:09.562568+03:00",
    "dateSubmitted": "2017-06-21T15:53:09.365755+03:00",
    "complaintID": "UA-2017-06-21-000001.6",
    "date": "2017-06-21T15:53:09.573439+03:00",
    "resolution": "Умови виправлено, вибір переможня буде розгянуто повторно",
    "id": "691ce2951a4645f2b2afbf99883c5fbb"
  }
}

Satisfied Claim

Satisfying resolution
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/691ce2951a4645f2b2afbf99883c5fbb?acc_token=0ac6aff02c5745a58e2da395970fb73d HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 29
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "satisfied": true
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "answered",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "resolutionType": "resolved",
    "type": "claim",
    "title": "Недостатньо інформації",
    "satisfied": true,
    "dateAnswered": "2017-06-21T15:53:09.562568+03:00",
    "dateSubmitted": "2017-06-21T15:53:09.365755+03:00",
    "complaintID": "UA-2017-06-21-000001.6",
    "date": "2017-06-21T15:53:09.573439+03:00",
    "resolution": "Умови виправлено, вибір переможня буде розгянуто повторно",
    "id": "691ce2951a4645f2b2afbf99883c5fbb"
  }
}
Unsatisfying resolution
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/a260ab0819a64be986486feed355803c?acc_token=8d2c0643070048ad893a89d1e3344d4e HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 30
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "satisfied": false
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "answered",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "resolutionType": "invalid",
    "type": "claim",
    "title": "Недостатньо інформації",
    "satisfied": false,
    "dateAnswered": "2017-06-21T15:53:10.158033+03:00",
    "dateSubmitted": "2017-06-21T15:53:09.952089+03:00",
    "complaintID": "UA-2017-06-21-000001.7",
    "date": "2017-06-21T15:53:10.171432+03:00",
    "resolution": "Вимога не відповідає предмету закупівлі",
    "id": "a260ab0819a64be986486feed355803c"
  }
}

Complaint Resolution

Rejecting Tender Award Complaint
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/cb47bc83568d4518a49a9682e7c920fe HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 31
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "invalid"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "invalid",
    "dateDecision": "2017-06-21T15:53:11.065922+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "acceptance": false,
    "dateSubmitted": "2017-06-21T15:53:08.645200+03:00",
    "complaintID": "UA-2017-06-21-000001.2",
    "date": "2017-06-21T15:53:11.077559+03:00",
    "title": "Недостатньо інформації",
    "type": "complaint",
    "id": "cb47bc83568d4518a49a9682e7c920fe"
  }
}
Accepting Tender Award Complaint
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 32
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "accepted"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "accepted",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:08.346179+03:00",
        "id": "c2b960bd63864644ac4b037b72248938",
        "dateModified": "2017-06-21T15:53:08.346231+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateAccepted": "2017-06-21T15:53:11.308002+03:00",
    "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:11.321906+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "2e4cc336e8964ba5ada86f29c99e618f"
  }
}
Submitting Tender Award Complaint Resolution

The Complaint Review Body uploads the resolution document:

POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 199
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy119779843287$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f
{
  "data": {
    "author": "aboveThresholdReviewers",
    "title": "ComplaintResolution.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f?download=141223be6b82484e9a9d81c399766b09",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-06-21T15:53:12.249735+03:00",
    "id": "bd62cf6967734a8ab7f17cdc545b224f",
    "dateModified": "2017-06-21T15:53:12.249771+03:00"
  }
}

And either resolves complaint:

PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 33
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "satisfied"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "satisfied",
    "dateDecision": "2017-06-21T15:53:12.499278+03:00",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:08.346179+03:00",
        "id": "c2b960bd63864644ac4b037b72248938",
        "dateModified": "2017-06-21T15:53:08.346231+03:00"
      },
      {
        "author": "aboveThresholdReviewers",
        "title": "ComplaintResolution.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f?download=141223be6b82484e9a9d81c399766b09",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:12.249735+03:00",
        "id": "bd62cf6967734a8ab7f17cdc545b224f",
        "dateModified": "2017-06-21T15:53:12.249771+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateAccepted": "2017-06-21T15:53:11.308002+03:00",
    "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:12.511002+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "2e4cc336e8964ba5ada86f29c99e618f"
  }
}

Or declines it:

PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2cf562eab1cd40488539d1e81b0ad1fe HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 32
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "declined"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "declined",
    "dateDecision": "2017-06-21T15:53:12.740807+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "acceptance": true,
    "dateAccepted": "2017-06-21T15:53:11.546899+03:00",
    "dateSubmitted": "2017-06-21T15:53:08.804455+03:00",
    "complaintID": "UA-2017-06-21-000001.3",
    "date": "2017-06-21T15:53:12.754327+03:00",
    "title": "Недостатньо інформації",
    "type": "complaint",
    "id": "2cf562eab1cd40488539d1e81b0ad1fe"
  }
}
Correcting problems

If tender award complaint was satisfied by the Complaint Review Body, then procuring entity has to correct problems.

One of the possible solutions is award cancellation:

PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6?acc_token=6d598cd8e98748bc89119c83b5842719 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 33
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "cancelled"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/ac71275647614fad88aef571bbd514b3
{
  "data": {
    "status": "cancelled",
    "eligible": true,
    "suppliers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-06-21T15:53:07.710521+03:00",
      "endDate": "2017-06-21T15:53:14.290582+03:00"
    },
    "bid_id": "f4ba7627d798415fa28cca5bc9171a0e",
    "value": {
      "currency": "UAH",
      "amount": 499.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2017-06-21T15:53:14.306638+03:00",
    "qualified": true,
    "complaints": [
      {
        "status": "resolved",
        "dateDecision": "2017-06-21T15:53:12.499278+03:00",
        "documents": [
          {
            "author": "complaint_owner",
            "title": "Complaint_Attachement.pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-06-21T15:53:08.346179+03:00",
            "id": "c2b960bd63864644ac4b037b72248938",
            "dateModified": "2017-06-21T15:53:08.346231+03:00"
          },
          {
            "author": "aboveThresholdReviewers",
            "title": "ComplaintResolution.pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f?download=141223be6b82484e9a9d81c399766b09",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-06-21T15:53:12.249735+03:00",
            "id": "bd62cf6967734a8ab7f17cdc545b224f",
            "dateModified": "2017-06-21T15:53:12.249771+03:00"
          }
        ],
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "title": "Недостатньо інформації",
        "tendererAction": "Умови виправлено, вибір переможня буде розгянуто повторно",
        "tendererActionDate": "2017-06-21T15:53:13.386090+03:00",
        "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
        "complaintID": "UA-2017-06-21-000001.1",
        "date": "2017-06-21T15:53:13.398140+03:00",
        "acceptance": true,
        "type": "complaint",
        "id": "2e4cc336e8964ba5ada86f29c99e618f",
        "dateAccepted": "2017-06-21T15:53:11.308002+03:00"
      },
      {
        "status": "invalid",
        "dateDecision": "2017-06-21T15:53:11.065922+03:00",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "acceptance": false,
        "dateSubmitted": "2017-06-21T15:53:08.645200+03:00",
        "complaintID": "UA-2017-06-21-000001.2",
        "date": "2017-06-21T15:53:11.077559+03:00",
        "title": "Недостатньо інформації",
        "type": "complaint",
        "id": "cb47bc83568d4518a49a9682e7c920fe"
      },
      {
        "status": "declined",
        "dateDecision": "2017-06-21T15:53:12.740807+03:00",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "acceptance": true,
        "dateAccepted": "2017-06-21T15:53:11.546899+03:00",
        "dateSubmitted": "2017-06-21T15:53:08.804455+03:00",
        "complaintID": "UA-2017-06-21-000001.3",
        "date": "2017-06-21T15:53:12.754327+03:00",
        "title": "Недостатньо інформації",
        "type": "complaint",
        "id": "2cf562eab1cd40488539d1e81b0ad1fe"
      },
      {
        "status": "stopped",
        "dateDecision": "2017-06-21T15:53:13.915516+03:00",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "title": "Недостатньо інформації",
        "decision": "Тендер скасовується замовником",
        "acceptance": true,
        "cancellationReason": "Тендер скасовується замовником",
        "dateCanceled": "2017-06-21T15:53:13.655902+03:00",
        "dateAccepted": "2017-06-21T15:53:11.773874+03:00",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "dateSubmitted": "2017-06-21T15:53:09.000608+03:00",
        "complaintID": "UA-2017-06-21-000001.4",
        "date": "2017-06-21T15:53:13.927963+03:00",
        "type": "complaint",
        "id": "2354b57545d94897819e1616a5022b00"
      },
      {
        "status": "stopped",
        "dateDecision": "2017-06-21T15:53:12.984005+03:00",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "title": "Недостатньо інформації",
        "decision": "Тендер скасовується замовником",
        "acceptance": true,
        "dateCanceled": "2017-06-21T15:53:12.984031+03:00",
        "dateAccepted": "2017-06-21T15:53:12.010192+03:00",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "dateSubmitted": "2017-06-21T15:53:09.183588+03:00",
        "complaintID": "UA-2017-06-21-000001.5",
        "date": "2017-06-21T15:53:12.995844+03:00",
        "type": "complaint",
        "id": "07b2843b36bd4938b9b4d1dd8d1fa990"
      },
      {
        "status": "answered",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "resolutionType": "resolved",
        "type": "claim",
        "title": "Недостатньо інформації",
        "satisfied": true,
        "dateAnswered": "2017-06-21T15:53:09.562568+03:00",
        "dateSubmitted": "2017-06-21T15:53:09.365755+03:00",
        "complaintID": "UA-2017-06-21-000001.6",
        "date": "2017-06-21T15:53:09.573439+03:00",
        "resolution": "Умови виправлено, вибір переможня буде розгянуто повторно",
        "id": "691ce2951a4645f2b2afbf99883c5fbb"
      },
      {
        "status": "answered",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "resolutionType": "invalid",
        "type": "claim",
        "title": "Недостатньо інформації",
        "satisfied": false,
        "dateAnswered": "2017-06-21T15:53:10.158033+03:00",
        "dateSubmitted": "2017-06-21T15:53:09.952089+03:00",
        "complaintID": "UA-2017-06-21-000001.7",
        "date": "2017-06-21T15:53:10.171432+03:00",
        "resolution": "Вимога не відповідає предмету закупівлі",
        "id": "a260ab0819a64be986486feed355803c"
      },
      {
        "status": "claim",
        "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "13313462",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "title": "Недостатньо інформації",
        "dateSubmitted": "2017-06-21T15:53:10.824785+03:00",
        "complaintID": "UA-2017-06-21-000001.8",
        "date": "2017-06-21T15:53:10.836631+03:00",
        "type": "claim",
        "id": "1b4482bd1b1b49edb528a3da071c6fb4"
      }
    ],
    "id": "bdda4791877a4e7ca0d3ba4f00fa28c6"
  }
}

After award cancellation system generates new award. Its location is present in the Location header of response.

Submitting Resolution Confirmation

When complaint has been successfully resolved, procuring entity submits resolution confirmation.

PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f?acc_token=6d598cd8e98748bc89119c83b5842719 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 361
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "resolved",
    "tendererAction": "Умови виправлено, вибір переможня буде розгянуто повторно"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "resolved",
    "dateDecision": "2017-06-21T15:53:12.499278+03:00",
    "documents": [
      {
        "author": "complaint_owner",
        "title": "Complaint_Attachement.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/c2b960bd63864644ac4b037b72248938?download=f08fe6ae1cc64651a4563cb0ceca2bc9",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:08.346179+03:00",
        "id": "c2b960bd63864644ac4b037b72248938",
        "dateModified": "2017-06-21T15:53:08.346231+03:00"
      },
      {
        "author": "aboveThresholdReviewers",
        "title": "ComplaintResolution.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2e4cc336e8964ba5ada86f29c99e618f/documents/bd62cf6967734a8ab7f17cdc545b224f?download=141223be6b82484e9a9d81c399766b09",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-06-21T15:53:12.249735+03:00",
        "id": "bd62cf6967734a8ab7f17cdc545b224f",
        "dateModified": "2017-06-21T15:53:12.249771+03:00"
      }
    ],
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "tendererAction": "Умови виправлено, вибір переможня буде розгянуто повторно",
    "tendererActionDate": "2017-06-21T15:53:13.386090+03:00",
    "dateSubmitted": "2017-06-21T15:53:08.495937+03:00",
    "complaintID": "UA-2017-06-21-000001.1",
    "date": "2017-06-21T15:53:13.398140+03:00",
    "acceptance": true,
    "type": "complaint",
    "id": "2e4cc336e8964ba5ada86f29c99e618f",
    "dateAccepted": "2017-06-21T15:53:11.308002+03:00"
  }
}
Submitting complaint to a new award
POST /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/ac71275647614fad88aef571bbd514b3/complaints?acc_token=be8b0c4e87a74cd7b7a98eb52b57ae26 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1682
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/ac71275647614fad88aef571bbd514b3/complaints/e0d3316d3964426faf7af49eb951b0e9
{
  "access": {
    "token": "e4ff1b704681416cb91469480880cfe8"
  },
  "data": {
    "status": "draft",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "complaintID": "UA-2017-06-21-000001.9",
    "date": "2017-06-21T15:53:14.873583+03:00",
    "type": "claim",
    "id": "e0d3316d3964426faf7af49eb951b0e9"
  }
}

Cancelling Tender Award Complaint

Cancelling not accepted complaint
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/ac71275647614fad88aef571bbd514b3/complaints/e0d3316d3964426faf7af49eb951b0e9?acc_token=e4ff1b704681416cb91469480880cfe8 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 150
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "cancelled",
    "cancellationReason": "Умови виправлено"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "cancelled",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Недостатньо інформації",
    "cancellationReason": "Умови виправлено",
    "dateCanceled": "2017-06-21T15:53:15.164360+03:00",
    "complaintID": "UA-2017-06-21-000001.9",
    "date": "2017-06-21T15:53:15.178750+03:00",
    "type": "claim",
    "id": "e0d3316d3964426faf7af49eb951b0e9"
  }
}
Cancelling accepted complaint by Complainant
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2354b57545d94897819e1616a5022b00?acc_token=96eb242c65e546cea06019706eba701a HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 228
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "stopping",
    "cancellationReason": "Тендер скасовується замовником"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "stopping",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "acceptance": true,
    "cancellationReason": "Тендер скасовується замовником",
    "dateCanceled": "2017-06-21T15:53:13.655902+03:00",
    "dateAccepted": "2017-06-21T15:53:11.773874+03:00",
    "dateSubmitted": "2017-06-21T15:53:09.000608+03:00",
    "complaintID": "UA-2017-06-21-000001.4",
    "date": "2017-06-21T15:53:13.669330+03:00",
    "title": "Недостатньо інформації",
    "type": "complaint",
    "id": "2354b57545d94897819e1616a5022b00"
  }
}
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/2354b57545d94897819e1616a5022b00 HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 217
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "stopped",
    "decision": "Тендер скасовується замовником"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "stopped",
    "dateDecision": "2017-06-21T15:53:13.915516+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "decision": "Тендер скасовується замовником",
    "acceptance": true,
    "cancellationReason": "Тендер скасовується замовником",
    "dateCanceled": "2017-06-21T15:53:13.655902+03:00",
    "dateAccepted": "2017-06-21T15:53:11.773874+03:00",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:09.000608+03:00",
    "complaintID": "UA-2017-06-21-000001.4",
    "date": "2017-06-21T15:53:13.927963+03:00",
    "type": "complaint",
    "id": "2354b57545d94897819e1616a5022b00"
  }
}
Cancelling accepted complaint by Reviewer
PATCH /api/2.3/tenders/9eaa2f3beb554dd5b22ba7ab74f89d1f/awards/bdda4791877a4e7ca0d3ba4f00fa28c6/complaints/07b2843b36bd4938b9b4d1dd8d1fa990 HTTP/1.0
Authorization: Basic cmV2aWV3ZXI6
Content-Length: 217
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "stopped",
    "decision": "Тендер скасовується замовником"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "stopped",
    "dateDecision": "2017-06-21T15:53:12.984005+03:00",
    "description": "Умови виставлені замовником не містять достатньо інформації, щоб заявка мала сенс.",
    "title": "Недостатньо інформації",
    "decision": "Тендер скасовується замовником",
    "acceptance": true,
    "dateCanceled": "2017-06-21T15:53:12.984031+03:00",
    "dateAccepted": "2017-06-21T15:53:12.010192+03:00",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "13313462",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "dateSubmitted": "2017-06-21T15:53:09.183588+03:00",
    "complaintID": "UA-2017-06-21-000001.5",
    "date": "2017-06-21T15:53:12.995844+03:00",
    "type": "complaint",
    "id": "07b2843b36bd4938b9b4d1dd8d1fa990"
  }
}

Roles

Complainant:dashed
Procuring entity:
 plain
Reviewer:bold
Chronograph:dotted

Statuses

draft:

Initial status

Complainant can submit claim, upload documents, cancel claim, and re-submit it.

claim:

Procuring entity can upload documents and answer to claim.

Complainant can cancel claim.

answered:

Complainant can cancel claim, upload documents, accept solution or escalate claim to complaint.

pending:

Reviewer can upload documents and review complaint.

Complainant can cancel claim.

invalid:

Terminal status

Complaint recognized as invalid.

declined:

Terminal status

Complaint recognized as declined.

resolved:

Terminal status

Complaint recognized as resolved.

cancelled:

Terminal status

Complaint cancelled by complainant.

Acceleration mode for sandbox

Acceleration mode was developed to enable procurement procedures testing in the sandbox and to reduce time frames of these procedures.

This mode will work only in the sandbox.

To enable acceleration mode you will need to:

  • add additional parameter mode with a value test;
  • set quick, accelerator=1440 as text value for procurementMethodDetails. This parameter will accelerate auction periods. The number 1440 shows that restrictions and time frames will be reduced in 1440 times.
  • set quick as a value for submissionMethodDetails. This parameter works only with mode = "test" and will speed up auction start date.

API Reference

Indices and tables