completeSso abstract method
- @POST.new('/auth/sso/complete')
- @Body.new() required SsoCompleteRequest body,
Complete SSO.
Complete the SSO authentication flow with the authorization code from the SSO provider. Returns authentication token and user information.
body - Name not received - field will be skipped.
Implementation
@POST('/auth/sso/complete')
Future<SsoCompleteResponse> completeSso({
@Body() required SsoCompleteRequest body,
});