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 .csv suffix or ?format=csv

HTTP + CSV

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

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

[]
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

[]