Interface SelfAuthenticationApi
public interface SelfAuthenticationApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<PostSelfAuthenticationResponse> authenticate1(PostAuthenticationRequest postAuthenticationRequest) Verify authentication Authenticates the credentials provided and returns the set roles and permissions allowed.retrofit2.Call<PostSelfAuthenticationResponse> authenticate1(PostAuthenticationRequest postAuthenticationRequest, Map<String, String> headers) Verify authentication Authenticates the credentials provided and returns the set roles and permissions allowed.
-
Method Details
-
authenticate1
@Headers("Content-Type:application/json") @POST("v1/self/authentication") retrofit2.Call<PostSelfAuthenticationResponse> authenticate1(@Body PostAuthenticationRequest postAuthenticationRequest) Verify authentication Authenticates the credentials provided and returns the set roles and permissions allowed. Please visit this link for more info - https://fineract.apache.org/docs/legacy/#selfbasicauth- Parameters:
postAuthenticationRequest- (required)- Returns:
- Call<PostSelfAuthenticationResponse>
-
authenticate1
@Headers("Content-Type:application/json") @POST("v1/self/authentication") retrofit2.Call<PostSelfAuthenticationResponse> authenticate1(@Body PostAuthenticationRequest postAuthenticationRequest, @HeaderMap Map<String, String> headers) Verify authentication Authenticates the credentials provided and returns the set roles and permissions allowed. Please visit this link for more info - https://fineract.apache.org/docs/legacy/#selfbasicauth- Parameters:
postAuthenticationRequest- (required)- Returns:
- Call<PostSelfAuthenticationResponse>
-