Richemont.Booster2.PublicApi

<back to all web services

GrantElevateConsent

Requires Authentication
The following routes are available for this service:
POST/customer/{brand}/{elevateCustomerId}/grantElevateConsentUpdate Elevate customer consent to 'Approved'Currently the API sets Elevate customer consent only to 'Approved' status
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class GrantElevateConsent
    {
        /**
        * Elevate customer ID
        */
        @ApiMember(Description="Elevate customer ID")
        public String elevateCustomerId = null;

        /**
        * POS Legacy
        */
        @ApiMember(Description="POS Legacy", IsRequired=true)
        public String posCode = null;

        /**
        * Brand e.g. CAR, MTB
        */
        @ApiMember(Description="Brand e.g. CAR, MTB", IsRequired=true)
        public String brand = null;

        /**
        * Phone e.g. cn: 13888889999, jp: 352858088, kr: 023123456. Email or full phone required
        */
        @ApiMember(Description="Phone e.g. cn: 13888889999, jp: 352858088, kr: 023123456. Email or full phone required")
        public String phone = null;

        /**
        * Prefix Country Id e.g. it, fr, az. Email or full phone required
        */
        @ApiMember(Description="Prefix Country Id e.g. it, fr, az. Email or full phone required")
        public String phoneCountryPrefix = null;

        /**
        * Customer email. Email or full phone required
        */
        @ApiMember(Description="Customer email. Email or full phone required")
        public String email = null;
        
        public String getElevateCustomerId() { return elevateCustomerId; }
        public GrantElevateConsent setElevateCustomerId(String value) { this.elevateCustomerId = value; return this; }
        public String getPosCode() { return posCode; }
        public GrantElevateConsent setPosCode(String value) { this.posCode = value; return this; }
        public String getBrand() { return brand; }
        public GrantElevateConsent setBrand(String value) { this.brand = value; return this; }
        public String getPhone() { return phone; }
        public GrantElevateConsent setPhone(String value) { this.phone = value; return this; }
        public String getPhoneCountryPrefix() { return phoneCountryPrefix; }
        public GrantElevateConsent setPhoneCountryPrefix(String value) { this.phoneCountryPrefix = value; return this; }
        public String getEmail() { return email; }
        public GrantElevateConsent setEmail(String value) { this.email = value; return this; }
    }

    public static class GrantElevateConsentResponse
    {
        /**
        * Salesforce Standard ID
        */
        @ApiMember(Description="Salesforce Standard ID", IsRequired=true)
        public String salesforceStandardId = null;
        
        public String getSalesforceStandardId() { return salesforceStandardId; }
        public GrantElevateConsentResponse setSalesforceStandardId(String value) { this.salesforceStandardId = value; return this; }
    }

}

Java GrantElevateConsent DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /customer/{brand}/{elevateCustomerId}/grantElevateConsent HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"elevateCustomerId":"String","posCode":"String","brand":"String","phone":"String","phoneCountryPrefix":"String","email":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"salesforceStandardId":"String"}