putLike

@PUT(value = "likes/{id}")
abstract suspend fun putLike(@Path(value = "id") id: String, @Body like: ApiLike): ApiLike

Updates a Like item in the API.

Return

The updated ApiLike item.

Parameters

id

The ID of the Like item to update.

like

The updated Like item.