| DELETE | /api/objectConnection/{ObjectConnectionId} |
|---|
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Eros.Saguna.Common.WebAPIModel.ServiceModels;
namespace Eros.Saguna.Common.WebAPIModel.ServiceModels
{
///<summary>
///Delete the object connection
///</summary>
[Api(Description="Delete the object connection ")]
public partial class DeleteObjectConnection
{
public virtual Guid ObjectConnectionId { get; set; }
}
[ApiResponse(Description="Deletes Objectconnection.")]
public partial class DeleteObjectConnectionResponse
{
public virtual ResponseStatus ResponseStatus { get; set; }
}
}
C# DeleteObjectConnection 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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /api/objectConnection/{ObjectConnectionId} HTTP/1.1
Host: pfapi.pstpf.com.au
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}