Statuses API

Each status has an image that is displayed to the end user. These images need be chosen from this list.

Attributes

name
The name of the status image
icon_set
The icon set this image belongs to
url
The image URL

List all status images

GET /api/v1/status-images
{
    "images": [
        {
            "url": "http://status.twilio.com/images/icons/fugue/broom.png",
            "icon_set": "fugue",
            "name": "broom"
        },
        {
            "url": "http://status.twilio.com/images/icons/fugue/flag.png",
            "icon_set": "fugue",
            "name": "flag"
        },
    ]
}