📞
API Docs
  • Welcome
  • NUMBERS / ORDERING
    • List Areas
    • List Numbers
    • Order Numbers - No Cart
    • Delete Numbers
    • Vanity Tollfree - Search
    • Vanity Toll Free - Order
  • Shopping Cart Ordering
    • Add Number to Cart
    • List Numbers in Cart
    • Delete Number from Cart
    • Complete Order Cart
  • MY INVENTORY
    • List My Nmbers
    • List Call Flows
    • Change CallFlow
    • CDR Records
  • SMS/MMS
    • Send SMS
    • Send MMS
    • Receive SMS/MMS
    • Receive Delivery Receipts
  • Campaigns
    • Submit TollFree Campaign
  • CALL APIS
    • Calls
    • Set Incoming URL
    • Incoming Calls
    • Listing Calls
    • Making Calls
      • Example Code
        • Outbound to Tel#
        • Outbound to SIP Device
        • Example Responses
    • Modifying Live Calls
      • Examples
    • Recordings
      • Get List of Recordings
      • Delete a Recording
  • CALL API MARKUP
    • API Call Markup Language
      • Say
      • Dial
        • Number
        • Client
        • SIP
      • Play
      • Gather
      • Record
      • Hangup
      • Pause
      • Reject
      • Redirect
  • LOOKUPS
    • Carrier and CNAM
  • Number Portability
    • Validate Portability
    • Lookup Port Request
    • Submit Port Request
  • FAXING
    • Create Outbound Fax
    • Lookup Outbound Fax Status
    • List Faxes
    • Download File
Powered by GitBook
On this page
  1. Number Portability

Submit Port Request

Submit new port request

PreviousLookup Port RequestNextCreate Outbound Fax

Last updated 29 days ago

GET or POST Request

https://v1.api19.com/lnp/portability/submit

Send us a GET or POST request with your key and the numbers to validate.

You will need to include signature. We support signature-pad, data available:

We will validate the numbers and reply with all numbers are valid or errors, or reply with status ok and the port order id.

Argument

Required

Type

numbers

yes

comma list of numbers

key

yes

api key

portname

yes

internal port name

businessname

no

name of business

firstname

yes

first name contact information

lastname

yes

last name of contact information

address1

yes

12 s main street

address2

no

na

city

yes

city

state

yes

state

zip

yes

zip code

call_flow

no

call flow id number

signature

yes

signature base64

requested_due_date

yes

04/09/24

btn

yes

billing telephone number

account_number

yes

numbers account number

pin

no

porting pin

curl -X POST https://v1.api19.com/lnp/portability/submit \
 -d "numbers=3038821111,3035551212,3332221111" \
 -d 'key=your-key' \
 -d 'portname=internal port name' \
 -d 'businessname=businessname' \
 -d 'firstname=firstname' \
 -d 'lastname=lastname' \
 -d 'address1=address1' \
 -d 'address2=address2' \
 -d 'city=city' \
 -d 'state=state' \
 -d 'zip=zip' \
 -d 'call_flow=call_flow_id' \
 -d 'numbers=numbers' \
 -d 'signature=signature' \
 -d 'requested_due_date=04/09/2024' \
 -d 'btn=btn' \
 -d 'account_number=account_number' \
 -d 'pin=pin'
{
  "status": "ok",
  "order_id": 181182
}

OR

{
  "status": "error",
  "error": "companyname is blank, please correct"
}

OR

{
  "status": "error",
  "error": "Signature is blank, try again",
  "verbose": ""
}

OR

{
  "status": "error",
  "error": "ratecenter DIR ASST in state CO is not supported on DID 3035551212",
  "verbose": ""
}

OR

{
  "status": "error",
  "error": "cant create LNP request, error exception",
  "verbose": ""
}
https://pastebin.com/C44SRf7h