List promotions by coupon
documentedList promotions associated with a coupon.
GET /promotions/by_couponPromotionsno 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)
Note: Official Thinkific Admin API base URL is https://api.thinkific.com/api/public/v1 and the promotions/by_coupon endpoint is a GET under that base URL; typical usage requires either OAuth Bearer token or API key headers. See Thinkific Admin API docs for base URL and endpoint details. ([developers.thinkific.com](https://developers.thinkific.com/api/api-documentation))
npx -y keychains@latest curl "https://api.thinkific.com/api/public/v1/promotions/by_coupon?product_id={{$product_id}}&coupon_code={{$coupon_code}}" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json"