Developer docs

Gift Up! integration

Gift Up!

Updated June 2026 44 actions available

Provider
gift_up
Category
Ecommerce
Setup
User-supplied API key
Actions
44 available

Quick start

Call Gift Up! from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Gift Up!'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(
  "GIFT_UP_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 Gift Up! 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

44 actions exposed via the Gift Up! integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 44 actions
  • GIFT_UP_GET_ITEM
  • GIFT_UP_GET_ORDER
  • GIFT_UP_GET_PING
  • GIFT_UP_GET_REPORT_TRANSACTION
  • GIFT_UP_GET_SHIPPING_SETTINGS
  • GIFT_UP_GET_STRIPE_CONNECTION
  • GIFT_UP_GET_WEBHOOK
  • GIFT_UP_LIST_GIFT_CARD_ARTWORK
  • GIFT_UP_LIST_GIFT_CARDS
  • GIFT_UP_LIST_ITEM_GROUPS
  • GIFT_UP_LIST_ITEMS
  • GIFT_UP_LIST_LOCATIONS
  • GIFT_UP_LIST_PROMOTIONS
  • GIFT_UP_LIST_REPORT_TRANSACTIONS
  • GIFT_UP_LIST_USERS
  • GIFT_UP_LIST_WEBHOOKS
  • GIFT_UP_POST_PING
  • GIFT_UP_REACTIVATE_GIFT_CARD
  • GIFT_UP_REDEEM_GIFT_CARD
  • GIFT_UP_REDEEM_GIFT_CARD_IN_FULL
  • GIFT_UP_SUBSCRIBE_WEBHOOK
  • GIFT_UP_TOP_UP_GIFT_CARD
  • GIFT_UP_UNDO_REDEMPTION
  • GIFT_UP_UPDATE_EMAIL_SETTINGS
  • GIFT_UP_UPDATE_GIFT_CARD
  • GIFT_UP_UPDATE_GIFT_CARD_SETTINGS
  • GIFT_UP_UPDATE_ITEM
  • GIFT_UP_UPDATE_ITEM_GROUP
  • GIFT_UP_UPDATE_ORDER
  • GIFT_UP_UPDATE_STRIPE_CONNECTION
  • GIFT_UP_UPLOAD_ARTWORK
  • GIFT_UP_VOID_GIFT_CARD

Build with Gift Up!

Open OverSkill, describe what you want to build, and reference Gift Up! in your prompt — the AI will wire up the integration automatically.