Uscreen is an all-in-one membership platform designed for video creators.⚡ Follow us for the best free video streaming tips!
Go to siteThe Uscreen API lets you programmatically access your video on demand and OTT (over-the-top) service. With this API, you can pull data about videos, users, and sales, and carry out actions like creating and updating users, and more. By leveraging the Uscreen API on Pipedream, you can automate workflows involving video content management, user engagement tracking, and sales monitoring. This can significantly cut down manual effort and streamlines operations within your Uscreen account.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uscreen: {
type: "app",
app: "uscreen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.uscreen.io/publisher_api/v1/customers`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.uscreen.$auth.publisher_api_key}`,
},
})
},
})
Automated User Onboarding: Set up a workflow that listens for new user sign-ups via a webhook, then uses the Uscreen API to automatically send personalized welcome emails or SMS messages, perhaps integrating with SendGrid or Twilio for messaging capabilities.
Content Syncing with Social Media: Whenever you upload a new video to Uscreen, trigger a workflow that posts a tailored announcement with a link to the new content on your social media platforms like Twitter or Facebook, driving engagement and keeping your audience informed.
Sales Reporting to Google Sheets: Configure a scheduled workflow that regularly fetches sales and subscription data from Uscreen and populates a Google Sheets spreadsheet. This allows for easy tracking of revenue trends and the creation of visual reports without manual data entry.
Uscreen uses API keys for authentication. When you connect your Uscreen account, Pipedream securely stores the keys so you can easily authenticate to Uscreen APIs in both code and no-code steps.
The UScreen API is available to Uscreen Plus customers but if you're not on the Plus plan, you can contact the UScreen team to inquire about access. Your CSM can provide you with your authorization key to use in the API. See the documentation here.