curl --request POST \
--url https://rippletide-backend.azurewebsites.net/api/agents/{agentId}/chat \
--header 'Content-Type: application/json' \
--header 'x-session-id: <api-key>' \
--data '
{
"message": "<string>"
}
'{
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>"
}Create a session and send a message in one call
curl --request POST \
--url https://rippletide-backend.azurewebsites.net/api/agents/{agentId}/chat \
--header 'Content-Type: application/json' \
--header 'x-session-id: <api-key>' \
--data '
{
"message": "<string>"
}
'{
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>"
}