Using the API to Retrieve Evaluation Data
The Checklick API allows you to retrieve evaluation data programmatically. Here's how: 1. Ensure you have a valid API key (see "Managing API Keys"). 2. Use the endpoint GET /v2/evaluations to fetch evaluation data. Example: curl -X GET https://api.checklick.com/v2/evaluations -H "Authorization: Bearer YOUR_API_KEY" -H "Organization-Id: YOUR_ORG_ID". 3. Filter results using query parameters (e.g., ?person_id=123 for a specific person or ?checklist_id=456 for a checklist). 4. The response includes evaluation details like person, checklist, level, skill, and status in JSON format. Quick tips: * Check the API documentation at https://api.checklick.com/docs for full endpoint details. * Use pagination (?page=2) for large datasets. * Ensure HTTPS and correct headers to avoid errors.