public async Task <DocflowPage> GetAllInventoryDocflowsAsync(
     Guid accountId,
     Guid relatedDocflowId,
     Guid relatedDocumentId,
     DocflowFilter filter = null,
     TimeSpan?timeout     = null) =>
 await client.SendRequestAsync <DocflowPage>(
     HttpMethod.Get,
     $"/v1/{accountId}/docflows/{relatedDocflowId}/documents/{relatedDocumentId}/inventories",
     filter?.ConvertToQueryParameters(),
     timeout : timeout);
Example #2
0
 public async Task <DocflowPage> GetDocflowsAsync(Guid accountId, DocflowFilter filter = null, TimeSpan?timeout = null) =>
 await client.SendRequestAsync <DocflowPage>(
     HttpMethod.Get,
     $"/v1/{accountId}/docflows",
     filter?.ConvertToQueryParameters(),
     timeout : timeout);