auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps, auths) => {
}
return await require("@pipedreamhq/platform").axios(this, {
method: "post",
url: `https://api.pushover.net/1/messages.json`,
params: {
token: `${auths.pushover.api_token}`,
user: `${auths.pushover.user_key}`,
message: `test`,
},
})