Developer docs

Accredible certificates integration

Accredible Certificates is a platform that enables organizations to create,…

Updated June 2026 36 actions available

Provider
accredible_certificates
Category
Other
Setup
User-supplied API key
Actions
36 available

Quick start

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

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

Show all 36 actions
  • ACCREDIBLE_CERTIFICATES_DELETE_REFERENCE
  • ACCREDIBLE_CERTIFICATES_GENERATE_PD_FS_FOR_CREDENTIALS
  • ACCREDIBLE_CERTIFICATES_GET_ANALYTICS
  • ACCREDIBLE_CERTIFICATES_GET_CREDENTIAL
  • ACCREDIBLE_CERTIFICATES_GET_CREDENTIAL_ANALYTICS
  • ACCREDIBLE_CERTIFICATES_GET_DEPARTMENT
  • ACCREDIBLE_CERTIFICATES_GET_EVIDENCE_ITEM
  • ACCREDIBLE_CERTIFICATES_GET_GROUP
  • ACCREDIBLE_CERTIFICATES_GET_ISSUER
  • ACCREDIBLE_CERTIFICATES_GET_REFERENCE
  • ACCREDIBLE_CERTIFICATES_INITIALIZE_BADGE_DESIGNER
  • ACCREDIBLE_CERTIFICATES_INITIALIZE_CERTIFICATE_DESIGNER
  • ACCREDIBLE_CERTIFICATES_LIST_TEMPLATES
  • ACCREDIBLE_CERTIFICATES_SEARCH_ATTRIBUTE_KEYS
  • ACCREDIBLE_CERTIFICATES_SEARCH_COLLECTIONS
  • ACCREDIBLE_CERTIFICATES_SEARCH_CREDENTIALS_V2
  • ACCREDIBLE_CERTIFICATES_SEARCH_DEPARTMENTS
  • ACCREDIBLE_CERTIFICATES_SEARCH_DESIGNS
  • ACCREDIBLE_CERTIFICATES_SEARCH_GROUPS
  • ACCREDIBLE_CERTIFICATES_UPDATE_CREDENTIAL
  • ACCREDIBLE_CERTIFICATES_UPDATE_EVIDENCE_ITEM
  • ACCREDIBLE_CERTIFICATES_UPDATE_GROUP
  • ACCREDIBLE_CERTIFICATES_UPDATE_REFERENCE
  • ACCREDIBLE_CERTIFICATES_VIEW_ALL_SKILL_CATEGORIES

Build with Accredible certificates

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