POST | /users | Create user | Creates a new user account and customer profile. |
---|
import 'package:servicestack/servicestack.dart';
class InvoiceAddress implements IConvertible
{
String? CorporateIdentityNumber;
String? InvoiceAddress1;
String? InvoiceAddress2;
String? InvoiceCity;
String? InvoicePostalCode;
String? InvoiceCountryCode;
InvoiceAddress({this.CorporateIdentityNumber,this.InvoiceAddress1,this.InvoiceAddress2,this.InvoiceCity,this.InvoicePostalCode,this.InvoiceCountryCode});
InvoiceAddress.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
CorporateIdentityNumber = json['CorporateIdentityNumber'];
InvoiceAddress1 = json['InvoiceAddress1'];
InvoiceAddress2 = json['InvoiceAddress2'];
InvoiceCity = json['InvoiceCity'];
InvoicePostalCode = json['InvoicePostalCode'];
InvoiceCountryCode = json['InvoiceCountryCode'];
return this;
}
Map<String, dynamic> toJson() => {
'CorporateIdentityNumber': CorporateIdentityNumber,
'InvoiceAddress1': InvoiceAddress1,
'InvoiceAddress2': InvoiceAddress2,
'InvoiceCity': InvoiceCity,
'InvoicePostalCode': InvoicePostalCode,
'InvoiceCountryCode': InvoiceCountryCode
};
getTypeName() => "InvoiceAddress";
TypeContext? context = _ctx;
}
class CreateUserResponse implements IConvertible
{
dynamic? ResponseStatus;
String? Id;
String? UserId;
String? Email;
String? Firstname;
String? Lastname;
String? Phone;
DateTime? CreatedDate;
InvoiceAddress? InvoiceAddress;
CreateUserResponse({this.ResponseStatus,this.Id,this.UserId,this.Email,this.Firstname,this.Lastname,this.Phone,this.CreatedDate,this.InvoiceAddress});
CreateUserResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'dynamic',context!);
Id = json['Id'];
UserId = json['UserId'];
Email = json['Email'];
Firstname = json['Firstname'];
Lastname = json['Lastname'];
Phone = json['Phone'];
CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!);
InvoiceAddress = JsonConverters.fromJson(json['InvoiceAddress'],'InvoiceAddress',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'dynamic',context!),
'Id': Id,
'UserId': UserId,
'Email': Email,
'Firstname': Firstname,
'Lastname': Lastname,
'Phone': Phone,
'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!),
'InvoiceAddress': JsonConverters.toJson(InvoiceAddress,'InvoiceAddress',context!)
};
getTypeName() => "CreateUserResponse";
TypeContext? context = _ctx;
}
// @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
class CreateUser implements IConvertible
{
// @ApiMember(IsRequired=true)
String? Firstname;
// @ApiMember(IsRequired=true)
String? Lastname;
// @ApiMember()
String? Phone;
// @ApiMember(IsRequired=true)
String? Email;
InvoiceAddress? InvoiceAddress;
CreateUser({this.Firstname,this.Lastname,this.Phone,this.Email,this.InvoiceAddress});
CreateUser.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Firstname = json['Firstname'];
Lastname = json['Lastname'];
Phone = json['Phone'];
Email = json['Email'];
InvoiceAddress = JsonConverters.fromJson(json['InvoiceAddress'],'InvoiceAddress',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Firstname': Firstname,
'Lastname': Lastname,
'Phone': Phone,
'Email': Email,
'InvoiceAddress': JsonConverters.toJson(InvoiceAddress,'InvoiceAddress',context!)
};
getTypeName() => "CreateUser";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: <String, TypeInfo> {
'InvoiceAddress': TypeInfo(TypeOf.Class, create:() => InvoiceAddress()),
'CreateUserResponse': TypeInfo(TypeOf.Class, create:() => CreateUserResponse()),
'CreateUser': TypeInfo(TypeOf.Class, create:() => CreateUser()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /users HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<Email>String</Email>
<Firstname>String</Firstname>
<InvoiceAddress>
<CorporateIdentityNumber>String</CorporateIdentityNumber>
<InvoiceAddress1>String</InvoiceAddress1>
<InvoiceAddress2>String</InvoiceAddress2>
<InvoiceCity>String</InvoiceCity>
<InvoiceCountryCode>String</InvoiceCountryCode>
<InvoicePostalCode>String</InvoicePostalCode>
</InvoiceAddress>
<Lastname>String</Lastname>
<Phone>String</Phone>
</CreateUser>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <CreateUserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <Email>String</Email> <Firstname>String</Firstname> <Id>00000000-0000-0000-0000-000000000000</Id> <InvoiceAddress> <CorporateIdentityNumber>String</CorporateIdentityNumber> <InvoiceAddress1>String</InvoiceAddress1> <InvoiceAddress2>String</InvoiceAddress2> <InvoiceCity>String</InvoiceCity> <InvoiceCountryCode>String</InvoiceCountryCode> <InvoicePostalCode>String</InvoicePostalCode> </InvoiceAddress> <Lastname>String</Lastname> <Phone>String</Phone> <ResponseStatus /> <UserId>00000000-0000-0000-0000-000000000000</UserId> </CreateUserResponse>