Skip to main content
Create a UserService request — a generic mechanism for provider-defined user flows (onboarding, KYC, feature activation, etc.). The semantics of reference_id and party_name are provider-specific. Invoked through the two-phase transaction flow with:
  • operation = TRANSACTION_OPERATION_REQUEST_USER_SERVICE
  • params.request_user_service = RequestUserServiceParams { … }

Params

reference_id
string (optional)
Provider-defined reference ID.
party_name
string (optional)
Human-readable party name.
message RequestUserServiceParams {
  optional string reference_id = 1;
  optional string party_name   = 2;
}

See also