Shipday integration
Making Local Deliveries Easy Globally - Powering Local E-commerce
- Provider
- shipday
- Category
- Ecommerce
- Setup
- User-supplied API key
- Actions
- 12 available
Quick start
Call Shipday from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Shipday's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"SHIPDAY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Shipday API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
12 actions exposed via the
Shipday integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SHIPDAY_ADD_A_CARRIER -
SHIPDAY_CHECK_ON_DEMAND_AVAILABILITY -
SHIPDAY_EDIT_DELIVERY_ORDER -
SHIPDAY_GET_ON_DEMAND_ESTIMATE -
SHIPDAY_GET_ON_DEMAND_SERVICES -
SHIPDAY_INSERT_ORDER -
SHIPDAY_ORDER_READY_TO_PICKUP -
SHIPDAY_QUERY_DELIVERY_ORDERS -
SHIPDAY_RETRIEVE_ACTIVE_ORDERS -
SHIPDAY_RETRIEVE_CARRIERS -
SHIPDAY_RETRIEVE_ORDER_DETAILS -
SHIPDAY_UNASSIGN_ORDER_FROM_DRIVER
Build with Shipday
Open OverSkill, describe what you want to build, and reference Shipday in your prompt — the AI will wire up the integration automatically.