public async Task CreateAttachmentAsync()
        {
            var options    = Fixture.Create <AttachmentOptions>();
            var attachment = await _signatureService.CreateAttachmentAsync(_documentId, options);

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