ApiPost

interface ApiPost

The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server.

Author

Vitaliy Zarubin

Functions

signIn
Link copied to clipboard
@POST(value = "login")
abstract suspend fun signIn(@Body request: SignInRequest): Response<SignInResponse>
signInError
Link copied to clipboard
@POST(value = "login_error")
abstract suspend fun signInError(@Body request: SignInRequest): Response<SignInResponse>
signUp
Link copied to clipboard
@POST(value = "registration")
abstract suspend fun signUp(@Body request: SignUpRequest): Response<SignUpResponse>
signUpValidate
Link copied to clipboard
@POST(value = "email_validate")
abstract suspend fun signUpValidate(@Body request: SignUpValidateRequest): Response<SignUpValidateResponse>

Inheritors

OtherApi
Link copied to clipboard