Connection Types

Connection Types

Find All

GET /v1/meta/connectiontypes

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

They are limited to wifi and mobile.

cURL
curl --request GET 'https://api.eflow.team/v1/meta/connectiontypes' \
--header 'X-Eflow-API-Key: <INSERT API KEY>'
Response
{
    "connection_types": [
        {
            "connection_type_id": 1,
            "name": "wifi"
        },
        {
            "connection_type_id": 2,
            "name": "mobile"
        }
    ]
}