Developer docs

Finerworks integration

FinerWorks is an online platform specializing in fine art and photo printing…

Updated June 2026 33 actions available

Provider
finerworks
Category
Ecommerce
Setup
User-supplied API key
Actions
33 available

Quick start

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

33 actions exposed via the Finerworks integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 33 actions
  • FINERWORKS_LIST_FILE_SELECTION
  • FINERWORKS_LIST_FRAME_COLLECTIONS
  • FINERWORKS_LIST_GALLERIES
  • FINERWORKS_LIST_GALLERY_THEMES
  • FINERWORKS_LIST_GLAZING
  • FINERWORKS_LIST_IMAGES
  • FINERWORKS_LIST_MATS
  • FINERWORKS_LIST_MEDIA_TYPES
  • FINERWORKS_LIST_ORDER_STATUS_DEFINITIONS
  • FINERWORKS_LIST_PRODUCT_TYPES
  • FINERWORKS_LIST_SHIPPING_OPTIONS_MULTIPLE
  • FINERWORKS_LIST_STYLE_TYPES
  • FINERWORKS_LIST_VIRTUAL_INVENTORY
  • FINERWORKS_SAVE_PENDING_ORDERS
  • FINERWORKS_SUBMIT_ORDERS
  • FINERWORKS_UPDATE_APP_DETAILS
  • FINERWORKS_UPDATE_FILE_SELECTION
  • FINERWORKS_UPDATE_IMAGES
  • FINERWORKS_UPDATE_USER
  • FINERWORKS_UPDATE_VIRTUAL_INVENTORY
  • FINERWORKS_VALIDATE_RECIPIENT_ADDRESS

Build with Finerworks

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