-
Notifications
You must be signed in to change notification settings - Fork 2k
Description
Please make sure you have searched for information in the following guides.
- Search the issues already opened: https://github.com/GoogleCloudPlatform/google-cloud-node/issues
- Search StackOverflow: http://stackoverflow.com/questions/tagged/google-cloud-platform+node.js
- Check our Troubleshooting guide: https://github.com/googleapis/google-cloud-node/blob/main/docs/troubleshooting.md
- Check our FAQ: https://github.com/googleapis/google-cloud-node/blob/main/docs/faq.md
- Check our libraries HOW-TO: https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md
- Check out our authentication guide: https://github.com/googleapis/google-auth-library-nodejs
- Check out handwritten samples for many of our APIs: https://github.com/GoogleCloudPlatform/nodejs-docs-samples
A screenshot that you have tested with "Try this API".
We have encountered an issue with one of the Google Tag Manager API methods, which suddenly appears to be experiencing a 500 “Experienced an internal error” outage. Since there is no real public GTM API support team like Google Analytics, we appreciate it if you could direct us to the appropriate support channel to address this matter.
Link to the code that reproduces this issue. A link to a public Github Repository or gist with a minimal reproduction.
https://support.google.com/tagmanager/thread/314249307/tag-manager-api-create-trigger-500-error
A step-by-step description of how to reproduce the issue, based on the linked reproduction.
APIs Explorer:
-
Create Triggers: https://developers.google.com/tag-platform/tag-manager/api/v2/reference/accounts/containers/workspaces/triggers/create
-
Attached is a simple request as an example:
POST https://tagmanager.googleapis.com/tagmanager/v2/accounts/{{account_id}}/containers/{{container_id}}/workspaces/2/triggers?key=[YOUR_API_KEY] HTTP/1.1
Authorization: Bearer [YOUR_ACCESS_TOKEN]
Accept: application/json
Content-Type: application/json
{
"name": "Test trigger with filters",
"type": "pageview",
"filter": [
{
"parameter": [
{
"type": "boolean",
"value": "true",
"key": "ignore_case"
},
{
"type": "template",
"key": "arg1",
"value": "thank"
}
],
"type": "matchRegex"
}
]
}
A clear and concise description of what the bug is, and what you expected to happen.
When creating a GTM trigger via the API, the 500 “Experienced an internal error” shows.
A clear and concise description WHY you expect this behavior, i.e., was it a recent change, there is documentation that points to this behavior, etc. **
It is usually no issue, but this 500 error suddenly happened last week.
