digitaluapi

<back to all web services

CustomerRegistrationEmailRequest

The following routes are available for this service:
All Verbs/auth/customerregisteremailrequest
POST/customerregisteremailrequest
import 'package:servicestack/servicestack.dart';
import 'dart:collection';

class CustomerRegistrationEmailRequest implements IConvertible
{
    String? Email;
    String? EmailId;
    String? MobileNumber;
    String? MobileId;

    CustomerRegistrationEmailRequest({this.Email,this.EmailId,this.MobileNumber,this.MobileId});
    CustomerRegistrationEmailRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        Email = json['Email'];
        EmailId = json['EmailId'];
        MobileNumber = json['MobileNumber'];
        MobileId = json['MobileId'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'Email': Email,
        'EmailId': EmailId,
        'MobileNumber': MobileNumber,
        'MobileId': MobileId
    };

    getTypeName() => "CustomerRegistrationEmailRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
    'CustomerRegistrationEmailRequest': TypeInfo(TypeOf.Class, create:() => CustomerRegistrationEmailRequest()),
});

Dart CustomerRegistrationEmailRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /auth/customerregisteremailrequest HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Email: String,
	EmailId: String,
	MobileNumber: String,
	MobileId: String
}