getProject

@GET(value = "api/projects/{projectId}")
abstract suspend fun getProject(@Path(value = "projectId") projectId: String): Project

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

  • 200: The requested project.

  • 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

Project

Parameters

projectId

The ID of the project.