日安
我正在试着用邮递员获取库存物品的图像。
我需要遵循的步骤如下。使用API调用选择库存项目:
URL/entity/Endpoint/1/stockItem?$filter=InventoryID eq 'ABC011'
通过这个调用,我获得了ImageURL字段
我是否可以使用它来获取链接到库存项目的相应图像?
发布于 2021-05-05 02:44:31
您可以使用(根据您提供的url )访问图像/文件:
URL/entity/Endpoint/1/stockItem/ABC011/files/YourImageName.jpg
请参阅Postman中的以下示例:
您还可以阅读本文,了解如何使用REST API附加文件:https://asiablog.acumatica.com/2018/01/attach-files-with-rest-api.html
https://stackoverflow.com/questions/67367599
复制相似问题