API Explorer
Test API endpoints and explore request/response formats. Enter your API key to generate ready-to-use cURL commands.
Your API key is only used locally to generate cURL commands. It is never sent to our servers.
POST
/v1/sessionsCreate a new financial statement collection session.
cURL Command
bash
curl -X POST https://api.ezy-forms.com.au/v1/sessions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "form_type": "financial_statement", "customer_email": "[email protected]", "customer_name": "John Smith", "reference_id": "case-12345", "webhook_url": "https://yourapp.com/webhooks"}'Request Body
{
"form_type": "financial_statement",
"customer_email": "[email protected]",
"customer_name": "John Smith",
"reference_id": "case-12345",
"webhook_url": "https://yourapp.com/webhooks"
}Interactive Testing
This explorer shows example requests and responses. To make actual API calls, copy the cURL command and run it in your terminal, or use our Swagger UI for interactive testing.