For the complete documentation index, see llms.txt. This page is also available as Markdown.

Complete Order Cart

Order all numbers in your cart

GET or POST Request

https://v1.api19.com/dids/cart/complete

This will close out your cart and return success/fails.

The call flow and fax flow options are not required, if you omit it, the system will use your default call flow.

Argument

Required

Type

call_flow_id

no

int

fax_flow_id

no

int

key

yes

api_key

curl -X POST https://v1.api19.com/dids/cart/complete \
 -d 'call_flow_id=call_flow_id' \
 -d 'key=api_key'
curl https://v1.api19.com/dids/cart/complete&callflow=callflowid&key=apitoken
{
    "status": "ok",
    "data": {
        "success": [
            7208017777
        ],
        "errors": [
            7209998888
        ],
        "verbose_errors": [
            "7209998888 - failed p data check"
        ]
    }
} 

Last updated