getProjectGroup

@GET(value = "api/project-groups/{projectGroupId}")
abstract suspend fun getProjectGroup(@Path(value = "projectGroupId") projectGroupId: String): ProjectGroup

Get a project group <mark>Beta:</mark> Gets a specific project group. Responses:

  • 200: The requested project group.

  • 403: The authenticated user has insufficient permissions.

  • 404: No API key was specified in the request, the key has been revoked, or the user bearing the key lacks permissions for this operation.

Return

ProjectGroup

Parameters

projectGroupId

The ID of the project group.