Sign in

Update payment

documented

Updates a payment object.

PUT /v2/payments/{payment_id}Paymentsno 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://connect.squareup.com/v2/payments/{{$payment_id}}" \
  -X PUT \
  -H "Square-Version: 2026-01-22" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -d '{"idempotency_key": "{{$idempotency_key}}", "payment": {"amount_money": {"amount": {{$amount_money_amount}}, "currency": "{{$amount_money_currency}}"}, "tip_money": {"amount": {{$tip_money_amount}}, "currency": "{{$tip_money_currency}}"}, "version_token": "{{$version_token}}" }}'
Update payment · Square · OpenIntegrations