with Paylocity and JP Funda?
Returns the most recent and annual securities report data for the past few years. See the documentation
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
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
paylocity: {
type: "app",
app: "paylocity",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.paylocity.$auth.api_url}/api/v2/companies/1PIPEDRM1/employees`,
headers: {
Authorization: `Bearer ${this.paylocity.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})