Using the python requests library, I’m trying to create an event-type. Here’s the request I’m sending:
data = {
'category': 'Test Event',
'description': 'Test description.',
'event_type': 'firebase unit test amplitude'
}
requests.post('https://amplitude.com/api/2/taxonomy/event', auth=self.auth, data=data)
I’m receiving the error: `404 Client Error: Not Found for url: https://amplitude.com/api/2/taxonomy/event`, but I don’t see what I’m doing incorrectly in the documentation: https://developers.amplitude.com/docs/taxonomy-api#create-an-event-type.
Is it possible this action is limited to companies with the Govern add-on?