Create enrollment in bundle
documentedCreate an enrollment for a bundle.
POST /bundles/{id}/enrollmentsEnrollmentsno 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.thinkific.com/api/public/v1/bundles/{{$bundle_id}}/enrollments" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"user_id": {{$user_id}}, "activated_at": "{{$activated_at}}", "expiry_date": "{{$expiry_date}}"}'