Tags API
In this documentation, you can find a description of the methods of the BrandWizard API in the Tags section.
Method GET/public/v1/review_tags/
- Description: Get a list of review tags
- Request Parameters:
| Parameter | Type | Required? | Description |
|
all
|
boolean
|
No | Get all tags without pagination: Yes/No |
| count | integer | No | Number of results for paginated return |
| folder_ids | array[integer] | No | Filter by folder IDs |
| ids | array[integer] | No | Filter by tag IDs |
| ordering | string | No | Which field to use when ordering the results |
| page | integer | No | Page number within the pagination result set |
| q | string | No | Search string |
| without_folder | boolean | No | Filter tags without folders: Yes/No |
- Response Fields:
| Field | Type | Description | ||
| count | integer | Number of results | ||
| next | string | Link to the next page | ||
| previous | string | Link to the previous page | ||
| results | id | integer | Tag ID | |
| user | id | integer | User ID who created the tag | |
| title | string | Tag name | ||
| created_at | string | Creation date | ||
| is_complex | boolean | Tag category indicator | ||
| keys | string | Enumeration of unique words from entered and related tags | ||
| keywords | string | Words entered by the user | ||
| sub_tags | id | integer | IDs of related tags selected by the user | |
| title | string | Related tags selected by the user | ||
| folder | id | integer | Tag group ID | |
| title | string | Tag group name | ||
| type | string | Private or public | ||
| is_aspect | boolean | Is autotag | ||