Acquire securities report data of Japanese companies.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Returns the most recent and annual securities report data for the past few years. See the documentation
Create a new channel in Microsoft Teams. See the docs here
Returns the latest and past years of securities report data. See the documentation
Retrieve data by specifying the date the securities report was published See the documentation
The JP Funda API offers access to a wealth of financial data, including stock prices, company fundamentals, and market trends. On Pipedream, you can leverage this API to create powerful serverless workflows that automate financial analysis, track investment opportunities, and notify you of important market changes. By integrating JP Funda with other apps, you can enrich financial datasets, streamline reporting, and make data-driven decisions with ease.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jp_funda: {
type: "app",
app: "jp_funda",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.jp-funda.com/api/jp/today/`,
headers: {
"Authorization": `Token ${this.jp_funda.$auth.api_key}`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})