Mercedes.Agency.Orchestration.API

<back to all web services

UnlinkedBackOrderCommAudit

Requires Authentication
The following routes are available for this service:
GET/v1/BackOrderUnlinkedCommsGet the audit for back orders unlinked comms
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class UnlinkedBackOrderCommAudit
    {
        
    }

    public static class UnlinkedBackOrderCommAuditResponse
    {
        public ArrayList<BackOrderUnlinkedCommsAudit> Audits = new ArrayList<BackOrderUnlinkedCommsAudit>();
        
        public ArrayList<BackOrderUnlinkedCommsAudit> getAudits() { return Audits; }
        public UnlinkedBackOrderCommAuditResponse setAudits(ArrayList<BackOrderUnlinkedCommsAudit> value) { this.Audits = value; return this; }
    }

    public static class BackOrderUnlinkedCommsAudit
    {
        public String BackOrderReference = null;
        public String UserId = null;
        public String Showroom = null;
        public String CommUnlinked = null;
        public String Reason = null;
        public String AuditDate = null;
        
        public String getBackOrderReference() { return BackOrderReference; }
        public BackOrderUnlinkedCommsAudit setBackOrderReference(String value) { this.BackOrderReference = value; return this; }
        public String getUserId() { return UserId; }
        public BackOrderUnlinkedCommsAudit setUserId(String value) { this.UserId = value; return this; }
        public String getShowroom() { return Showroom; }
        public BackOrderUnlinkedCommsAudit setShowroom(String value) { this.Showroom = value; return this; }
        public String getCommUnlinked() { return CommUnlinked; }
        public BackOrderUnlinkedCommsAudit setCommUnlinked(String value) { this.CommUnlinked = value; return this; }
        public String getReason() { return Reason; }
        public BackOrderUnlinkedCommsAudit setReason(String value) { this.Reason = value; return this; }
        public String getAuditDate() { return AuditDate; }
        public BackOrderUnlinkedCommsAudit setAuditDate(String value) { this.AuditDate = value; return this; }
    }

}

Java UnlinkedBackOrderCommAudit 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.

GET /v1/BackOrderUnlinkedComms HTTP/1.1 
Host: prod-api-agency-orch-mb-dhc.rapp-customers.co.uk 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Audits: 
	[
		{
			BackOrderReference: String,
			UserId: String,
			Showroom: String,
			CommUnlinked: String,
			Reason: String,
			AuditDate: String
		}
	]
}