proxySignupV2 method
Produce a SignedRequest from ProxyTSignupBody by using the client's stamp function.
See also: Signup.
Onboard a new user.
Sign the provided ProxyTSignupV2Body with the client's stamp function and submit the request (POST /v1/signup_v2).
See also: stampSignupV2.
Implementation
/// Onboard a new user.
///
/// Sign the provided `ProxyTSignupV2Body` with the client's `stamp` function and submit the request (POST /v1/signup_v2).
///
/// See also: `stampSignupV2`.
Future<ProxyTSignupV2Response> proxySignupV2({
required ProxyTSignupV2Body input,
}) async {
return await authProxyRequest<ProxyTSignupV2Body, ProxyTSignupV2Response>(
"/v1/signup_v2",
input,
(json) => ProxyTSignupV2Response.fromJson(json));
}