Query DID's

Get All DIDs

Retrieve all DIDs currently associated with the given API key.

curl "https://sms.accentvoice.com/api/v2/dids?key=<API Key>"

This request returns a JSON payload of this structure:

{
    "success": true,
    "error": false,
    "status_code": "DID-LIST",
    "message": "DID listing for David Lemcoe Jr..",
    "data": {
        "dids": [{
                "did": "17724447849",
                "activated": {
                    "date": "2019-05-09 15:41:44.000000",
                    "timezone_type": 3,
                    "timezone": "America/New_York"
                }
            },
            {
                "did": "19412003696",
                "activated": {
                    "date": "2019-05-09 15:41:56.000000",
                    "timezone_type": 3,
                    "timezone": "America/New_York"
                }
            }
        ]
    }
}

This endpoint retrieves all DIDs for a given API key.

HTTP Request

GET https://sms.accentvoice.com/api/v2/dids?key=<API Key>

Query Parameters

None

Remember: For API GET requests, your API Key must be provided as a URL parameter!

Last updated