The Freshstatus API allows developers to integrate Freshstatus into their applications, enabling them to create, update, and manage their Freshstatus account data. With the Freshstatus API, developers can manage:
Example applications that can be built using the Freshstatus API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
freshstatus: {
type: "app",
app: "freshstatus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public-api.freshstatus.io/api/v1/services/`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.freshstatus.$auth.username}`,
password: `${this.freshstatus.$auth.subdomain}`,
},
})
},
})
Freshstatus uses API keys for authentication. When you connect your Freshstatus account, Pipedream securely stores the keys so you can easily authenticate to Freshstatus APIs in both code and no-code steps.
Authentication is done over Basic Authentication using your organization API key as username
and Freshstatus subdomain
as Password to authenticate the request. See documentation.