Checkins

CREATE checkin POST /api/v2/betas/{beta_id}/checkins

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.

This call checks in a tester by email address. If you want to check in a tester by id, see Tester Check-in

Request

    
{
  "checkin": {
    "email": "leonard@bigbangtheory.com"
  }
}
    
  

Or, using curl:

    
      curl -u api_key: https://api.prefinery.com/api/v2/betas/1/checkins.json \
        -d "checkin[email]"="leonard@bigbangtheory.com"
    
  

Response

    
HTTP/1.1 202 Accepted