You can get a list of all the tags of a campaign by using the following endpoint.
{warning} Don't forget that all endpoints documented here need to be prefixed with
api/1.0/campaigns/{campaign.id}/
.
Method | URI | Headers |
---|---|---|
GET/HEAD | tags |
Default |
The list of returned tags can be filtered. The available filters are available here: API filters.
{
"data": [
{
"id": 1,
"name": "Religion",
"entry": "\n<p>Lorem Ipsum.</p>\n",
"image": "{path}",
"image_full": "{url}",
"image_thumb": "{url}",
"has_custom_image": false,
"is_private": true,
"entity_id": 11,
"tags": [],
"created_at": "2019-01-30T00:01:44.000000Z",
"created_by": 1,
"updated_at": "2019-08-29T13:48:54.000000Z",
"updated_by": 1,
"type": "Lore",
"tag_id": null,
"colour": "green",
"entities": [
352,
440
]
}
]
}
To get the details of a single tag, use the following endpoint.
Method | URI | Headers |
---|---|---|
GET/HEAD | tags/{tag.id} |
Default |
{
"data": {
"id": 1,
"name": "Religion",
"entry": "\n<p>Lorem Ipsum.</p>\n",
"image": "{path}",
"image_full": "{url}",
"image_thumb": "{url}",
"has_custom_image": false,
"is_private": true,
"entity_id": 11,
"tags": [],
"created_at": "2019-01-30T00:01:44.000000Z",
"created_by": 1,
"updated_at": "2019-08-29T13:48:54.000000Z",
"updated_by": 1,
"type": "Lore",
"colour": "green",
"tag_id": null,
"entities": [
352, 440
]
}
}
To create a tag, use the following endpoint.
Method | URI | Headers |
---|---|---|
POST | tags |
Default |
Parameter | Type | Detail |
---|---|---|
name |
string (Required) |
Name of the tag |
entry |
string |
The html description of the tag |
type |
string |
The tag's type |
colour |
string |
The tag's colour |
tag_id |
integer |
The parent tag |
image_url |
string |
URL to a picture to be used for the tag |
entity_image_uuid |
string |
Gallery image UUID for the entity image (limited to superboosted campaigns) |
entity_header_uuid |
string |
Gallery image UUID for the entity header (limited to superboosted campaigns) |
is_private |
boolean |
If the tag is only visible to admin members of the campaign |
{success} Code 200 with JSON body of the new tag.
To update a tag, use the following endpoint.
Method | URI | Headers |
---|---|---|
PUT/PATCH | tags/{tag.id} |
Default |
The same body parameters are available as for when creating a tag.
{success} Code 200 with JSON body of the updated tag.
To delete a tag, use the following endpoint.
Method | URI | Headers |
---|---|---|
DELETE | tags/{tag.id} |
Default |
{success} Code 200 with JSON.