with Google Business Profile and signNow?
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event for each new local post on a location See the documentation
Emit new event for each new review on a location See the documentation
Emit new event when a document has been updated. See the documentation
Create or update a reply to the specified review. See the documentation
Create a new local post associated with a location. See the documentation
Creates a new document copy out of a template. See the documentation
List local posts associated with a location. See the documentation
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
The Google My Business API enables businesses to manage their online presence across Google, including Search and Maps. Through Pipedream, you can automate various aspects of your Google My Business account, such as reading and responding to customer reviews, updating business information, and posting new content. This API provides a powerful way to engage with customers and maintain accurate, up-to-date business listings, all through programmable interactions that can save time and enhance visibility.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_my_business: {
type: "app",
app: "google_my_business",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mybusinessaccountmanagement.googleapis.com/v1/accounts`,
headers: {
Authorization: `Bearer ${this.google_my_business.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})