with Pro Ledger and NEURONWriter?
Create a new record in the Pro Ledger platform. See the documentation
Launches a new query based on provided keyword, search engine, and language. See the documentation
Pulls the most recent revision of the content saved for a specific query. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pro_ledger: {
type: "app",
app: "pro_ledger",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pro-ledger.com/api/v1/auth/check_api_key`,
headers: {
"X-API-Key": `${this.pro_ledger.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neuronwriter: {
type: "app",
app: "neuronwriter",
}
},
async run({steps, $}) {
const data = {
"project": `${this.neuronwriter.$auth.project_id}`,
}
return await axios($, {
method: "post",
url: `https://app.neuronwriter.com/neuron-api/0.5/writer/list-queries`,
headers: {
"X-API-KEY": `${this.neuronwriter.$auth.api_key}`,
},
data,
})
},
})