cURL
curl --request POST \ --url https://api.example.com/api/signup-pages \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "company_id": 1, "number_range_id": 2, "title": "SignUp Title", "daily_summary_at": "09:30:00", "summary_email": "[email protected]", "email_confirmation_required": true } '
{ "id": 1, "title": "SignUp Title", "unique_id": "fb3733bd-b05b-47ba-ab2b-a2d59e1d33f2", "company": { "id": 1, "name": "Acme Inc." }, "number_range": { "id": 2, "title": "Main Range" }, "daily_summary_at": "09:30:00", "summary_email": "[email protected]", "email_confirmation_required": true, "created_at": "2025-05-27 10:00:00", "updated_at": "2025-05-27 10:00:00" }
Enter your JWT token in the format 'Bearer '
1
2
"SignUp Title"
"09:30:00"
"[email protected]"
true
Signup page created
"fb3733bd-b05b-47ba-ab2b-a2d59e1d33f2"
Show child attributes
"2025-05-27 10:00:00"