const options = {
method: 'POST',
headers: {'X-Kinetic-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({startedAt: '2023-11-07T05:31:56Z'})
};
fetch('https://api.example.com/api/executions/{execution_uuid}/started', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));