Create location
documentedCreates a location.
POST /v2/locationsLocationsno 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://connect.squareup.com/v2/locations" \
-X POST \
-H "Square-Version: 2026-01-22" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-d '{"location": {"name": "{{$location_name}}", "description": "{{$location_description}}", "address": {"address_line_1": "{{$address_line_1}}", "locality": "{{$locality}}", "administrative_district_level_1": "{{$administrative_district_level_1}}", "postal_code": "{{$postal_code}}"}}}'