We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I notice the GET Service API is returning information we want to retrieve in our application that the current result struct does not retain. Ex:
curl -X GET 'https://api.opsgenie.com/v1/services/:service_id' \ -H 'Authorization: GenieKey ...' \ -H 'Content-Type: application/json' | json_pp { "data" : { "description" : "test", "id" : "${service_id}", "isExternal" : false, "links" : { "api" : "...", "web" : "..." }, "name" : "test", "tags" : [], "teamId" : "..." }, "requestId" : "...", "took" : 0.005 }
In my application I'd like to retrieve links property but the result struct doesn't decode this.
links
Current workaround:
Possible fix:
api
web
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I notice the GET Service API is returning information we want to retrieve in our application that the current result struct does not retain. Ex:
In my application I'd like to retrieve
links
property but the result struct doesn't decode this.Current workaround:
Possible fix:
api
andweb
that can decode this jsonThe text was updated successfully, but these errors were encountered: