Device Types

Device Types

Find All

GET /v1/meta/devicetypes

Device types are used to narrow down the targeting of your offers, campaigns, custom settings, etc.

cURL
curl --request GET 'https://api.eflow.team/v1/meta/devicetypes' \
--header 'X-Eflow-API-Key: <INSERT API KEY>'
Response
{
    "device_types": [
        {
            "device_type_id": 1,
            "name": "PC"
        },
        ...,
        {
            "device_type_id": 6,
            "name": "TV"
        }
    ]
}