| Requires any of the roles: | Client, Admin, Partner |
| DELETE | /batch_data_fields/{Id} |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
@DataContract
open class BatchDataFieldsDelete
{
@DataMember(Order=1)
@Validate(Validator="NotNull")
open var Id:Long? = null
}
open class BatchDataFieldsDeleteResponse
{
@DataMember(Order=1)
open var Id:Long? = null
@DataMember(Order=6)
open var ResponseStatus:ResponseStatus? = null
}
Kotlin BatchDataFieldsDelete DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /batch_data_fields/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}