getProject

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

GET api/projects/{projectId} Get an access control project. <mark>Beta:</mark> Gets a specific project configured for project-level access control. Responses:

  • 200: The requested project configured for project-level access control.

  • 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 access control project.