Mandates¶
GET Retrieve the published mandates of a purchasing round.
When pharmacies choose to publish the mandates from a purchasing process, the link to this publication is included in the quotation request. Users of PharmaPortal can also access a machine-readable version of this publication via an API. This is a REST API with a single endpoint and a single possible action.
Access
Available to PharmaPortal users.
Endpoint¶
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
rondeNaam |
path | string | yes | Name of the purchasing round. |
Authentication¶
This API requires no authentication and no additional headers.
Request¶
Requests are GET requests.
Response¶
| Code | Meaning |
|---|---|
200 |
Correct request. |
Example of a mandates response:
[
{
"atc": "N01BB02",
"stof_naam": "LIDOCAINE",
"toedieningsvorm": "CUTAAN",
"leveranciers":[
"BUFA\/SPRUYT-HILLEN"
],
"looptijden":[
"24"
],
"numPresentaties": "1",
"numDeelnemers": "1"
},
{
"atc": "N01BB02",
"stof_naam": "LIDOCAINE",
"toedieningsvorm": "PARENTERAAL",
"leveranciers":[
"BROCACEF ZIEKENHUISFARMACIE"
],
"looptijden":[
"12"
],
"numPresentaties": "1",
"numDeelnemers": "1"
}
]
Fields¶
| Field | Type | Description |
|---|---|---|
atc |
string | ATC code. |
stof_naam |
string | Name of the active substance. |
toedieningsvorm |
string | Administration form. |
leveranciers |
string[] | Mandated suppliers. |
looptijden |
string[] | Contract durations in months. |
numPresentaties |
string | Number of presentations. |
numDeelnemers |
string | Number of participants. |
Notes
Want to test your integration? Contact us in good time at info@zagis.nl. We will then prepare test data for you.