Skip to content

Get Details of a Single Attachment

Method: GET

Url: /Attachments/{AttachmentID} (e.g. /Attachments/1234)
Header: DPApiAuthenticationToken={YOUR_API_TOKEN}

Query String: None

Request Example:
GET “https://api.dataprise.com/api/v1/Attachments/709″Header: “DPApiAuthenticationToken=abcxyz0123456789”

Response:

The API will return the details of the attachment if the provided AttachmentID is valid, with the following fields:

Column NameData TypeRemarks
AttachmentIDIntegerThe unique ID of the record.
IncidentIDIntegerThe ID of the incident
FileNameStringThe file name
FileTypeStringThe file type
FileUrlStringThe URL of the file
FileStringThe contents of the file in base64 format.
ShortDescriptionStringShort description of the attachment
ImageThumbnailStringA base64 string containing the image thumbnail if the file type is an image
CustomFieldsList<CustomField>List of custom fields (key-value pair) for this record
Sample Response:
{ “AttachmentID”: 709, “FileName”: “Test Blue.jpg”, “DateCreated”: “2020-01-02T16:14:36.79”, “CreatedBy”: “Bhatt, S.”, “File”: “data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2w2Q==”, “IncidentID”: 342510, “ImageThumbnail”: “data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBAooooA/9k=”, “FileType”: “image/jpeg”, “FileURL”: “https://jmsweb.dataprise.com/cc/filelibget.aspx?FileLibID=708”, “ShortDescription”: “Test Blue.jpg”, “CustomFields”: null }