FedEx

Ship, manage, track, deliver

Integrate the FedEx API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
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
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of FedEx

The FedEx API provides a direct line to FedEx's shipping, tracking, and rate services, allowing you to automate the logistics within your business processes. Whether you're automating notifications based on shipment statuses, streamlining the creation of shipping labels, or integrating real-time shipping rates into your checkout process, this API offers a wealth of possibilities to enhance efficiency and customer satisfaction.

Connect FedEx

1
2
3
4
5
6
7
8
9
10
11
12
13
export default defineComponent({
  props: {
    fedex: {
      type: "app",
      app: "fedex",
    }
  },
  async run({steps, $}) {
    // See the FedEx API docs here:
    // https://developer.fedex.com/api/en-us/guides/best-practices.html
  },
})

Connect Formatting

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