public interface AuthenticationApi
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<AuthenticationCreateResponse> |
createAuthentication(AuthenticationDataRequest authenticationDataRequest)
Create authentication
|
retrofit2.Call<AuthenticationDataResponse> |
getAuthentication(String authId)
Get authentication information
|
@Headers(value="Content-Type:application/json") @POST(value="api/authentication") retrofit2.Call<AuthenticationCreateResponse> createAuthentication(@Body AuthenticationDataRequest authenticationDataRequest)
authenticationDataRequest - authenticationDataRequest (required)@GET(value="api/authentication/{authId}")
retrofit2.Call<AuthenticationDataResponse> getAuthentication(@Path(value="authId")
String authId)
authId - Authentication ID (required)Copyright © 2024. All rights reserved.