paypal
Installation
SKILL.md
PayPal
Manage orders, payments, refunds, and payouts.
Environment Variables
PAYPAL_CLIENT_ID- Client IDPAYPAL_CLIENT_SECRET- Client secret
Get access token
curl -s -X POST "https://api-m.paypal.com/v1/oauth2/token" \
-u "$PAYPAL_CLIENT_ID:$PAYPAL_CLIENT_SECRET" \
-d "grant_type=client_credentials" | jq '{access_token, expires_in}'