Custom Web Services
const query = wire.data.call("Users")
.param("userName", "apeters");const obj = {userName: "apeters"};
const query = wire.data.call("Users").body(obj);Last updated
Was this helpful?
const query = wire.data.call("Users")
.param("userName", "apeters");const obj = {userName: "apeters"};
const query = wire.data.call("Users").body(obj);Last updated
Was this helpful?
Was this helpful?