Recreation.gov

The Recreation Information Database (RIDB) provides data resources to citizens, offering a single point of access to information about recreational opportunities nationwide.

Integrate the Recreation.gov API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Campsite Availability Changed Event from Recreation.gov API
Recreation.gov + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New Recreation Area Added Event from Recreation.gov API
Recreation.gov + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Campsite Availability Changed Event from Recreation.gov API
Recreation.gov + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Recreation Area Added Event from Recreation.gov API
Recreation.gov + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New Campsite Availability Changed Event from Recreation.gov API
Recreation.gov + ServiceNow
 
Try it
New Campsite Availability Changed Event from the Recreation.gov API

Emit new events when selected campsite's availability is changed. See the documentation

 
Try it
New Recreation Area Added Event from the Recreation.gov API

Emit new events when a new recreation area is added to the Recreation.gov database. See the documentation

 
Try it
Get Recreation Area with the Recreation.gov API

Retrieves details of a specific campsite. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
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
Search Campsites with the Recreation.gov API

Searchs campsites with the given query. If no query given, returns campsites from the beginning. Returning campsite number is limited to 1000. See the documentation

 
Try it

Overview of Recreation.gov

The Recreation.gov API provides access to data about federal recreational activities and areas. With it, you can fetch details about campsites, tours, permits, and articles. On Pipedream, leverage this API to automate notifications, analyze recreational data, or integrate with other services for trip planning or environmental monitoring.

Connect Recreation.gov

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: {
    recreation_gov: {
      type: "app",
      app: "recreation_gov",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://ridb.recreation.gov/api/v1/campsites`,
      params: {
        apikey: `${this.recreation_gov.$auth.api_key}`,
      },
    })
  },
})

Overview of ServiceNow

The ServiceNow API enables developers to tap into the robust capabilities of ServiceNow's IT service management platform. With the API, you can create, read, update, and delete records, manage workflows, and integrate with other services. By leveraging these capabilities, you can automate routine tasks, sync data across multiple platforms, and enhance 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}`,
      },
    })
  },
})