Cincopa is a photo & video hosting platform, offering various designs for slideshows, photo-galleries, video players, private video hosting solutions and more.
Go to siteThe Cincopa API enables users to elevate their media content management by automating tasks and integrating with other services. With Cincopa, you can manipulate galleries, upload media, extract analytics, and manage your media assets in a programmatic way. When paired with Pipedream, this API becomes a powerhouse for creating seamless workflows that boost productivity and enhance content delivery, offering a rich set of triggers and actions to automate media operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cincopa: {
type: "app",
app: "cincopa",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cincopa.com/v2/ping.json`,
params: {
api_token: `${this.cincopa.$auth.api_token}`,
},
})
},
})
Automated Media Gallery Creation for Events: When a new event is scheduled in your Google Calendar, Pipedream can trigger a workflow that automatically creates a new media gallery in Cincopa, populating it with default images and videos relevant to the event.
Dynamic Content Updates on CMS: Sync updates from Cincopa to your Content Management System (CMS) like WordPress. Whenever a new media file is uploaded to Cincopa, Pipedream can push that content to your CMS, keeping your website fresh and up-to-date without manual intervention.
Marketing Analytics Reporting: Compile and send regular media engagement reports by connecting Cincopa to a data visualization tool like Google Sheets. Each time Cincopa updates media analytics, Pipedream can append this data to a sheet, enabling easy tracking and analysis of viewer interactions over time.
Emit new event when a new asset is uploaded. See the documentation
Emit new event when a new gallery is created. See the documentation
Adds an asset or a list of assets to an existing gallery. See the documentation
Creates a new gallery, returning the new gallery FID (unique ID). See the documentation
Upload an asset from an input URL to a Cincopa gallery. See the documentation
Cincopa uses API keys for authentication. When you connect your Cincopa account, Pipedream securely stores the keys so you can easily authenticate to Cincopa APIs in both code and no-code steps.
Create, manage and delete API tokens in the Cincopa Manager, API Tokens section.