completeSso abstract method

  1. @POST.new('/auth/sso/complete')
Future<SsoCompleteResponse> completeSso({
  1. @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,
});