Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Jiminny connector

Bearer Token crmsalesaiautomation

Connect with Jiminny to access call recordings, transcripts, coaching insights, and conversation intelligence data.

Jiminny connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. Register your Jiminny credentials with Scalekit so it can authenticate requests on your behalf. You do this once per environment.

    Dashboard setup steps

    Register your Jiminny API key with Scalekit so it can authenticate requests to Jiminny’s conversation intelligence API on your behalf. You’ll need an API key from your Jiminny organisation settings.

    1. Generate an API key in Jiminny

      • Sign in to Jiminny and navigate to Organisation SettingsGeneral.

      • Scroll to the API Key section and click Generate API Key.

      • Click Copy to copy the key to your clipboard. Store it securely — you can regenerate it later, but doing so invalidates the previous key and breaks existing integrations.

      Jiminny Organisation Settings showing the API Key section with Generate API Key button

    2. Create a connection in Scalekit

      In Scalekit dashboard, go to AgentKit > Connections > Create Connection. Find Jiminny and click Create.

      Jiminny connection configuration in Scalekit dashboard showing connection name and Bearer Token auth type

    3. Add a connected account

      Open the connection you just created and click the Connected Accounts tab → Add account. Fill in the required fields:

      • Your User’s ID — a unique identifier for the user in your system
      • Bearer Token — the API key you copied in step 1

      Add connected account modal with Your User's ID and Bearer Token fields

      Click Save.

  4. quickstart.ts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENV_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'jiminny'
    const identifier = 'user_123'
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'jiminny_activities_list',
    toolInput: {},
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Get webhook sample, questions, transcript — Retrieve a sample webhook payload for a given trigger event type to understand the data structure that will be sent
  • Xyz test tool — Test
  • Create webhook — Create a webhook subscription that sends event payloads to a destination URL when a specified trigger occurs in Jiminny
  • List comments, automated call scoring, users — Retrieve activity comment records with optional filters by user and date range, returning comment IDs, activity IDs, user IDs, and creation timestamps
  • Upload activity — Upload a call or meeting recording file to Jiminny for transcription and analysis, returning the new activity ID on success
  • Delete webhook — Delete an existing webhook subscription by its UUID

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

jiminny_action_items_get # Retrieve the AI-generated action items for a given activity, returning a list of follow-up tasks identified from the conversation. 1 param

Retrieve the AI-generated action items for a given activity, returning a list of follow-up tasks identified from the conversation.

Name Type Required Description
activityId string required The UUID of the activity to retrieve action items for.
jiminny_activities_list # Retrieve completed and processed call and meeting activities with optional date range, update date range, status, and page filters. The time range must be less than six months and you must provide either fromDate/toDate or updatedFrom. 6 params

Retrieve completed and processed call and meeting activities with optional date range, update date range, status, and page filters. The time range must be less than six months and you must provide either fromDate/toDate or updatedFrom.

Name Type Required Description
fromDate string optional Filter activities that occurred after this UTC date-time (e.g. 2021-10-01 00:00:00). Must be before toDate.
page integer optional Page number to return (page size is 500 activities). Default is 1.
status string optional Filter activities by status: in-progress, completed (for calls/meetings), received, sent, delivered (for SMS/Voice dialer).
toDate string optional Filter activities that occurred before this UTC date-time (e.g. 2021-11-01 00:00:00). Cannot be a future date.
updatedFrom string optional Filter activities updated after this UTC date-time (e.g. 2021-11-01 00:00:00). Must be before updatedTo.
updatedTo string optional Filter activities updated before this UTC date-time. Cannot be a future date. Defaults to current time.
jiminny_activity_upload # Upload a call or meeting recording file to Jiminny for transcription and analysis, returning the new activity ID on success. 10 params

Upload a call or meeting recording file to Jiminny for transcription and analysis, returning the new activity ID on success.

Name Type Required Description
hostUserEmail string required The email address of the host user. Must belong to the authenticated team.
language string required The language locale of the activity (e.g. en_GB, en_US, fr_FR).
title string required The title of the activity (max 250 characters).
accountId string optional An optional CRM Account ID to associate with this activity (max 100 characters).
completedAt string optional The date the activity was completed (format: YYYY-MM-DD).
externalId string optional An optional external identifier for this activity (max 191 characters). Must be unique per host user.
leadId string optional An optional CRM Lead ID to associate with this activity (max 180 characters).
notifyForUploadCompletionByEmail boolean optional Whether to notify the host user via email when the upload and processing is complete.
opportunityId string optional An optional CRM Opportunity ID to associate with this activity (max 100 characters).
skipFullAnalysis boolean optional Whether to skip the full AI analysis of the uploaded activity.
jiminny_automated_call_scoring_list # Retrieve automated call scoring records with optional filters by user and date range, returning scores, activity types, and user details. 3 params

Retrieve automated call scoring records with optional filters by user and date range, returning scores, activity types, and user details.

Name Type Required Description
fromDate string optional Filter scoring records created after this UTC date-time (e.g. 2021-10-01 00:00:00).
toDate string optional Filter scoring records created before this UTC date-time (e.g. 2021-11-01 00:00:00). Cannot be a future date.
userId string optional Optional UUID of the user to filter automated call scoring results by.
jiminny_coaching_feedback_list # Retrieve bulk coaching feedback records within a required date range, optionally filtered by coach or coachee, returning scores, activity IDs, and timestamps. 4 params

Retrieve bulk coaching feedback records within a required date range, optionally filtered by coach or coachee, returning scores, activity IDs, and timestamps.

Name Type Required Description
fromDate string required Filter coaching feedback records created after this UTC date-time (e.g. 2021-10-01 00:00:00). Must be before toDate.
toDate string required Filter coaching feedback records created before this UTC date-time (e.g. 2021-11-01 00:00:00). Cannot be a future date.
coacheeId string optional Optional UUID of the coachee (sales rep) to filter coaching feedback by.
coachId string optional Optional UUID of the coach (manager) to filter coaching feedback by.
jiminny_comments_list # Retrieve activity comment records with optional filters by user and date range, returning comment IDs, activity IDs, user IDs, and creation timestamps. 3 params

Retrieve activity comment records with optional filters by user and date range, returning comment IDs, activity IDs, user IDs, and creation timestamps.

Name Type Required Description
fromDate string optional Filter comments created after this UTC date-time (e.g. 2021-10-01 00:00:00). Must be before toDate.
toDate string optional Filter comments created before this UTC date-time (e.g. 2021-11-01 00:00:00). Cannot be a future date.
userId string optional Optional UUID of the user to filter comments by.
jiminny_listens_list # Retrieve listened (played) activity records within a date range, optionally filtered by user, showing who listened to which activities and when. 3 params

Retrieve listened (played) activity records within a date range, optionally filtered by user, showing who listened to which activities and when.

Name Type Required Description
fromDate string required Filter listened activities that occurred after this UTC date-time (e.g. 2021-10-01 00:00:00). Must be before toDate.
toDate string required Filter listened activities that occurred before this UTC date-time (e.g. 2021-11-01 00:00:00). Cannot be a future date.
userId string optional Optional UUID of the user to filter listened activities by.
jiminny_organization_get # Return the current authenticated Organization details including name, CRM integration, calendar type, and address. 0 params

Return the current authenticated Organization details including name, CRM integration, calendar type, and address.

jiminny_questions_get # Retrieve questions detected in a specific activity, including their timestamps, speaker participant IDs, text, and whether they are engaging or insightful. 1 param

Retrieve questions detected in a specific activity, including their timestamps, speaker participant IDs, text, and whether they are engaging or insightful.

Name Type Required Description
activityId string required The UUID of the activity to retrieve detected questions for.
jiminny_summary_get # Get the AI-generated conversation summary for a given activity, returning the summary content text. 1 param

Get the AI-generated conversation summary for a given activity, returning the summary content text.

Name Type Required Description
activityId string required The UUID of the activity to retrieve the summary for.
jiminny_test_tool_xyz # Test. 0 params

Test.

jiminny_topic_triggers_list # Retrieve all topic triggers configured for the authenticated team, returned as a hierarchy of themes, topics, and trigger keywords. 0 params

Retrieve all topic triggers configured for the authenticated team, returned as a hierarchy of themes, topics, and trigger keywords.

jiminny_topic_triggers_matched_get # Retrieve all topic triggers that were matched within a specific activity, including the theme, topic, trigger keyword, timestamps, and matched text excerpt. 1 param

Retrieve all topic triggers that were matched within a specific activity, including the theme, topic, trigger keyword, timestamps, and matched text excerpt.

Name Type Required Description
activityId string required The UUID of the activity to retrieve matched topic triggers for.
jiminny_transcript_get # Retrieve transcription segments for a given activity, returning an array of timed speech segments with speaker participant IDs. 1 param

Retrieve transcription segments for a given activity, returning an array of timed speech segments with speaker participant IDs.

Name Type Required Description
activityId string required The UUID of the activity to retrieve the transcription for.
jiminny_users_list # Retrieve all users belonging to the authenticated team, including their IDs, names, emails, statuses, team names, CRM IDs, and roles. 0 params

Retrieve all users belonging to the authenticated team, including their IDs, names, emails, statuses, team names, CRM IDs, and roles.

jiminny_webhook_create # Create a webhook subscription that sends event payloads to a destination URL when a specified trigger occurs in Jiminny. 3 params

Create a webhook subscription that sends event payloads to a destination URL when a specified trigger occurs in Jiminny.

Name Type Required Description
trigger string required The event trigger for the webhook. One of: coaching_feedback_completed, conversation_shared, conversation_exported, conversation_processed, conversation_played.
url string required The destination URL to receive the webhook payload (max 191 characters).
external_id string optional An optional external identifier for the webhook (max 191 characters).
jiminny_webhook_delete # Delete an existing webhook subscription by its UUID. 1 param

Delete an existing webhook subscription by its UUID.

Name Type Required Description
id string required UUID of the webhook to delete.
jiminny_webhook_sample_get # Retrieve a sample webhook payload for a given trigger event type to understand the data structure that will be sent. 1 param

Retrieve a sample webhook payload for a given trigger event type to understand the data structure that will be sent.

Name Type Required Description
trigger string required The webhook trigger event type to get a sample payload for.