Create port order
documentedCreate a new porting order.
POST port_ordersPortingno 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://api.phaxio.com/v2.1/port_orders" \
-X POST \
-u '{{PHAXIO_API_KEY}}:{{PHAXIO_SECRET}}' \
-H "Accept: application/json" \
-F 'port_numbers[]={{$port_numbers_1}}' \
-F 'port_numbers[]={{$port_numbers_2}}' \
-F 'contact_number={{$contact_number}}' \
-F 'contact_email={{$contact_email}}' \
-F 'account_identifier={{$account_identifier}}' \
-F 'name_on_account={{$name_on_account}}' \
-F 'name_of_business={{$name_of_business}}' \
-F 'provider_name={{$provider_name}}' \
-F 'port_type={{$port_type}}' \
-F 'port_out_pin={{$port_out_pin}}' \
-F 'has_bill={{$has_bill}}' \
-F 'billing_number={{$billing_number}}' \
-F 'billing_address1={{$billing_address1}}' \
-F 'billing_address2={{$billing_address2}}' \
-F 'billing_city={{$billing_city}}' \
-F 'billing_state={{$billing_state}}' \
-F 'billing_zip={{$billing_zip}}' \
-F 'legal_agreement={{$legal_agreement}}' \
-F 'esig={{$esig}}'