Sign in

Reauthorize authorized payment

documented

Reauthorize an existing authorized payment.

POST /v2/payments/authorizations/{authorization_id}/reauthorizePaymentsno implementation yet0 runs
No 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-m.paypal.com/v2/payments/authorizations/{{$authorization_id}}/reauthorize" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "PayPal-Request-Id: {{$paypal_request_id}}" \
  -d '{"amount": {"currency_code": "{{$currency_code}}", "value": "{{$amount_value}}"}}'
Reauthorize authorized payment · PayPal · OpenIntegrations