Get Project
codecatalyst_get_project | R Documentation |
Returns information about a project¶
Description¶
Returns information about a project.
Usage¶
codecatalyst_get_project(spaceName, name)
Arguments¶
spaceName |
[required] The name of the space. |
name |
[required] The name of the project in the space. |
Value¶
A list with the following syntax:
list(
spaceName = "string",
name = "string",
displayName = "string",
description = "string"
)
Request syntax¶
svc$get_project(
spaceName = "string",
name = "string"
)