Custom Web Services
Provider Key
const service = new wire.data.DataSource("custom", {
...
});Web Service Calls
[root]/[method]?[filters]const service = new wire.data.DataSource("custom", {
ServiceRoot: "https://service-reporting"
});
const query = wire.data.select().from("sales")
.where()
.eq("product", "PRD-001")
.eq("territory", "East");
const result = service.exec(query);GET vs POST
Configuration
Params
Allow
Test Method
Last updated
Was this helpful?