Microsoft
A contact, event, or message that's attached to another event, message, or post.
Derived from attachment.
| Method | Return Type | Description |
|---|---|---|
| Get | itemAttachment | Read properties and relationships of itemAttachment object. |
| Delete | None | Delete itemAttachment object. |
| Property | Type | Description |
|---|---|---|
| contentType | String | The content type of the attachment. |
| id | String | The attachment ID. |
| isInline | Boolean | Set to true if the attachment is inline, such as an embedded image within the body of the item. |
| lastModifiedDateTime | DateTimeOffset | The last time and date that the attachment was modified. |
| name | String | The display name of the attachment. |
| size | Int32 | The size in bytes of the attachment. |
| Relationship | Type | Description |
|---|---|---|
| item | OutlookItem | The attached message or event. Navigation property. |
Here is a JSON representation of the resource
{
"contentType": "string",
"id": "string (identifier)",
"isInline": true,
"lastModifiedDateTime": "String (timestamp)",
"name": "string",
"size": 1024
}