signIn abstract method
- @POST.new("/sign-in/magic-link")
- @Body.new() required MagicLinkBody body,
Sends a sign-in link to the given email. Delivery is handled by the server; the link's callback carries the token back to the app.
Implementation
@POST("/sign-in/magic-link")
Future<Result<StatusResponse>> signIn({@Body() required MagicLinkBody body});