Get product pricing
documentedRetrieve pricing for a product.
GET /api/v2/store/product/{product_id}/pricingStoreno 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://{{$base_url}}/api/v2/store/products/{{$product_id}}/pricing" \
-X GET \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
# Sources: WHMCS Beta API documentation (endpoint patterns and base URL format) — https://api-beta.developers.whmcs.com/
# Example pattern reference: get/store/products/{product_id}/addons and analogous pricing endpoints (https://example.com/api/v2/store/products/{product_id}/addons)
# Authentication notes: WHMCS API credentials and OAuth support (https://developers.whmcs.com/api/authentication/ and https://developers.whmcs.com/oauth/)