Platform API

<back to all web services

GetMedia

Requires Authentication
The following routes are available for this service:
All Verbs/api/media/retrievemedia
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class GetMedia
    {
        public UUID ErosMediaId = null;
        
        public UUID getErosMediaId() { return ErosMediaId; }
        public GetMedia setErosMediaId(UUID value) { this.ErosMediaId = value; return this; }
    }

    public static class MediaModelResponse
    {
        public String MediaName = null;
        public String MediaFileUrl = null;
        public ResponseStatus ResponseStatus = null;
        
        public String getMediaName() { return MediaName; }
        public MediaModelResponse setMediaName(String value) { this.MediaName = value; return this; }
        public String getMediaFileUrl() { return MediaFileUrl; }
        public MediaModelResponse setMediaFileUrl(String value) { this.MediaFileUrl = value; return this; }
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public MediaModelResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
    }

}

Java GetMedia 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.

POST /api/media/retrievemedia HTTP/1.1 
Host: pfapi.pstpf.com.au 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

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