03 Feb 2023 07:54 PM
What's the permission needed to call the following API?
POST https://{HOST_URL}/api/config/v1/notifications/{notificationId}
I can not find it in Doc.
Solved! Go to Solution.
03 Feb 2023 08:46 PM
I believe this is a deprecated API, and was replaced by schemas/object API.
So I would recommend you to check for these:
https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings/schemas/get-schema
https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings/objects/post-object
03 Feb 2023 09:01 PM
Thank you so much Dannemca for your prompt reply.
That's a good info. But before we can migrate our API set from V1 to V2, our client will still need to use the current implementation which is using V1 API. Is this section correct for the old API?
Authentication
To execute this request, you need an access token with settings.write scope.
04 Feb 2023 11:35 AM
You can get the data you want at:
https://www.dynatrace.com/support/help/dynatrace-api/configuration-api/notifications-api
Another way I use to quickly check these issues are to access the Swagger interface and check it out there (screenshot is just an example, might not be your usecase):
04 Feb 2023 09:37 PM
Thanks Antonio so much for your help.