| Requires any of the roles: | Agent, Administrator |
| 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; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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/jsonl
Content-Type: text/jsonl
Content-Length: length
{"File":{"Name":"String","FileName":"String","ContentLength":0,"ContentType":"String"}}
HTTP/1.1 200 OK
Content-Type: text/jsonl
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-01T00:00:00.0000000"}