GET

@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class GET(@Language(value = "http-url-reference") val value: String = "")

Make a GET request.

@GET("issue")
suspend fun getIssue(@Query("id") id: String): Issue

Properties

Link copied to clipboard

Relative or absolute URL of the endpoint.