import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
szybkisms: {
type: "app",
app: "szybkisms",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.szybkisms.$auth.api_url}/ping`,
headers: {
Authorization: `Bearer ${this.szybkisms.$auth.access_token}`,
},
})
},
})
SzybkiSMS uses API keys for authentication. When you connect your SzybkiSMS account, Pipedream securely stores the keys so you can easily authenticate to SzybkiSMS APIs in both code and no-code steps.