Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://form-fill-agent-backend.artpark.ai/api/v1/data/{agent_id}/{conversation_id}
import requests url = "https://form-fill-agent-backend.artpark.ai/api/v1/data/{agent_id}/{conversation_id}" response = requests.get(url) print(response.text)
{ "form_data": {}, "form_status": {} }
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
Get form data for a specific conversation.
Successful Response
data.json for one conversation, as stored (GET /data/{a}/{c}).
data.json
GET /data/{a}/{c}
Empty {} when the conversation has no data.json yet.
{}