Booster.Microservices

<back to all web services

EditCustomerRequest

Requires Authentication
The following routes are available for this service:
POST/warranty/v1/editCustomer
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Booster.Microservices.ServiceModel.Sale;
using Booster.Microservices.ServiceModel.Common;

namespace Booster.Microservices.ServiceModel.Common
{
    public partial class BaseRequest<TResponse>
        : IRequest
    {
        public virtual string sid { get; set; }
        public virtual string app { get; set; }
        public virtual string _os { get; set; }
        public virtual string _appVersion { get; set; }
        public virtual string _searchMethod { get; set; }
    }

    public partial class BaseResponse
        : IRespose
    {
        public virtual string _xmlns { get; set; }
        public virtual string _type { get; set; }
        public virtual string _source { get; set; }
        public virtual string _tstamp { get; set; }
        public virtual string _user { get; set; }
        public virtual string _env { get; set; }
        public virtual string _uri { get; set; }
        public virtual string _query { get; set; }
    }

}

namespace Booster.Microservices.ServiceModel.Sale
{
    public partial class EditCustomerRequest
        : BaseRequest<EditCustomerResponse>
    {
        public virtual Guid customerId { get; set; }
        public virtual Guid personId { get; set; }
        public virtual Guid addressId { get; set; }
        public virtual Guid? phoneId { get; set; }
        public virtual Guid? emailId { get; set; }
        public virtual string cardId { get; set; }
        public virtual string customerRef { get; set; }
        public virtual int? title { get; set; }
        public virtual string firstName { get; set; }
        public virtual string lastName { get; set; }
        public virtual string firstNameNotLatin { get; set; }
        public virtual string lastNameNotLatin { get; set; }
        public virtual DateTime? birthday { get; set; }
        public virtual DateTime? weddingDate { get; set; }
        public virtual string email { get; set; }
        public virtual bool canBeContacted { get; set; }
        public virtual string language { get; set; }
        public virtual string nameSuffix { get; set; }
        public virtual string gender { get; set; }
        public virtual string middleName { get; set; }
        public virtual string countryId { get; set; }
        public virtual string phoneCountryId { get; set; }
        public virtual string prefixCountryId { get; set; }
        public virtual string phone { get; set; }
        public virtual int posId { get; set; }
        public virtual Guid? birthDayEventId { get; set; }
        public virtual string salePersonId { get; set; }
        public virtual bool? allowStoreDataAbroad { get; set; }
        public virtual bool? tvAllowStoreDataAbroad { get; set; }
        public virtual bool contactByMail { get; set; }
        public virtual bool contactByEmail { get; set; }
        public virtual bool contactByPhone { get; set; }
        public virtual bool contactBySMS { get; set; }
        public virtual bool contactBySocialMedia { get; set; }
        public virtual string street { get; set; }
        public virtual string houseNumber { get; set; }
        public virtual string city { get; set; }
        public virtual string postalCode { get; set; }
        public virtual string region { get; set; }
        public virtual string street2 { get; set; }
        public virtual string street3 { get; set; }
        public virtual string street4 { get; set; }
        public virtual string street5 { get; set; }
    }

    public partial class EditCustomerResponse
        : BaseResponse
    {
    }

}

C# EditCustomerRequest 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 /warranty/v1/editCustomer HTTP/1.1 
Host: qp-microservices-booster.richemont.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	customerId: 00000000000000000000000000000000,
	personId: 00000000000000000000000000000000,
	addressId: 00000000000000000000000000000000,
	phoneId: 00000000000000000000000000000000,
	emailId: 00000000000000000000000000000000,
	cardId: String,
	customerRef: String,
	title: 0,
	firstName: String,
	lastName: String,
	firstNameNotLatin: String,
	lastNameNotLatin: String,
	birthday: 0001-01-01,
	weddingDate: 0001-01-01,
	email: String,
	canBeContacted: False,
	language: String,
	nameSuffix: String,
	gender: String,
	middleName: String,
	countryId: String,
	phoneCountryId: String,
	prefixCountryId: String,
	phone: String,
	posId: 0,
	birthDayEventId: 00000000000000000000000000000000,
	salePersonId: String,
	allowStoreDataAbroad: False,
	tvAllowStoreDataAbroad: False,
	contactByMail: False,
	contactByEmail: False,
	contactByPhone: False,
	contactBySMS: False,
	contactBySocialMedia: False,
	street: String,
	houseNumber: String,
	city: String,
	postalCode: String,
	region: String,
	street2: String,
	street3: String,
	street4: String,
	street5: String,
	sid: String,
	app: String,
	_os: String,
	_appVersion: String,
	_searchMethod: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	_xmlns: String,
	_type: String,
	_source: String,
	_tstamp: String,
	_user: String,
	_env: String,
	_uri: String,
	_query: String
}