with BoldSign and Shopify Partner?
Send documents for e-signature using a BoldSign template. See the documentation
Verify an incoming webhook from Shopify. Exits the workflow if the signature is not valid, otherwise returns true
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
boldsign: {
type: "app",
app: "boldsign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.boldsign.com/v1/users/list`,
headers: {
Authorization: `Bearer ${this.boldsign.$auth.oauth_access_token}`,
},
})
},
})
The Shopify Partner API lets you tap into a comprehensive suite of features to manage and analyze multiple Shopify stores. You can automate tasks like creating development stores, adding collaborators, tracking payouts, and more. This API serves as a powerful tool for developers, agencies, and freelancers who manage multiple Shopify shops for their clients. Through Pipedream, you can effortlessly integrate Shopify Partner API with other services to create tailored, efficient workflows that save time and enhance productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shopify_partner: {
type: "app",
app: "shopify_partner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://partners.shopify.com/${this.shopify_partner.$auth.organization_id}/api/2021-07/graphql.json`,
headers: {
'X-Shopify-Access-Token': this.shopify_partner.$auth.api_key,
'Content-Type': 'application/x-www-form-urlencoded'
},
method: 'POST',
params: {
query: `{
publicApiVersions {
handle
}
}
`,
},
})
},
})