This sandbox allows you to trigger AI Workflows from your own code via our API. Create an authentication token, compose your request, and execute it all from this interface.
https://api.teamday.ai/v1/execute
{
"organizationId": "your-org-id",
"context": [
{
"role": "system",
"content": "Create new file hello from curl, and write poem there",
"id": "unique-message-id"
}
]
}
fetch('https://api.teamday.ai/v1/execute', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer your-token'
},
body: {
"organizationId": "your-org-id",
"context": [
{
"role": "system",
"content": "Create new file hello from curl, and write poem there",
"id": "unique-message-id"
}
]
}
})