with AlgoDocs and SwaggerHub?
Emit new event for every created version of a specific API. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
algodocs: {
type: "app",
app: "algodocs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.algodocs.com/v1/me`,
headers: {
"x-api-key": `${this.algodocs.$auth.api_key}`,
},
})
},
})
The SwaggerHub API offers capabilities to streamline working with your Swagger (OpenAPI) definitions within SwaggerHub. On Pipedream, you can automate interactions with the SwaggerHub API to keep APIs in sync, manage your API versions, and integrate your API design workflow with other tools and services. Leverage Pipedream's serverless platform to create, update, and share your SwaggerHub API definitions across different environments or teams efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swaggerhub: {
type: "app",
app: "swaggerhub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.swaggerhub.com/user-management/v1/orgs/{your_org_name}/members`,
headers: {
"Authorization": `${this.swaggerhub.$auth.api_key}`,
},
params: {
limit: `10`,
},
})
},
})