register

@POST(value = "v1/users/register")
abstract suspend fun register(@Body body: RegisterDto): AuthenticatedUserDto

Registers a new user with the provided RegisterDto.

Return

The AuthenticatedUserDto representing the registered and authenticated user.

Parameters

body

The RegisterDto containing user registration information.