Roll

Roll is a platform with everything your business needs in one place. Manage projects, track sales, understand and grow your business.

Integrate the Roll API with the DreamStudio (Stable Diffusion) API

Setup the Roll API trigger to run a workflow which integrates with the DreamStudio (Stable Diffusion) API. Pipedream's integration platform allows you to integrate Roll and DreamStudio (Stable Diffusion) remarkably fast. Free for developers.

Upscale Image with DreamStudio (Stable Diffusion) API on New Created Company from Roll API
Roll + DreamStudio (Stable Diffusion)
 
Try it
Generate Image with DreamStudio (Stable Diffusion) API on New Created Company from Roll API
Roll + DreamStudio (Stable Diffusion)
 
Try it
Generate Image with DreamStudio (Stable Diffusion) API on New Created Project from Roll API
Roll + DreamStudio (Stable Diffusion)
 
Try it
Generate Image with DreamStudio (Stable Diffusion) API on New Created Task from Roll API
Roll + DreamStudio (Stable Diffusion)
 
Try it
Generate Image with DreamStudio (Stable Diffusion) API on New Created Time from Roll API
Roll + DreamStudio (Stable Diffusion)
 
Try it
New Created Company from the Roll API

Emit new event when a company is created.

 
Try it
New Created Project from the Roll API

Emit new event when a project is created.

 
Try it
New Created Task from the Roll API

Emit new event when a task is created.

 
Try it
New Created Time from the Roll API

Emit new event when a time is created.

 
Try it
Create Company with the Roll API

Create a new company See the docs here

 
Try it
Generate Image with the DreamStudio (Stable Diffusion) API

Generate a new image from a text prompt. See the documentation

 
Try it
Create Project with the Roll API

Create a new project See the docs here

 
Try it
Modify Image with the DreamStudio (Stable Diffusion) API

Modify an image based on a text prompt. See the documentation

 
Try it
Create Time Record with the Roll API

Create a new time See the docs here

 
Try it

Overview of Roll

The Roll API serves as a bridge to Roll's project management software, enabling users to automate tasks, manipulate project data, and integrate with countless other apps within the Pipedream ecosystem. By leveraging this API, you can streamline operations, sync data across various platforms, and create custom notifications that power up your project management workflows.

Connect Roll

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    roll: {
      type: "app",
      app: "roll",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.rollhq.com/graphql`,
      headers: {
        Authorization: `Bearer ${this.roll.$auth.api_access_token}`,
      },
      params: {
        query: `query{
      project {ProjectId ProjectTitle}
    }`,
      },
    })
  },
})

Overview of DreamStudio (Stable Diffusion)

The DreamStudio (Stable Diffusion) API taps into the power of AI to generate creative visual content from textual descriptions. With Pipedream, you can automate the process of creating images, integrate with various apps, and build complex workflows without servers. You can trigger image generation on demand, process user inputs, or schedule image creation - All seamlessly within Pipedream's ecosystem.

Connect DreamStudio (Stable Diffusion)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dreamstudio: {
      type: "app",
      app: "dreamstudio",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.stability.ai/v1/user/account`,
      headers: {
        Authorization: `Bearer ${this.dreamstudio.$auth.api_key}`,
      },
      params: {
        Accept: `application/json`,
      },
    })
  },
})