curl -X GET "https://api.usegately.com/api/v1/forms/form_abc123/submissions?page=1&limit=20" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": [ { "id": "sub_001", "form_id": "form_abc123", "data": { "full_name": "John Doe", "email": "[email protected]", "message": "I have a question about your product..." }, "member_id": null, "metadata": { "ip": "192.168.1.1", "user_agent": "Mozilla/5.0...", "referrer": "https://example.com/contact" }, "created_at": "2024-01-20T15:30:00Z" }, { "id": "sub_002", "form_id": "form_abc123", "data": { "full_name": "Jane Smith", "email": "[email protected]", "message": "Great product! I'd like to learn more..." }, "member_id": "mem_xyz789", "metadata": { "ip": "192.168.1.2", "user_agent": "Mozilla/5.0...", "referrer": "https://example.com/pricing" }, "created_at": "2024-01-20T14:00:00Z" } ], "pagination": { "page": 1, "limit": 20, "total": 245, "total_pages": 13 } }
Retrieve submissions for a specific form
Show Submission properties
curl -X GET "https://api.usegately.com/api/v1/forms/form_abc123/submissions/export?format=csv" \ -H "Authorization: Bearer YOUR_API_KEY" \ -o submissions.csv
data
Was this page helpful?