I have code that tries to create timeline events. Before creation, it checks if an event with the necessary ID already exists with
`GET https://api.hubapi.com/crm/v3/timeline/[EVENT-TYPE-ID]/[EVENT-ID]`
which gives me “404 Not Found” as a response.
So next, I try to create the timeline event with
`POST https://api.hubapi.com/integrations/v1/[CONTACT-ID]/timeline/event`
to which Hubspot replies:
`409 Conflict {“status”:”error”,”message”:”An event already exists with that id ([EVENT-ID]).`
How can that be? And how can I fix this?