Before you start
Review the following information before you install the RyderShip app.
Review the App Platform overview and key concepts to familiarize yourself with this tool before the installation.
You need to have Administrator permission in order to complete the installation process.
Gather your RyderShip credentials – both installation methods below need the same values:
Application ID and Client Secret: Request API access from RyderShip by contacting your Onboarding Specialist or Customer Success Manager, or by submitting RyderShip's API access request form. RyderShip will issue you an Application ID (client ID) and Client Secret, along with a User Scope of either
user_readoruser_manage.Refresh Token: RyderShip authenticates using OAuth2, so unlike a static API key, this requires a one-time manual authorization step to generate. See Complete the RyderShip authorization flow below.
The RyderShip integration authenticates via OAuth2 – unlike Klaviyo, WooCommerce, and ShipMonk, a manual authorization flow is required before you can install the app.
Complete the RyderShip authorization flow
In a browser, issue a GET request to
/oauth/authorizeon your RyderShip environment (Sandbox:https://sandbox.whiplash.app, Production:https://www.getwhiplash.com), including yourscope,response_type=code,redirect_uri, andclient_idas parameters.Log in with your RyderShip web app credentials. You'll be redirected to your redirect_uri with a
codeparameter appended. Retain this value.Make a POST request to
/oauth/tokenwith the code, your redirect_uri, client_id, client_secret, scope, andgrant_type=authorization_code. The response includes an access_token and a refresh_token.Retain the refresh_token – this is the value you'll enter in the Gladly configuration form below.
Install the RyderShip app
There are two ways to install and configure RyderShip. Installing in Gladly (Option A) is the recommended path for most customers – it requires no command-line tooling.
Option A — Install in Gladly (recommended)
In Gladly, go to Apps → Create Configuration.
Select RyderShip from the list of available apps.
Fill in the configuration form:
Configuration Name – a recognizable name for this configuration (e.g. "RyderShip Production").
Application ID – your RyderShip application ID (client ID).
Client Secret – your RyderShip client secret.
Refresh Token – the refresh token you obtained by completing the authorization flow above.
Save and activate the configuration.
That's it – the configuration is live. Continue to Enable RyderShip in Gladly Team below.
Option B — Install with the App Platform CLI (appcfg)
Use this method if you prefer to manage configurations from the command line. You'll need a technical resource who can run the appcfg CLI and has access to both your Gladly and RyderShip instances.
Install the App Platform CLI Tool
Install the App Platform CLI (appcfg), which allows you to manage and configure all your App Platform apps. Follow the setup instructions here: Install appcfg.
2. Obtain Your Gladly API Credentials
You'll need the following to authenticate with your Gladly instance:
Gladly Host:
us-1.gladly.comfor Productionus-uat.gladly.qafor Sandbox
Gladly User: The email of a Gladly user with Administrator or API User permissions
Gladly API Token: A personal API token for the user above
To generate your token, follow Gladly's API Token documentation. Once you have these, set them as environment variables for convenience:
export GLADLY_APP_CFG_HOST="us-1.gladly.com" # or us-uat.gladly.qa for Sandbox
export GLADLY_APP_CFG_USER="your.email@company.com"
export GLADLY_APP_CFG_TOKEN="your-api-token-here"Create the Configuration
Run the following command to configure the app:
appcfg apps config create "gladly.com/rydership/v1.0.0" \
--name "RyderShip" \
--secrets '{"applicationId": "<application_id>", "clientSecret": "<client_secret>", "refreshToken": "<refresh_token>"}'Always install the latest available version of the app. You can check the latest version using appcfg apps list.
4. List Configurations to Get Your Configuration ID
appcfg apps config list --identifier "gladly.com/rydership/v1.0.0"Note the CONFIG ID from the output – you'll need it for the next step.
5. Activate Your Configuration
appcfg apps config update <config-id> --activateEnable RyderShip in Gladly Team
Both the RyderShip Card in Customer Details and the relevant RyderShip action(s) in the + menu must be enabled by Gladly before they appear in the agent desktop. Once your configuration is active, reach out to Gladly Support to enable the Card and any related actions for your team.
Resources
For more details on configuration and credential structure, refer to the app-platform-examples repository. You can always clone it and adapt it to your needs.
For instructions on getting RyderShip credentials, see the RyderShip API authentication documentation.