Get target channels

This API is used to bring all the channels informations of target groups.

API Endpoint example

https://eu.api.capillarytech.com/v3/targetGroups/channels

curl --location 'https://eu.api.capillarytech.com/v3/targetGroups/channels' \
--header 'Authorization: Basic dGpfY2FwaWxsYXJ5OjVjMTc' \
--header 'Cookie: _cfuvid=Hz5vxex9nxE.gNjvnTwDBDgfNLFEoicCUfrgNIeurLY-1750403636294-0.0.1.1-604800000'

Response Parameter

ParameterTypeDescription
dataArrayList of objects containing the main data payload.
data[].idIntegerUnique identifier for the record.
data[].nameStringName of the communication channel (e.g., "SMS", "EMAIL", "MOBILE PUSH").
errorsNullPlaceholder for error messages (null indicates no errors).
warningsNullPlaceholder for warning messages (null indicates no warnings).
{
    "data": [
        {
            "id": 1,
            "name": "SMS"
        },
        {
            "id": 2,
            "name": "EMAIL"
        },
        {
            "id": 3,
            "name": "MOBILE PUSH"
        }
    ],
    "errors": null,
    "warnings": null
}
Language
Credentials
Basic
base64
:
URL
Click Try It! to start a request and see the response here!