The request body is of type GetFileAttachments.
Request Body Parameters
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| fileAttachmentDetailsRequest | FileAttachmentDetailsRequestModel |

Overview
![]() |
|
| Method | GetFileAttachments |
The request body is of type GetFileAttachments.
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| fileAttachmentDetailsRequest | FileAttachmentDetailsRequestModel |

![]() |
|
The response body is of type GetFileAttachmentsResponse.
| Name | Description | Data Type |
|---|---|---|
| GetFileAttachmentsResult | FileAttachmentDetailsServiceReturnModel |

![]() |
|
var model = new FileAttachmentDetailsRequestModel() { TaskIDs = new int[] { 1234567890 } }; var results = serviceClient.GetFileAttachments(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New FileAttachmentDetailsRequestModel() With { .TaskIDs = New Integer() {1234567890} } Dim results = serviceClient.GetFileAttachments(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If