Brilliant Directories integration
Brilliant Directories is an all-in-one platform that enables users to create…
- Provider
- brilliant_directories
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 44 available
Quick start
Call Brilliant Directories from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Brilliant Directories'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(
"BRILLIANT_DIRECTORIES_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 Brilliant Directories 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
Brilliant Directories integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BRILLIANT_DIRECTORIES_CREATE_ALBUM_PHOTO -
BRILLIANT_DIRECTORIES_CREATE_DATA_CATEGORY -
BRILLIANT_DIRECTORIES_CREATE_DATA_POST -
BRILLIANT_DIRECTORIES_CREATE_LEAD -
BRILLIANT_DIRECTORIES_CREATE_PORTFOLIO_GROUP -
BRILLIANT_DIRECTORIES_CREATE_UNSUBSCRIBE -
BRILLIANT_DIRECTORIES_CREATE_USER -
BRILLIANT_DIRECTORIES_CREATE_USERS_CLICK -
BRILLIANT_DIRECTORIES_CREATE_WIDGET -
BRILLIANT_DIRECTORIES_DELETE_ALBUM_PHOTO -
BRILLIANT_DIRECTORIES_DELETE_DATA_CATEGORY -
BRILLIANT_DIRECTORIES_DELETE_LEAD
Show all 44 actions
-
BRILLIANT_DIRECTORIES_DELETE_PORTFOLIO_GROUP -
BRILLIANT_DIRECTORIES_DELETE_UNSUBSCRIBE -
BRILLIANT_DIRECTORIES_DELETE_USER -
BRILLIANT_DIRECTORIES_DELETE_USERS_CLICK -
BRILLIANT_DIRECTORIES_DELETE_WIDGET -
BRILLIANT_DIRECTORIES_GET_ALBUM_PHOTO -
BRILLIANT_DIRECTORIES_GET_DATA_CATEGORIES -
BRILLIANT_DIRECTORIES_GET_DATA_CATEGORY -
BRILLIANT_DIRECTORIES_GET_DATA_POST -
BRILLIANT_DIRECTORIES_GET_LEAD -
BRILLIANT_DIRECTORIES_GET_LEAD_FIELDS -
BRILLIANT_DIRECTORIES_GET_PORTFOLIO_GROUP -
BRILLIANT_DIRECTORIES_GET_REVIEW -
BRILLIANT_DIRECTORIES_GET_REVIEWS_FIELDS -
BRILLIANT_DIRECTORIES_GET_UNSUBSCRIBE -
BRILLIANT_DIRECTORIES_GET_USER -
BRILLIANT_DIRECTORIES_GET_USER_FIELDS -
BRILLIANT_DIRECTORIES_GET_USERS_CLICK -
BRILLIANT_DIRECTORIES_GET_USER_TRANSACTIONS -
BRILLIANT_DIRECTORIES_GET_WIDGET -
BRILLIANT_DIRECTORIES_MATCH_LEADS -
BRILLIANT_DIRECTORIES_SEARCH_REVIEWS -
BRILLIANT_DIRECTORIES_SEARCH_USERS -
BRILLIANT_DIRECTORIES_UPDATE_ALBUM_PHOTO -
BRILLIANT_DIRECTORIES_UPDATE_DATA_CATEGORY -
BRILLIANT_DIRECTORIES_UPDATE_DATA_POST -
BRILLIANT_DIRECTORIES_UPDATE_LEAD -
BRILLIANT_DIRECTORIES_UPDATE_PORTFOLIO_GROUP -
BRILLIANT_DIRECTORIES_UPDATE_UNSUBSCRIBE -
BRILLIANT_DIRECTORIES_UPDATE_USER -
BRILLIANT_DIRECTORIES_UPDATE_USERS_CLICK -
BRILLIANT_DIRECTORIES_UPDATE_WIDGET
Build with Brilliant Directories
Open OverSkill, describe what you want to build, and reference Brilliant Directories in your prompt — the AI will wire up the integration automatically.