Microsoft Dataverse Web API - 检索文件内容

Microsoft Dataverse Web API - Retrieve File Content

它一定很简单,但我不知道如何从 Microsoft Dataverse 检索文件内容table。

我有一个 table 叫做 quotes。此 table 有一个文件类型为“cra7f_ficheiropricing”的列,我之前已将文件上传到该列。使用 Postman,我想以二进制文件的形式检索文件的内容。

下面我过滤了我想要的报价(记录table),结果如下。

我试过了 Official Documentation 但没有成功。

你检查过了吗?

https://docs.microsoft.com/en-us/powerapps/developer/data-platform/file-attributes

示例:带分块的 REST 下载

HTTP 请求

GET [Organization URI]/api/data/v9.1/accounts(id)/myfileattribute/$value
Headers:
Range: bytes=0-1023/8192

HTTP 响应

206 Partial Content
Body: byte[]

因此,如果我的理解正确,您必须在具体情况下尝试这样做:

 GET [Organization URI]/api/data/v9.1/quotes(-your-guid-here-)/cra7f_ficheiropricing/$value