import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trust: {
type: "app",
app: "trust",
}
},
async run({ steps, $ }) {
return await axios($, {
url: `https://api.usetrust.app/v1/websites`,
headers: {
"accept": `application/json`,
},
auth: {
username: `x`,
password: `${this.trust.$auth.api_key}`,
},
});
},
});
Emit new event when a new testimonial is created. See the documentation
Deletes an existing testimonial from the Trust platform. See the documentation
Update an existing testimonial within the Trust platform. See the documentation
Trust uses API keys for authentication. When you connect your Trust account, Pipedream securely stores the keys so you can easily authenticate to Trust APIs in both code and no-code steps.