deleteProjectGroup

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

Delete a project group. <mark>Beta:</mark> Delete a project group. Responses:

  • 200: The projectId referenced an existing project group and it was deleted.

  • 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

Unit

Parameters

projectGroupId

The ID of the project group.