View Details of an Attachment in Progress Tab of an Event

Returns information on a file attached to a Workflow event through its Progress tab.

 

URL

{WSUrl}/api/events/<EventCode>/attachments/<AttachmentID>

 

REQUEST METHOD

GET

 

URL PARAMETERS

EventCode: This parameter is provided in the URL and does not need to be sent through GET.

AttachmentID: This parameter is provided in the URL and does not need to be sent through GET.

 

REQUEST EXAMPLE

{WSUrl}/api/events/EVTC201105000052/attachments/c0b68fa9-6633-487a-ba1c-49176718c380

 

SUCCESS RESPONSE

An object with the information on the attachments of the event specified. Returns a WorkflowEventAttachment.

 

The WorkflowEventAttachment object is in the following format:

WorkflowEventAttachment

{

Guid Id;

string FileName;

string Description;

string Data;

}


The "Data" field is a base64 string of the file's bytes.