Developer docs

Ramp integration

Ramp is a platform that helps you manage your finances, track your income and…

Updated June 2026 88 actions available

Provider
ramp
Category
Other
Setup
Bring-your-own OAuth credentials
Actions
88 available

Quick start

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

This integration uses OAuth, but the platform credentials for Ramp haven't been registered yet. Reach out to the OverSkill team so we can register the OAuth client_id / client_secret — until then the "Connect" button won't work.

Available actions

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

Show all 88 actions
  • RAMP_DELETE_ACCOUNTING_INVENTORY_ITEM_OPTIONS
  • RAMP_DELETE_ACCOUNTING_TAX_CODE
  • RAMP_DELETE_ACCOUNTING_TAX_CODE_OPTIONS
  • RAMP_DELETE_ACCOUNTING_TAX_RATES
  • RAMP_DELETE_ACCOUNTING_VENDORS
  • RAMP_DELETE_CUSTOM_FIELD_OPTION
  • RAMP_DELETE_INVENTORY_ITEM_FIELD
  • RAMP_DELETE_SPEND_ALLOCATION_DELETE_USERS
  • RAMP_DELETE_WEBHOOK
  • RAMP_FETCH_ACCOUNTING_ACCOUNT
  • RAMP_FETCH_ACCOUNTING_VENDOR
  • RAMP_FETCH_CUSTOM_ACCOUNTING_FIELD
  • RAMP_GET_ACCOUNTING_ACCOUNTS
  • RAMP_GET_ACCOUNTING_ALL_CONNECTIONS
  • RAMP_GET_ACCOUNTING_CONNECTION
  • RAMP_GET_ACCOUNTING_CONNECTION_BY_ID
  • RAMP_GET_ACCOUNTING_FIELDS
  • RAMP_GET_ACCOUNTING_VENDORS
  • RAMP_GET_ALL_TRANSACTIONS
  • RAMP_GET_CARD
  • RAMP_GET_CARD_VAULT_RESOURCE
  • RAMP_GET_CUSTOM_FIELD_OPTION
  • RAMP_GET_DEPARTMENT
  • RAMP_GET_INVENTORY_ITEM_FIELD
  • RAMP_GET_MEMO
  • RAMP_GET_REIMBURSEMENT
  • RAMP_GET_SPEND_LIMIT
  • RAMP_GET_STATEMENT
  • RAMP_GET_TRANSACTION
  • RAMP_GET_USER
  • RAMP_GET_USERS_DEFERRED_STATUS
  • RAMP_GET_VENDOR
  • RAMP_GET_WEBHOOK
  • RAMP_ISSUE_VIRTUAL_CARD
  • RAMP_LIST_ACCOUNTING_INVENTORY_ITEM_OPTIONS
  • RAMP_LIST_ACCOUNTING_TAX_RATES
  • RAMP_LIST_CARDS
  • RAMP_LIST_DEPARTMENTS
  • RAMP_LIST_MEMOS
  • RAMP_LIST_REIMBURSEMENTS
  • RAMP_LIST_STATEMENTS
  • RAMP_LIST_USERS
  • RAMP_LIST_VENDORS
  • RAMP_LIST_VENDORS_ACCOUNTS
  • RAMP_LIST_VENDORS_CONTACTS
  • RAMP_LIST_VENDORS_CREDITS
  • RAMP_LIST_WEBHOOKS
  • RAMP_OPTIONS_FOR_CUSTOM_ACCOUNTING_FIELD
  • RAMP_PATCH_ACCOUNTING_CONNECTION
  • RAMP_PATCH_CARD_RESOURCE
  • RAMP_PATCH_CUSTOM_FIELD_OPTION
  • RAMP_PATCH_GL_ACCOUNT_RESOURCE
  • RAMP_PATCH_INVENTORY_ITEM_FIELD
  • RAMP_POST_ACCOUNTING_ACCOUNTS
  • RAMP_POST_ACCOUNTING_CONNECTION
  • RAMP_POST_ACCOUNTING_VENDORS
  • RAMP_POST_INVENTORY_ITEM_OPTIONS
  • RAMP_POST_PHYSICAL_CARD
  • RAMP_REACTIVATE_ACCOUNTING_CONNECTION
  • RAMP_REACTIVATE_USER
  • RAMP_SUBMIT_REIMBURSEMENT_RECEIPT
  • RAMP_SUSPEND_CARD
  • RAMP_TERMINATE_CARD
  • RAMP_UPDATE_ACCOUNTING_FIELD
  • RAMP_UPDATE_ACCOUNTING_INVENTORY_ITEM_OPTIONS
  • RAMP_UPDATE_ACCOUNTING_TAX_CODE
  • RAMP_UPDATE_ACCOUNTING_TAX_CODE_OPTIONS
  • RAMP_UPDATE_ACCOUNTING_TAX_RATE
  • RAMP_UPDATE_ACCOUNTING_VENDOR
  • RAMP_UPDATE_CARD_LIMIT
  • RAMP_UPDATE_DEPARTMENT
  • RAMP_UPDATE_LIMITS
  • RAMP_UPDATE_USER
  • RAMP_UPLOAD_NEW_OPTIONS
  • RAMP_UPLOAD_TAX_CODE_OPTIONS
  • RAMP_UPLOAD_TAX_RATES

Build with Ramp

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