可以通过查看 Acumatica 版本迭代说明文档或者询问 Acumatica 官方支持团队来确定该 API 版本是否与 Acumatica 2023 R1 兼容。另外,也可以尝试在 Acumatica 2023 R1 中测试该 API 版本,以确定其兼容性。
代码示例:
// 使用 Acumatica API 版本 18.200.001 调用 Acumatica 2023 R1 中的 REST 接口
string apiEndpoint = "https://acumatica.example.com/entity/Default/18.200.001/salesorder";
string apiKey = "your-api-key";
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
HttpResponseMessage response = await client.GetAsync(apiEndpoint);
if (response.IsSuccessStatusCode)
{
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}