public async Task GetAttachmentAsync()
        {
            var attachment = await _signatureService.GetAttachmentAsync(_documentId, _attachmentId);

            Assert.IsNotNull(attachment);
            AssertRequest(HttpMethod.Get, $"/signature/documents/{_documentId}/attachments/{_attachmentId}");
        }