Get feedback status by feedback ID

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

Purpose

This call returns the status of the feedback for a given feedback 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}/status?key={API-key}&apiVersion={version}

Response data

Response codes

HTTP Code

Message

Description

Sample response

200

OK

Feedback status retrieved successfully

{
"feedbackStatusInformation": {
"feedbackId": "7049aa04-91bd-4ad3-8085-bd8bec318905",
"referenceId": "123001",
"status": "ISSUE_STATUS_IN_PROGRESS",
"statusReason": "",
"createdAt": "2025-06-06T12:07:41.114166",
"updatedAt": "2025-06-06T12:14:48.189493"
}
}

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
}