with Sage Intacct and Ideal Postcodes?
Validate email addresses using Ideal Postcodes. See the documentation
Query for geographical places across countries. Each query will return a list of place suggestions, which consists of a place name, descriptive name, and id. See the documentation
Validates a phone number and returns information about it. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sage_intacct: {
type: "app",
app: "sage_intacct",
}
},
async run({steps, $}) {
return this.sage_intacct.$auth.session_id;
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ideal_postcodes: {
type: "app",
app: "ideal_postcodes",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ideal-postcodes.co.uk/v1/autocomplete/addresses`,
params: {
"q": `parkside`,
api_key: `${this.ideal_postcodes.$auth.api_key}`,
},
})
},
})