curl --request GET \
--url https://api.pricenow.dev/api/orders/{orderId}/notices \
--header 'accept-language: <accept-language>' \
--header 'pratiq-channel-uuid: <pratiq-channel-uuid>'{
"data": {
"notices": [
{
"id": "<string>",
"level": "info",
"type": "TICKETING_ERROR_REPORT_TO_STAFF"
}
],
"isComplete": true
}
}Get customer notices for an order. This endpoint is meant to be polled by the client for ~1min while isComplete is false.
curl --request GET \
--url https://api.pricenow.dev/api/orders/{orderId}/notices \
--header 'accept-language: <accept-language>' \
--header 'pratiq-channel-uuid: <pratiq-channel-uuid>'{
"data": {
"notices": [
{
"id": "<string>",
"level": "info",
"type": "TICKETING_ERROR_REPORT_TO_STAFF"
}
],
"isComplete": true
}
}