Create a new checkin

When a tester checks in their status will be set to active. Checking in a tester who has created an account on your site is a great way to identify testers who have actually accepted the invitation to your beta. Also, checking in a tester each time they log into your site is a great way to track visits and retention over time.

If you want to check in a tester by id, see Tester Check-in

POST /api/v1/betas/{beta_id}/checkins.xml

Request

<?xml version="1.0" encoding="UTF-8"?>
<checkin>
  <email>justin@prefinery.com</email>
</checkin>

Or, using curl

curl --header "Content-Type: text/xml" --data "{the block of xml above}" http://sample.prefinery.com/api/v1/betas/1/checkins.xml?api_key=a6c4aae2f1fc0e147272079ea95b219e26f6beaa

Response

HTTP/1.1 200 OK