Developer docs

Canva integration

Canva offers a drag-and-drop design suite for creating social media graphics,…

Updated June 2026 48 actions available

Provider
canva
Category
Other
Setup
One-click OAuth (we host the OAuth app)
Actions
48 available

Quick start

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

OverSkill hosts the OAuth application for Canva. End-users click Connect on the integration card in your app, complete the OAuth flow with Canva, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.

Supported auth schemes: OAUTH2.

Available actions

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

Show all 48 actions
  • CANVA_FETCH_CANVA_CONNECT_SIGNING_PUBLIC_KEYS
  • CANVA_FETCH_CURRENT_USER_DETAILS
  • CANVA_FETCH_DESIGN_METADATA_AND_ACCESS_INFORMATION
  • CANVA_GET_DESIGN_COMMENT_REPLIES
  • CANVA_GET_DESIGN_COMMENT_REPLY
  • CANVA_GET_DESIGN_EXPORT_JOB_RESULT
  • CANVA_GET_DESIGNS_DESIGNID_COMMENTS_THREADID
  • CANVA_GET_DESIGNS_DESIGNID_EXPORT_FORMATS
  • CANVA_GET_URL_ASSET_UPLOADS_JOBID
  • CANVA_GET_URL_IMPORTS_JOBID
  • CANVA_GET_USERS_ME_CAPABILITIES
  • CANVA_INITIATE_CANVA_DESIGN_AUTOFILL_JOB
  • CANVA_LIST_DESIGN_PAGES_WITH_PAGINATION
  • CANVA_LIST_FOLDER_ITEMS_BY_TYPE_WITH_SORTING
  • CANVA_LIST_USER_DESIGNS
  • CANVA_MOVE_ITEM_TO_SPECIFIED_FOLDER
  • CANVA_POST_DESIGNS
  • CANVA_POST_DESIGNS_DESIGNID_COMMENTS
  • CANVA_POST_DESIGNS_DESIGNID_COMMENTS_THREADID_REPLIES
  • CANVA_POST_EXPORTS
  • CANVA_POST_FOLDERS
  • CANVA_POST_URL_IMPORTS
  • CANVA_REMOVE_FOLDER_AND_MOVE_CONTENTS_TO_TRASH
  • CANVA_RETRIEVE_APP_PUBLIC_KEY_SET
  • CANVA_RETRIEVE_ASSET_METADATA_BY_ID
  • CANVA_RETRIEVE_BRAND_TEMPLATE_DATASET_DEFINITION
  • CANVA_RETRIEVE_CANVA_ENTERPRISE_BRAND_TEMPLATE_METADATA
  • CANVA_RETRIEVE_DESIGN_AUTOFILL_JOB_STATUS
  • CANVA_RETRIEVE_DESIGN_IMPORT_JOB_STATUS
  • CANVA_RETRIEVE_DESIGN_RESIZE_JOB_STATUS
  • CANVA_RETRIEVE_FOLDER_DETAILS_BY_ID
  • CANVA_RETRIEVE_USER_PROFILE_DATA
  • CANVA_REVOKE_OAUTH_TOKENS
  • CANVA_UPDATE_ASSET_S_NAME_AND_TAGS_BY_ID
  • CANVA_UPDATE_FOLDER_DETAILS_BY_ID
  • CANVA_VALIDATE_OAUTH_TOKEN_PROPERTIES

Build with Canva

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