authorizeIpAddress abstract method

  1. @POST.new('/auth/authorize-ip')
Future<void> authorizeIpAddress({
  1. @Body.new() required AuthorizeIpRequest body,
})

Authorize IP address.

Verify and authorize a new IP address using the confirmation code sent via email. Completes IP authorization flow.

body - Name not received - field will be skipped.

Implementation

@POST('/auth/authorize-ip')
Future<void> authorizeIpAddress({@Body() required AuthorizeIpRequest body});