Tags

Here is a list of methods and examples of working with Tags

GetAll()

// returns all tags
List<Tag> tags = await client.Tags.GetAll();

GetByID

// returns tag by ID
Tag tag = await client.Tags.GetByID(123);

Query

Create parametrized request

// returns result of query
TagsQueryBuilder queryBuilder = new TagsQueryBuilder();
queryBuilder.PerPage = 40;
queryBuilder.Page = 2;
queryBuilder.Before = DateTime.Now;
List<Tag> tags = await client.Tags.Query(queryBuilder);

Create new Tag

// returns created tag
Tag tag = new Tag()
{
    Name = "Name",
    Description = "Tag"
};
if (await client.IsValidJWToken())
{
    Tag createdtag = await client.Tags.Create(tag);
}

Update Tag

// returns updated tag
Tag tag = client.Tags.GetByID(123);
tag.Name = "New Name";
if (await client.IsValidJWToken())
{
    Tag updatedTag = await client.Tags.Update(tag);
}

Delete Tag

// returns result of deletion
if (await client.IsValidJWToken())
{
    bool result = await client.Tags.Delete(123);
}