Submit an LOA

The final step in submitting a Port Order is to complete the Letter of Agency and submit that to Flowroute.

The data to submit is furnished by the LOA Request. This JSON blob contains 2 empty fields that you must complete. The rest of the content must remain unmodified.

Method

POST portorders/:portorder_id/loa

Additional Body Parameters

  • signature_name
    string Required

    First and last name of Flowroute customer signing the e-LOA and authorizing Flowroute to port the telephone numbers

  • signature_title
    string Required

    Title of the Flowroute customer signing the e-LOA

  • Response Format

    On success, the HTTP status code in the response header is 201 Accepted with an empty body.


    Errors

    On error, the header status code is an error code and the response body contains an array of error objects. For a list of standard HTTP error codes that the Flowroute API supports, see API Errors.

Example Request

                                POST /v2/portorders/41352/loa HTTP/1.1
Content-Type: application/json
Accept: application/json

{
  "data": {
    "attributes": {
      "numbers": ["4254454444", "4254454443", "4254454442"],
      "billing_name": "John Smith",
      "street": "200 3rd Ave S",
      "city": "Tacoma",
      "state": "WA",
      "zip": "90101",
      "country": "US",
      "provider": "ATT",
      "usage_type": "Business",
      "company": "Smith Processing",
      "signature_name": "Sam User",
      "signature_title": "Agent",
      "loa_copy": "Flowroute is selected by the customer for all local calls, intrastate toll calls, interstate toll calls, international calls and all text messaging (SMS/MMS) transmission to and from the numbers listed.
        Customer acknowledges they have read the LOA copy (https://flowroute.com/customer_loa.pdf) and authorizes Flowroute as the Agent of the End User to make changes on their behalf, including signing on their behalf."
    },
    "type": "loa"
  }
}
                                
                            

Example Request

                                
curl -X POST https://api.flowroute.com/v2/portorders/41352/loa -u accessKey:secretKey -d '{  "data": {"attributes": {"numbers": ["4254454444", "4254454443", "4254454442"], "billing_name": "John Smith","street": "200 3rd Ave S", "city": "Tacoma", "state": "WA", "zip": "90101", "country": "US", "provider": "ATT", "usage_type": "Business","company": "Smith Processing", "signature_name": "Sam User","signature_title": "Agent", "loa_copy": "Flowroute is selected by the customer for all local calls, intrastate toll calls, interstate toll calls, international calls and all text messaging (SMS/MMS) transmission to and from the numbers listed. Customer acknowledges they have read the LOA copy (https://flowroute.com/customer_loa.pdf) and authorizes Flowroute as the Agent of the End User to make changes on their behalf, including signing on their behalf."}, "type": "loa" }}' -H 'Content-Type':'application/json'
                                
                            

Success

                            201 Accepted
                        

Example Error

                            404 NOT FOUND
{
  "errors": [
    {
      "detail": "Could not find that resource on your account.",
      "id": "d66802f3-b56b-43da-8c55-e8c9ec3e0a6d",
      "status": 404
    }
  ]
}