Skip to content

Tag Project

codestar_tag_project R Documentation

Adds tags to a project

Description

Adds tags to a project.

Usage

codestar_tag_project(id, tags)

Arguments

id

[required] The ID of the project you want to add a tag to.

tags

[required] The tags you want to add to the project.

Value

A list with the following syntax:

list(
  tags = list(
    "string"
  )
)

Request syntax

svc$tag_project(
  id = "string",
  tags = list(
    "string"
  )
)