Getting Incident's attachment link using .net
Content
Hi,
Using .net, I have created the external web system which will show the incident details. Our requirement is to show the attachment [URL link] as well. There is the functionality available in PHP to show the attachment link. but we couldn't find the equivalent code in .net code. Please help me on this. Thanks.
Regards,
Velladurai
Version
service cloud May 2016Code Snippet
PHP Code : $oIncident = RNCPHP\Incident::fetch(2601); $sURL = $oIncident->FileAttachments[0]->getAdminURL(); print("\nURL : ".$sURL);
0