digitaluapi

<back to all web services

DeleteBatchDataLookup

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
GET/delete_batch_data
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using digitaluapi.ServiceModel;

namespace digitaluapi.ServiceModel
{
    [DataContract]
    public partial class DeleteBatchDataLookup
    {
        [DataMember(Order=2)]
        public virtual int? RecordCount { get; set; }

        [DataMember(Order=3)]
        public virtual string Data { get; set; }

        [DataMember(Order=4)]
        public virtual bool? HasError { get; set; }

        [DataMember(Order=5)]
        public virtual bool? Merged { get; set; }

        [DataMember(Order=6)]
        public virtual long? BatchId { get; set; }

        [DataMember(Order=7)]
        public virtual string Jsondata { get; set; }
    }

}

C# DeleteBatchDataLookup 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.

GET /delete_batch_data HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

[{"RecordCount":0,"Data":"String","HasError":false,"Merged":false,"BatchId":0,"Jsondata":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}]