Create tester
documentedCreate a new tester for a particular beta.
POST /api/v2/betas/{beta_id}/testers.jsonBetasno 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://api.prefinery.com/api/v2/betas/{{$beta_id}}/testers.json" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"email": "{{$email}}", "status": "{{$status}}", "invitation_code": "{{$invitation_code}}", "referrer_id": "{{$referrer_id}}", "groups": "{{$groups}}", "profile": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "employer": "{{$employer}}", "jobtitle": "{{$jobtitle}}", "address_line1": "{{$address_line1}}", "address_line2": "{{$address_line2}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}", "locale": "{{$locale}}", "telephone": "{{$telephone}}", "gender": "{{$gender}}", "age": "{{$age}}", "facebook_username": "{{$facebook_username}}", "twitter_username": "{{$twitter_username}}", "linkedin_username": "{{$linkedin_username}}", "user_agent": "{{$user_agent}}", "browser_name": "{{$browser_name}}", "browser_version": "{{$browser_version}}", "os_name": "{{$os_name}}", "os_version": "{{$os_version}}", "ip": "{{$ip}}", "custom_var1": "{{$custom_var1}}", "custom_var2": "{{$custom_var2}}", "custom_var3": "{{$custom_var3}}" } }'"