Sign in

Bulk update vendors

documented

Updates multiple Vendor objects.

PUT /v2/vendors/bulk-updateVendorsno 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/vendors/bulk-update" \
  -X PUT \
  -H "Square-Version: 2026-01-22" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"vendors": {"{{$vendor_id_1}}": {"note": "{{$note_1}}", "version": {{$version_1}}, "status": "{{$status_1}}"}, "{{$vendor_id_2}}": {"address": {"address_line_1": "{{$address_line_1}}", "locality": "{{$locality}}", "administrative_district_level_1": "{{$administrative_district_level_1}}", "postal_code": "{{$postal_code}}", "country": "{{$country_2}}"}, "version": {{$version_2}}, "status": "{{$status_2}}"}}}'
Bulk update vendors · Square · OpenIntegrations