Used to get a list of the tags that have been reported in your project, for example "home_page", "news_page", "checkout_btn", etc.
For more information on attributes and tags review our dedicated guide.
{
"apptoken": "YOUR_APPTOKEN",
"order": [
"id ASC"
],
"select": [
"id",
"title"
],
"condition": [
[
"id",
">",
"3113692"
]
],
"limit": "50",
"offset": "0"
}Your App token
Order the results in either ascending or descending order based on any of the attributes, eg. ["id ASC"] or ["id DESC"]
Select what attributes to return, eg. ["id", "title"]
Filter the results based on some criteria, eg. [ ["id", ">", 3113692] ]
Used with offset for pagination, eg. "limit": 50, "offset": 0 returns a max of 50 results starting at position 0
Used with limit for pagination
200
{
"success": "True",
"code": "200",
"data": [
{
"id": "42526382",
"project_id": "PROJECT_ID",
"title": "abandoned_cart",
"attribute_client": "0",
"attribute_profile": "1",
"type": "0",
"is_deleted": "0"
}
]
}400
{
"success": "False",
"code": "400",
"message": "General error information",
"errors": [
{
"text": [
"Detailed information about the specific error"
]
}
]
}