cURL
curl --request POST \ --url https://api.example.com/api/waitlist \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "email": "<string>" } '
{ "message": "You're on the list!" }
Sign up for the Encrata waitlist.
curl -X POST https://encrata.com/api/waitlist \ -H "Content-Type: application/json" \ -d '{"name": "John Doe", "email": "john@example.com"}'