- Public Supplier Requests Get
Fetch one supplier request by its public id (its UUID).
- Mock serverhttps://docs.mercura.ai/_mock/openapi/supplier-requests/{supplier_request_id}
- https://docs.mercura.ai/api/public/v1https://docs.mercura.ai/api/public/v1/supplier-requests/{supplier_request_id}
- Productionhttps://prod-euapi.mercura.ai/api/public/v1/supplier-requests/{supplier_request_id}
curl -i -X GET \
'https://docs.mercura.ai/_mock/openapi/supplier-requests/{supplier_request_id}' \
-H 'authorization: string'Successful Response
Public id — the supplier request's UUID.
Lifecycle state of a supplier request.
A translated subset of the internal SupplierRequestStatus; the mapping lives in supplier_requests.service._SUPPLIER_REQUEST_STATUS_MAP and a test asserts it covers every internal value. New values may be added in a MINOR release — the OpenAPI enum is closed, so consumers should treat an unknown value defensively rather than fail strict validation.
Backing tender id when the request is tender-scoped — resolve via GET /tenders/{tender_id}. Null when project-scoped.
Backing project id when the request is project-scoped — resolve via GET /projects/{project_id}. Null when tender-scoped.
Supplier reference only — resolve full details via GET /suppliers/{supplier_id}. Null when no supplier is set.
Supplier display name (convenience mirror of the reference).
Recipient email addresses the request was sent to.
[ "angebot@nordlicht-leuchten.de" ]
Email of the Mercura user who sent the request. Null when unknown.
True when at least one offered line was accepted into the final tender.
Number of offered lines accepted into the final tender.
[ { "article_number": "LEU-48210", "candidate_status": "ACCEPTED", "description": "LED-Einbauleuchte 4000K, 24W", "id": "5521", "item_type": "ARTICLE", "line_total": "4620.00", "manufacturer_article_number": "NL-LED-4000K", "position_id": "90112", "quantity": 120, "selected": true, "unit": "Stk", "unit_price": "38.50" }, { "article_number": "LEU-48477", "candidate_status": "PENDING", "description": "LED-Panel 62x62, 36W", "id": "5522", "item_type": "ARTICLE", "line_total": "2880.00", "position_id": "90113", "quantity": 40, "selected": false, "unit": "Stk", "unit_price": "72.00" } ]
{ "awarded_line_count": 1, "created_at": "2026-07-14T09:12:00Z", "id": "b3f1c2a4-6d9e-4f21-a0b7-2c5e8d1f9a44", "is_awarded": true, "offered_lines": [ { … }, { … } ], "sender_email": "einkauf@grosshandel.de", "status": "OFFER_RECEIVED", "supplier_emails": [ "angebot@nordlicht-leuchten.de" ], "supplier_id": "SUP-3001", "supplier_name": "Nordlicht Leuchten GmbH", "tender_id": "12345", "updated_at": "2026-07-16T14:05:11Z" }