Recipes
Recipes
Call Ping (using API Key)
Call ping using an API Key to verify your connection to Shipium's API server.
In this Recipe
- Set Environment Variables
- Call Ping using Curl
xxxxxxxxxx
1
API_KEY='apiKeyYouGenerated'
2
RESOURCE_SERVER='<<api_url>>'
3
4
curl --location --request GET "$RESOURCE_SERVER/api/v1/deliveryexperience/ping" \
5
--user "$API_KEY:"
Call Ping (using OAuth)
Call ping using an OAuth token to verify your connection to Shipium's API server.
Authenticating for Curl
Recipe Description
Learn to authenticate and get the access token used in other API calls.
Authenticate and Retrieve an OAuth Token
Recipe Description
Learn to authenticate and get the access token used in other API calls.