digitaluapi

<back to all web services

Requests

Requires Authentication
Requires any of the roles:Client, Admin, Partner
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using digitaluapi.ServiceModel;
using ServiceStack.Text;
using digitaluapi.ServiceModel.Types;

namespace digitaluapi.ServiceModel
{
    public partial class CSVRequestsArr
    {
        public virtual int BatchId { get; set; }
        public virtual JsonObject Data { get; set; }
        public virtual CSVErrors[] Errors { get; set; }
    }

    public partial class CSVRequestsArrResponse
        : List<MetaParseUpload>
    {
    }

    [DataContract]
    public partial class MetaParseUpload
    {
        [DataMember(Order=1)]
        public virtual string Data { get; set; }
    }

    public partial class Requests
        : List<CSVRequestsArr>
    {
    }

}

namespace digitaluapi.ServiceModel.Types
{
    public partial class CSVErrors
    {
        public virtual string type { get; set; }
        public virtual string code { get; set; }
        public virtual string message { get; set; }
        public virtual string row { get; set; }
    }

}

namespace ServiceStack.Text
{
    public partial class JsonObject
        : Dictionary<string, string>
    {
    }

}

C# Requests DTOs

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

HTTP + XML

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

POST /xml/reply/Requests HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<ArrayOfCSVRequestsArr xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel" />
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ArrayOfMetaParseUpload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel" />