Click or drag to resize
RallyRestApiDownloadAttachment Method
Downloads an attachment from Rally.

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public AttachmentResult DownloadAttachment(
	string relativeUrl
)

Parameters

relativeUrl
Type: SystemString
The relative URL to the attachment.

Return Value

Type: AttachmentResult
The result of the request.
Examples
C#
string relativeUrl = "/slm/attachment/12345678900/image_file_name.jpg"
AttachmentResult attachmentResult = DownloadAttachment(relativeUrl);
See Also