Trendsic Platform Service

<back to all web services

UploadRfpAttachment

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
POST/v1/project/rfp/attachment
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using CRM.AgencyPlatform.API.Internal;
using ServiceStack.Host;

namespace CRM.AgencyPlatform.API.Internal
{
    public partial class UploadAttachmentResponse
    {
        public virtual ResponseStatus ResponseStatus { get; set; }
        public virtual string AttachmentId { get; set; }
        public virtual int ProjectId { get; set; }
        public virtual string FileType { get; set; }
        public virtual string FileName { get; set; }
        public virtual string ContentType { get; set; }
        public virtual long ContentLength { get; set; }
        public virtual DateTime CreatedUtc { get; set; }
    }

    public partial class UploadRfpAttachment
    {
        public virtual HttpFile File { get; set; }
    }

}

namespace ServiceStack.Host
{
    public partial class HttpFile
    {
        public virtual string Name { get; set; }
        public virtual string FileName { get; set; }
        public virtual long ContentLength { get; set; }
        public virtual string ContentType { get; set; }
        public virtual Stream InputStream { get; set; }
    }

}

C# UploadRfpAttachment 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 /v1/project/rfp/attachment HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	File: 
	{
		Name: String,
		FileName: String,
		ContentLength: 0,
		ContentType: String
	}
}
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
		}
	},
	AttachmentId: String,
	ProjectId: 0,
	FileType: String,
	FileName: String,
	ContentType: String,
	ContentLength: 0,
	CreatedUtc: 0001-01-01
}