Developer docs

Apaleo integration

Apaleo is a cloud-based property management platform handling reservations,…

Updated June 2026 29 actions available

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

Quick start

Call Apaleo from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Apaleo'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(
  "APALEO_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 Apaleo. End-users click Connect on the integration card in your app, complete the OAuth flow with Apaleo, 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

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

Show all 29 actions
  • APALEO_DELETE_A_UNIT_GROUP
  • APALEO_DELETES_UNIT_ATTRIBUTE
  • APALEO_GET_A_PROPERTIES_LIST
  • APALEO_GET_A_PROPERTY
  • APALEO_GET_A_UNIT
  • APALEO_GET_A_UNIT_GROUP
  • APALEO_GET_A_UNITS_LIST
  • APALEO_GET_UNIT_ATTRIBUTE_BY_ID
  • APALEO_GET_UNIT_ATTRIBUTE_LIST
  • APALEO_LIST_UNIT_GROUPS
  • APALEO_MOVE_PROPERTY_TO_LIVE
  • APALEO_REPLACE_A_UNIT_GROUP
  • APALEO_RESET_PROPERTY_DATA
  • APALEO_RETURNS_A_LIST_OF_SUPPORTED_COUNTRIES
  • APALEO_RETURNS_NUMBER_OF_UNIT_GROUPS
  • APALEO_RETURNS_NUMBER_OF_UNITS
  • APALEO_RETURN_TOTAL_COUNT_OF_PROPERTIES

Build with Apaleo

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