| Requires any of the roles: | Agent, Administrator, Agent, Administrator, Agent, Administrator, Agent, Administrator |
| GET,POST,PUT,DELETE,OPTIONS | /v1/NotificationAttachment/{NotificationAttachmentId} | ||
|---|---|---|---|
| GET,POST,PUT,DELETE,OPTIONS | /v1/NotificationAttachment |
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class NotificationAttachmentRequest
{
public ArrayList<NotificationAttachment> NotificationAttachment = new ArrayList<NotificationAttachment>();
public ArrayList<NotificationAttachment> getNotificationAttachment() { return NotificationAttachment; }
public NotificationAttachmentRequest setNotificationAttachment(ArrayList<NotificationAttachment> value) { this.NotificationAttachment = value; return this; }
}
public static class NotificationAttachment
{
public Integer NotificationAttachmentId = null;
public Integer NotificationMessageId = null;
public byte[] Attachment = new byte[]{};
public String FileName = null;
public String MimeType = null;
public Double FileSizeInKB = null;
public Date DateCreated = null;
public Integer getNotificationAttachmentId() { return NotificationAttachmentId; }
public NotificationAttachment setNotificationAttachmentId(Integer value) { this.NotificationAttachmentId = value; return this; }
public Integer getNotificationMessageId() { return NotificationMessageId; }
public NotificationAttachment setNotificationMessageId(Integer value) { this.NotificationMessageId = value; return this; }
public byte[] getAttachment() { return Attachment; }
public NotificationAttachment setAttachment(byte[] value) { this.Attachment = value; return this; }
public String getFileName() { return FileName; }
public NotificationAttachment setFileName(String value) { this.FileName = value; return this; }
public String getMimeType() { return MimeType; }
public NotificationAttachment setMimeType(String value) { this.MimeType = value; return this; }
public Double getFileSizeInKB() { return FileSizeInKB; }
public NotificationAttachment setFileSizeInKB(Double value) { this.FileSizeInKB = value; return this; }
public Date getDateCreated() { return DateCreated; }
public NotificationAttachment setDateCreated(Date value) { this.DateCreated = value; return this; }
}
public static class NotificationAttachmentResponse
{
public ResponseStatus ResponseStatus = null;
public ArrayList<NotificationAttachment> NotificationAttachment = new ArrayList<NotificationAttachment>();
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public NotificationAttachmentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public ArrayList<NotificationAttachment> getNotificationAttachment() { return NotificationAttachment; }
public NotificationAttachmentResponse setNotificationAttachment(ArrayList<NotificationAttachment> value) { this.NotificationAttachment = value; return this; }
}
}
Java NotificationAttachmentRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/NotificationAttachment/{NotificationAttachmentId} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<NotificationAttachmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<NotificationAttachment>
<NotificationAttachment>
<Attachment>AA==</Attachment>
<DateCreated>0001-01-01T00:00:00</DateCreated>
<FileName>String</FileName>
<FileSizeInKB>0</FileSizeInKB>
<MimeType>String</MimeType>
<NotificationAttachmentId>0</NotificationAttachmentId>
<NotificationMessageId>0</NotificationMessageId>
</NotificationAttachment>
</NotificationAttachment>
</NotificationAttachmentRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<NotificationAttachmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<NotificationAttachment>
<NotificationAttachment>
<Attachment>AA==</Attachment>
<DateCreated>0001-01-01T00:00:00</DateCreated>
<FileName>String</FileName>
<FileSizeInKB>0</FileSizeInKB>
<MimeType>String</MimeType>
<NotificationAttachmentId>0</NotificationAttachmentId>
<NotificationMessageId>0</NotificationMessageId>
</NotificationAttachment>
</NotificationAttachment>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
</NotificationAttachmentResponse>