With the FedEx API, you can build a variety of applications and integrations including:
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
},
})
FedEx uses OAuth authentication. When you connect your FedEx account, Pipedream will open a popup window where you can sign into FedEx and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any FedEx API.
Pipedream requests the following authorization scopes when you connect your account:
POST
{{custom_fields.server_type}}/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.client_id}}
&
client_secret={{custom_fields.client_secret}}
&
grant_type=client_credentials
POST
{{custom_fields.server_type}}/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.client_id}}
&
client_secret={{custom_fields.client_secret}}
&
grant_type=client_credentials