The leader in location data intelligence. Smarty's easy-to-use APIs verify, validate, enrich, standardize, geocode, and auto-complete addresses at super speeds.
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
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
Send a message to a team's channel. See the docs here
The Smarty API, previously known as SmartyStreets, provides powerful location data services, including address validation, geocoding, and autocomplete for addresses. Integrating Smarty with Pipedream allows you to automate processes that require address verification or geolocation data, enriching datasets, improving delivery accuracy, and enhancing user experiences through auto-complete suggestions. By leveraging Pipedream's serverless platform, you can create workflows that react to events, process data in real-time, and connect Smarty with hundreds of other services without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smarty: {
type: "app",
app: "smarty",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://us-zipcode.api.smartystreets.com/lookup`,
params: {
"auth-id": `${this.smarty.$auth.auth_id}`,
"auth-token": `${this.smarty.$auth.auth_token}`,
city: `{your_city}`,
state: `{your_state}`,
zipcode: `{your_zipcode}`,
},
})
},
})
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}`,
},
})
},
})