Sign in

Create terminal location

documented

Create a Terminal location.

POST /v1/terminal/locationsTerminalno 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.stripe.com/v1/terminal/locations" \
  -X POST \
  -H "Authorization: Bearer {{STRIPE_API_KEY}}" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "display_name={{$display_name}}" \
  -d "address[line1]={{$address_line1}}" \
  -d "address[line2]={{$address_line2}}" \
  -d "address[city]={{$address_city}}" \
  -d "address[postal_code]={{$address_postal_code}}" \
  -d "address[state]={{$address_state}}" \
  -d "address[country]={{$address_country}}" \
  -d "phone={{$phone}}" \
  -d "metadata[store_id]={{$metadata_store_id}}"
Create terminal location · Stripe · OpenIntegrations