Body

annotation class Body

For upload data in an HTTP Body on a POST/PUT request

Instead of sending in as request parameters or form-style request body.

@POST("create")
suspend fun upload(@Body issue: Issue)

See also