y.gy

Free QR Code Creator and Link Shortener

Integrate the y.gy API with the ServiceNow API

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

Create Short Link with the y.gy API

Create new short links with y.gy. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Get Links with the y.gy API

Get a list of the links created by the authenticated account See the documentation

 
Try it
Get Table Record By SysId with the ServiceNow API

Retrieves the record identified by the specified sys_id from the specified table.

 
Try it
Get Table Records with the ServiceNow API

Retrieves multiple records for the specified table.

 
Try it

Overview of y.gy

The y.gy API allows users to shorten URLs dynamically, providing a way to manage and track URL performance in applications or marketing campaigns. Using this API on Pipedream, you can automate URL shortening and integrate these activities with other services like databases, analytics tools, or CRM systems. This capability is particularly valuable in scenarios involving high-volume link generation, targeted content distribution, and real-time link performance analysis.

Connect y.gy

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: {
    y_gy: {
      type: "app",
      app: "y_gy",
    }
  },
  async run({steps, $}) {
    const data = {
        "destination_url": "https://pipedream.com",
      }
    return await axios($, {
      method: "post",
      url: `https://api.y.gy/api/v1/link`,
      headers: {
        "api-key": `${this.y_gy.$auth.api_key}`,
      },
      data,
    })
  },
})

Overview of ServiceNow

The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.

Connect ServiceNow

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    servicenow: {
      type: "app",
      app: "servicenow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
      headers: {
        Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
      },
    })
  },
})