Receiving List of Tags
Last updated: 1 October 2024
The api/subscribers/tags
method is used to request all tags assigned automatically or manually.
Calling the api/subscribers/tags
Method
To call the api/subscribers/tags
method, send an empty GET request to the URL https://app.edna.io/api/subscribers/tags
Request Example
curl --location --request GET 'http://app.edna.io/api/subscribers/tags' \
--header 'x-api-key: super_secret_key'
Response Example
[
{
"name": "Male"
},
{
"name": "Female"
},
{
"name": "Gender is not specified"
},
{
"name": "<18"
},
{
"name": "18-25"
},
{
"name": "26-30"
},
{
"name": "31-35"
},
{
"name": "36-40"
},
{
"name": "40-45"
},
{
"name": "45-50"
},
{
"name": ">50"
},
{
"name": "Age is not specified"
},
{
"name": "Black list"
},
{
"name": "Created by system"
},
{
"name": "Created automatically"
}
]