Platform API

<back to all web services

DeleteObjectConnection

Delete the object connection

Requires Authentication
The following routes are available for this service:
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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}