Uploadcare

Uploadcare handles file uploads, storage, processing and delivery for the modern web. Build more, code less. Sign up at uploadcare.com to get your free API key.

Integrate the Uploadcare API with the Formatting API

Setup the Uploadcare API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Uploadcare and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Uploaded File (Instant) from Uploadcare API
Uploadcare + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Uploaded File (Instant) from Uploadcare API
Uploadcare + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Uploaded File (Instant) from Uploadcare API
Uploadcare + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Uploaded File (Instant) from Uploadcare API
Uploadcare + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Uploaded File (Instant) from Uploadcare API
Uploadcare + Formatting
 
Try it
New Uploaded File (Instant) from the Uploadcare API

Emit new event on each created task.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Upload File with the Uploadcare API

Upload a file. See docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of Uploadcare

Uploadcare is a file uploading, processing, and delivery platform that provides developers with tools to handle the entire file lifecycle with ease. With its robust API, you can upload files from any device, transform images and documents on-the-fly, and manage digital content with a comprehensive set of features. Integrating Uploadcare with Pipedream allows you to craft workflows that automate file operations and connect them seamlessly with other services, such as CRMs, marketing platforms, and data analysis tools.

Connect Uploadcare

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    uploadcare: {
      type: "app",
      app: "uploadcare",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.uploadcare.com/project/`,
      headers: {
        "Content-Type": `application/json`,
        "Accept": `application/vnd.uploadcare-v0.5+json`,
        "Authorization": `Uploadcare.Simple ${this.uploadcare.$auth.api_key}:${this.uploadcare.$auth.api_secret}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})