Ad solutions to help you find, attract, and engage millions of Amazon customers at every stage of their journey
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The Amazon Advertising API allows developers to programmatically access Amazon
advertising data and metrics. With the API, developers can build tools and
applications that enable advertisers to manage their Amazon advertising
campaigns more effectively.
Some examples of what you can build with the Amazon Advertising API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
amazon_advertising: {
type: "app",
app: "amazon_advertising",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.amazon.com/user/profile`,
headers: {
Authorization: `Bearer ${this.amazon_advertising.$auth.oauth_access_token}`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}