cURL
curl --request POST \ --url https://api.findly.ai/v1/conversations \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "question": "How much stock did we sell last week?", "propertyId": "<string>", "workspaceName": "my-workspace" } '
{ "conversationId": "xxx-yyy-zzz", "publicUrl": "https://dashboard/findly.ai" }
Programmatically ask Findly a question and get the newly created conversation ID and URL
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The question you want Findly to answer
"How much stock did we sell last week?"
Which data source to query, by property ID
Optionally specify workspace name, otherwise default will be used
"my-workspace"
Success
"xxx-yyy-zzz"
"https://dashboard/findly.ai"