Sign in

Create an address

documented

Create a new address record for verification/provisioning.

POST addressesAddressesno 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.phaxio.com/v2/addresses" \
  -X POST \
  -u "{{PHAXIO_API_KEY}}:{{PHAXIO_SECRET}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"end_subscriber_type": "{{$end_subscriber_type}}", "company_name": "{{$company_name}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "phone_number": "{{$phone_number}}", "email_address": "{{$email_address}}", "vat_number": "{{$vat_number}}", "street": "{{$street}}", "street_number": "{{$street_number}}", "residence": "{{$residence}}", "floor": "{{$floor}}", "box": "{{$box}}", "postal_code": "{{$postal_code}}", "city": "{{$city}}", "state": "{{$state}}", "country": "{{$country}}", "service_usage": "{{$service_usage}}"}'