Get feedback by feedback ID

Important note This Map Feedback API is unavailable on a Freemium or Pay As You Grow (PAYG) basis.

Purpose

This call can be used to get feedback data for a given ID.

How to request data

HTTP method: GET

  • Constants and parameters enclosed in curly brackets { } must be replaced with their values.
  • The generic URL format is as follows.

URL request format

post
URL request format
https://{baseURL}/maps/orbis/feedback/feedback-id/{feedbackId}?key={API-key}&apiVersion={version}

Response data

Response codes

HTTP Code

Message

Description

Sample response

200

OK

Feedback details retrieved successfully

{
"feedback": {
"feedbackId": "7049aa04-91bd-4ad3-8085-bd8bec318905",
"referenceId": "123001",
"geometry": "POINT(19.4560 51.7592)",
"kind": "Example_Kind",
"data": "ewogICJ0aXRsZSI6ICJQcm9ibGVtIG9uIE1hcCIsCiAgImNyZWF0ZWREYXRlIjogIjIwMjUtMDYtMDYiLAogICJ1c2VyQ29tbWVudCI6ICJUaGlzIHJvYWQgc2hvdWxkIGJlIGRlbGV0ZWQuIiwKICAibG9jYXRpb24iOiAiUE9JTlQoMTkuNDU2MCA1MS43NTkyKSIsCn0=",
"severity": 1,
"labels": [
"Label1"
],
"status": "ISSUE_STATUS_NEW",
"statusReason": "",
"products": [
{
"name": "Product A",
"version": "2025_001"
},
{
"name": "Product B",
"version": "2025_002"
}
],
"createdAt": "2025-06-06T12:07:41.114166",
"updatedAt": "2025-06-06T12:07:41.114166"
}
}

403

Forbidden

Access denied

{
"detailedError": {
"code": "Forbidden",
"message": "You are not allowed to access this endpoint"
}
}

404

Not found

Feedback not found

{
"errorText": "Feedback with feedback id=7049aa04-91bd-4ad3-8085-bd8bec318905 not found",
"detailedError": {
"code": "NOT_FOUND",
"message": "Feedback with feedback id=7049aa04-91bd-4ad3-8085-bd8bec318905 not found"
},
"httpStatusCode": 404
}

500

Internal Server Error

Internal server error

{
"errorText": "An unexpected error has occurred. Please try again later.",
"detailedError": {
"code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error has occurred. Please try again later."
},
"httpStatusCode": 500
}