Sign up new user
documentedCreate a new Campayn user via the API (requires proper authorization for the signup action).
POST /signupSignupno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://campayn.com/api/v1/signup" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: TRUEREST apikey={{CAMPAYN_API_KEY}}" \
-d '{"email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "password": "{{$password}}", "subdomain": "{{$subdomain}}", "site": "{{$site}}"}'