| 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>
{
}
}
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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /json/reply/Requests HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: application/json
Content-Type: application/json
Content-Length: length
[]
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length []