Churpy_Etims Public API
Churpy_Etims Public API
curl -i -X GET \ https://docs-etims.churpy.co/_mock/openapi/branches \ -H 'X-API-Key: YOUR_API_KEY_HERE'
{ "pagination": { "total_count": 100, "total_pages": 10, "current_page": 1, "limit": 10, "has_next": true }, "data": [ { … } ] }
curl -i -X POST \ https://docs-etims.churpy.co/_mock/openapi/branches/user \ -H 'Content-Type: application/json' \ -H 'X-API-Key: YOUR_API_KEY_HERE' \ -d '{ "user_id": "123456", "user_name": "John Doe", "password": "123456" }'
{ "user_id": 123456, "user_name": "John Doe", "password": 123456 }
curl -i -X POST \ https://docs-etims.churpy.co/_mock/openapi/branches/insurance \ -H 'Content-Type: application/json' \ -H 'X-API-Key: YOUR_API_KEY_HERE' \ -d '{ "insurance_name": "Insurance Name", "insurance_code": 123456, "premium_rate": 10 }'
{ "insurance_name": "Insurance Name", "insurance_code": 123456, "premium_rate": 10, "id": "9oSPDfnIfU" }