# RevDesk ## Docs - [Authentication](https://docs.revdesk.com/api-reference/authentication.md): Authenticate API requests using Bearer tokens. - [Branded Calling](https://docs.revdesk.com/api-reference/branded-calling.md): Manage your Display Identity Record (DIR) to show your business name, logo, and call reason on recipients' screens. - [List caller IDs](https://docs.revdesk.com/api-reference/caller-ids/list-caller-ids.md): Returns all caller IDs for the authenticated team, including verification status and CNAM details. - [Start caller ID verification](https://docs.revdesk.com/api-reference/caller-ids/start-caller-id-verification.md): Initiates a call-based verification for the given phone number. Telnyx will call the number and read a verification code that must be submitted via POST /v1/voice/caller-ids/{id}/verify. - [Submit verification code](https://docs.revdesk.com/api-reference/caller-ids/submit-verification-code.md): Submits the verification code received during the caller ID verification call. On success the caller ID status changes to VERIFIED. - [Update CNAM display name](https://docs.revdesk.com/api-reference/caller-ids/update-cnam-display-name.md): Sets the CNAM display name for a verified caller ID. If the caller ID's phone number is also a Telnyx-provisioned phone, the CNAM update is pushed to the carrier. - [Get call details](https://docs.revdesk.com/api-reference/calls/get-call-details.md): Retrieves details for a single call, including duration, status, and recording URL. - [Hang up a call](https://docs.revdesk.com/api-reference/calls/hang-up-a-call.md): Terminates an active call. The call must be in a ringing or in-progress state. Uses the stored Telnyx call_control_id to issue the hangup command. - [Initiate a branded call](https://docs.revdesk.com/api-reference/calls/initiate-a-branded-call.md): Places an outbound call using the specified verified caller ID. The call is routed through Telnyx with caller ID masking applied. - [List call history](https://docs.revdesk.com/api-reference/calls/list-call-history.md): Returns call history for the authenticated team with optional filtering by status, date range, and pagination. - [Conventions](https://docs.revdesk.com/api-reference/conventions.md): Errors, idempotency, and pagination — the HTTP-level conventions that apply to every endpoint. - [Get document status](https://docs.revdesk.com/api-reference/documents/get-document-status.md): Returns metadata for a previously uploaded document, including its verification status and antivirus scan status. - [Upload a document (e.g. signed LOA)](https://docs.revdesk.com/api-reference/documents/upload-a-document-eg-signed-loa.md): Uploads a base64-encoded PDF to the Telnyx Documents API. Returns a document ID that can be passed to the reputation enable endpoint. Documents expire after 30 minutes if not linked to a service — upload immediately before enabling reputation. - [Create a new enterprise registration draft](https://docs.revdesk.com/api-reference/enterprise-registration/create-a-new-enterprise-registration-draft.md): Always creates a new DRAFT enterprise registration (never upserts). Multiple enterprises per account are supported. No carrier-side calls are made here — submission to Telnyx happens via the sign-and-submit endpoint. - [Create or update the caller's enterprise registration draft (deprecated)](https://docs.revdesk.com/api-reference/enterprise-registration/create-or-update-the-callers-enterprise-registration-draft-deprecated.md): **Deprecated** — use `POST /v1/caller-trust/enterprises` to create new enterprises. Idempotent upsert of the own-brand enterprise registration as DRAFT. No carrier-side calls are made here — submission to Telnyx happens in a separate sign-and-submit step. - [Delete enterprise by ID](https://docs.revdesk.com/api-reference/enterprise-registration/delete-enterprise-by-id.md): Deletes a specific enterprise registration. DRAFT records that were never submitted to Telnyx are removed directly. Active records are torn down on Telnyx and marked DELETED locally. - [Delete the caller's enterprise registration (deprecated)](https://docs.revdesk.com/api-reference/enterprise-registration/delete-the-callers-enterprise-registration-deprecated.md): **Deprecated** — use `DELETE /v1/caller-trust/enterprises/{id}` instead. Deletes the first own-brand enterprise registration. DRAFT records that were never submitted to Telnyx are removed directly. Active records are torn down on Telnyx (enterprise + reputation) and marked DELETED locally. - [Generate LOA PDF for enterprise (by ID)](https://docs.revdesk.com/api-reference/enterprise-registration/generate-loa-pdf-for-enterprise-by-id.md): Generates a Letter of Authorization PDF pre-filled with the specified enterprise's data and a blank hand-signature line. Enterprise must have been submitted to Telnyx first (has telnyx_enterprise_id). - [Generate LOA PDF for hand-signing (deprecated)](https://docs.revdesk.com/api-reference/enterprise-registration/generate-loa-pdf-for-hand-signing-deprecated.md): **Deprecated** — use `POST /v1/caller-trust/enterprises/{id}/generate-loa` instead. Generates a Letter of Authorization PDF pre-filled with enterprise data and a blank hand-signature line. Enterprise must have been submitted to Telnyx first (has telnyx_enterprise_id). - [Get enterprise by ID](https://docs.revdesk.com/api-reference/enterprise-registration/get-enterprise-by-id.md): Returns a specific enterprise registration by its ID. - [Get the caller's enterprise registration (deprecated)](https://docs.revdesk.com/api-reference/enterprise-registration/get-the-callers-enterprise-registration-deprecated.md): **Deprecated** — use `GET /v1/caller-trust/enterprises` instead for multi-enterprise support. Returns the first own-brand enterprise record if one has been registered, or null otherwise. - [List enterprise registrations](https://docs.revdesk.com/api-reference/enterprise-registration/list-enterprise-registrations.md): Returns all own-brand enterprise registrations for the caller. Does not include the Cell Labs umbrella enterprise. - [Re-sign LOA for enterprise (by ID)](https://docs.revdesk.com/api-reference/enterprise-registration/re-sign-loa-for-enterprise-by-id.md): Use when the on-file LOA needs to be replaced for a specific enterprise. Replaces the LOA on Telnyx; the old LoaSignature row is preserved for audit. Status resets to PENDING_VETTING. - [Re-sign the LOA for an enterprise (deprecated)](https://docs.revdesk.com/api-reference/enterprise-registration/re-sign-the-loa-for-an-enterprise-deprecated.md): **Deprecated** — use `POST /v1/caller-trust/enterprises/{id}/resign` instead. Use when the on-file LOA needs to be replaced. Replaces the LOA on Telnyx; the old LoaSignature row is preserved for audit. Status resets to PENDING_VETTING. - [Sign LOA + submit enterprise to carrier (by ID)](https://docs.revdesk.com/api-reference/enterprise-registration/sign-loa-+-submit-enterprise-to-carrier-by-id.md): DRAFT -> PENDING_VETTING in one call. Resolves the enterprise by path parameter ID. Generates + signs the LOA PDF, uploads it to Telnyx, creates the carrier enterprise record, and enables Number Reputation. - [Submit enterprise to Telnyx (by ID)](https://docs.revdesk.com/api-reference/enterprise-registration/submit-enterprise-to-telnyx-by-id.md): Accepts Number Reputation Terms of Service and creates the enterprise on Telnyx for the specified enterprise ID. Does NOT sign an LOA or enable reputation — those are separate steps. - [Update a DRAFT enterprise registration](https://docs.revdesk.com/api-reference/enterprise-registration/update-a-draft-enterprise-registration.md): Updates fields on a DRAFT enterprise. Rejects updates to enterprises that have left DRAFT status. - [Introduction](https://docs.revdesk.com/api-reference/index.md): The Cell Labs Voice API lets you place branded calls, manage caller IDs, and track usage programmatically. - [Check live CNAM status](https://docs.revdesk.com/api-reference/phone-numbers/check-live-cnam-status.md): Queries the carrier for the current CNAM status. If the carrier reports CNAM as enabled and the database status is still PENDING, it is automatically promoted to APPROVED. - [List owned phone numbers](https://docs.revdesk.com/api-reference/phone-numbers/list-owned-phone-numbers.md): Returns every Phone row owned by the caller's active organization. - [Purchase a new phone number](https://docs.revdesk.com/api-reference/phone-numbers/purchase-a-new-phone-number.md): Initiates the durable provisioning workflow. Returns 202 with a workflow run id — poll `/v1/phone-numbers/{phone_record_id}` to see when the number goes active. The new number attaches to the caller's active organization. - [Release a phone number](https://docs.revdesk.com/api-reference/phone-numbers/release-a-phone-number.md): Releases the phone number from Telnyx, cancels the Stripe subscription line item, deletes associated call data and recordings, and removes the database record. - [Retrieve a phone number](https://docs.revdesk.com/api-reference/phone-numbers/retrieve-a-phone-number.md): Polls for status. While provisioning is in flight, `is_active=false` and `phone_number` is a `pending:…` placeholder. Once the workflow completes, both fields update atomically. - [Search available phone numbers](https://docs.revdesk.com/api-reference/phone-numbers/search-available-phone-numbers.md): Query carrier inventory for numbers matching the given filters. Returns up to 50 results per call. - [Update a phone number's settings](https://docs.revdesk.com/api-reference/phone-numbers/update-a-phone-numbers-settings.md): Mutates name + recording flags + CNAM display name. CNAM is the caller-ID name shown on outbound calls (max 15 chars, US local numbers only). Setting `cnam_display_name` updates the carrier on the spot — propagation to carriers takes 24-72h. - [Disable Number Reputation monitoring](https://docs.revdesk.com/api-reference/reputation/disable-number-reputation-monitoring.md): Disables reputation monitoring for the caller's enterprise. Only works when the current status is APPROVED. All enrolled numbers will stop being monitored. - [Disenroll a phone number from reputation monitoring](https://docs.revdesk.com/api-reference/reputation/disenroll-a-phone-number-from-reputation-monitoring.md): Removes a phone number from Telnyx Number Reputation monitoring. The number must be currently enrolled. Cached reputation scores are deleted. - [Enable Number Reputation monitoring](https://docs.revdesk.com/api-reference/reputation/enable-number-reputation-monitoring.md): Enables (or re-enables) enterprise-level reputation monitoring via Telnyx/Hiya. Requires an enterprise that has been submitted to the carrier (has a telnyx_enterprise_id) and has an LOA document on file. Idempotent on REJECTED status — calling this after rejection replaces the rejected record with a… - [Enroll phone numbers in reputation monitoring](https://docs.revdesk.com/api-reference/reputation/enroll-phone-numbers-in-reputation-monitoring.md): Enrolls one or more phone numbers in Telnyx Number Reputation monitoring. Numbers must belong to the caller and be in US E.164 format. Enrollment is idempotent — re-enrolling an already-enrolled number is a no-op. - [Get Number Reputation enrollment settings](https://docs.revdesk.com/api-reference/reputation/get-number-reputation-enrollment-settings.md): Status + check frequency for the caller's enterprise-level reputation monitoring. Returns null when the caller is on the umbrella (no per-enterprise settings). - [Get reputation scores for a phone number](https://docs.revdesk.com/api-reference/reputation/get-reputation-scores-for-a-phone-number.md): Returns Hiya-sourced spam risk + 0-100 component scores. Passing `fresh=true` forces a billed live query (rate-limited to 1/day/number). - [List reputation scores for every enrolled number](https://docs.revdesk.com/api-reference/reputation/list-reputation-scores-for-every-enrolled-number.md): Returns per-phone spam risk + component scores for every number the caller owns that's enrolled under an enterprise (either umbrella or own-brand). - [Update reputation check frequency](https://docs.revdesk.com/api-reference/reputation/update-reputation-check-frequency.md): Changes how often Telnyx refreshes spam scores for enrolled numbers. Each refresh is billed per number, so this is a cost lever. Only works when reputation status is APPROVED. - [Send an SMS message](https://docs.revdesk.com/api-reference/sms/send-an-sms-message.md): Sends an outbound SMS from the specified Telnyx phone number. The 'from' number must be an active Telnyx phone number owned by the authenticated organization. - [GET /v1/sms/stream](https://docs.revdesk.com/api-reference/sms/stream.md): Subscribe to real-time inbound SMS events via Server-Sent Events (SSE). - [Per-phone usage](https://docs.revdesk.com/api-reference/usage/per-phone-usage.md): Returns voice usage for a specific phone number in the current calendar month. The phone must belong to the authenticated user or team. - [Voice usage stats](https://docs.revdesk.com/api-reference/usage/voice-usage-stats.md): Returns aggregated voice usage for the current calendar month: total calls placed, minutes used, and a breakdown by call status. - [Get WebRTC connection token](https://docs.revdesk.com/api-reference/webrtc/get-webrtc-connection-token.md): Generates a short-lived Telnyx WebRTC JWT for use with the TelnyxRTC SDK. The mobile/web client uses this token to establish a WebRTC session and dial directly from the client side. - [Call Quality & Carriers](https://docs.revdesk.com/concepts/call-quality-carriers.md): How tier-1 carrier partnerships give RevDesk customers better pickup rates, cleaner audio, and lower per-minute pricing. - [Caller Trust](https://docs.revdesk.com/concepts/caller-trust.md): Number reputation and branded calling, the two carrier-level features that keep outbound calls out of spam-filter purgatory. - [HIPAA & BAA coverage](https://docs.revdesk.com/concepts/hipaa.md): How RevDesk supports HIPAA workloads, what our BAA covers, and how to request one. - [Train your AI on your business](https://docs.revdesk.com/concepts/knowledge-base.md): A knowledge base is what makes the AI useful. Teach it your business once and every call benefits from it. - [Outreach audit & consent records](https://docs.revdesk.com/concepts/outreach-audit.md): How RevDesk captures consent metadata, attaches disclosures, and persists an audit trail for outbound communications. - [Sub-entities (multi-tenant organizations)](https://docs.revdesk.com/concepts/sub-entities.md): Provision and manage child workspaces — clinic locations, franchisees, end-client accounts — under one umbrella organization. - [Three agents, one pipeline](https://docs.revdesk.com/concepts/your-ai-team.md): Voice, chat, and email agents that share one contact record, one qualification model, and one hand-off path, running on a live data layer that sources accounts and keeps every record current. - [Real-time calendar booking](https://docs.revdesk.com/concepts/your-calendar.md): Your AI books against your live calendar. Real availability, real bookings, no manual coordination after the call. - [Custom Prompts](https://docs.revdesk.com/getting-started/customization/custom-prompts.md): Fine-tune how your AI handles specific situations. Go beyond templates with custom instructions. - [Custom Sequences](https://docs.revdesk.com/getting-started/customization/custom-sequences.md): Build automated call sequences that trigger based on events in your business. - [Integrations Overview](https://docs.revdesk.com/getting-started/customization/integrations.md): Connect RevDesk to your calendar, CRM, and the rest of your stack so everything stays in sync. - [FAQ](https://docs.revdesk.com/getting-started/faq.md): Frequently asked questions about RevDesk. Find answers to common questions about setup, features, billing, and more. - [Call Capacity Planning](https://docs.revdesk.com/getting-started/features/call-capacity.md): Understand how phone numbers and dedicated lines control your outbound call throughput. Plan your setup by budget or goal. - [Outbound Campaigns](https://docs.revdesk.com/getting-started/features/campaigns.md): Outbound calling at scale. Lead follow-up, appointment reminders, re-engagement, and form-to-call workflows. - [Compliance & Regulations](https://docs.revdesk.com/getting-started/features/compliance.md): Understand calling regulations and stay compliant. TCPA, DNC, and best practices. - [Inbox](https://docs.revdesk.com/getting-started/features/inbox.md): Every call, message, and conversation in one place. Full transcript, recording, and AI summary attached to each one. - [Insights & Analytics](https://docs.revdesk.com/getting-started/features/insights.md): Understand how your AI is performing. See call volumes, conversion rates, and trends over time. - [Round-Robin Distribution](https://docs.revdesk.com/getting-started/features/round-robin.md): Distribute calls and bookings evenly across your team. - [SMS & Messaging](https://docs.revdesk.com/getting-started/features/sms.md): Text your customers automatically. Send reminders, confirmations, and follow-ups via SMS. - [Team Management](https://docs.revdesk.com/getting-started/features/teams.md): Set up your team and manage permissions. Control who has access to what. - [Quickstart](https://docs.revdesk.com/getting-started/quickstart.md): Sign up, pick a number, connect your calendar. Your AI is taking real calls 15 minutes from now. - [Phone Numbers](https://docs.revdesk.com/getting-started/setup/phone-numbers.md): Get a new phone number or forward your existing one. Your AI needs a number to answer. - [Testing Your AI](https://docs.revdesk.com/getting-started/setup/testing.md): Test your AI before going live. Make sure it handles calls the way you expect. - [Voice & Personality](https://docs.revdesk.com/getting-started/setup/voice-personality.md): Choose how your AI sounds and communicates. Pick a voice, set the tone, and make it yours. - [RevDesk](https://docs.revdesk.com/index.md): A complete revenue platform. Source the right buyers, enrich every record, and reach more on voice, chat, and email. Qualify live, and book the meeting before the moment cools. - [Google Sheets](https://docs.revdesk.com/integrations/automation/google-sheets.md): Auto-sync qualified leads from AI calls to a Google Sheet. Great for shared visibility, ad-hoc reporting, or feeding another tool. - [Zapier](https://docs.revdesk.com/integrations/automation/zapier.md): Connect RevDesk to 8,000+ apps through Zapier. Automate workflows without writing code. - [Zoho Campaigns](https://docs.revdesk.com/integrations/automation/zoho-campaigns.md): Auto-configure Zoho Campaigns webhooks so email engagement triggers AI follow-up calls in real time. - [Apple Calendar](https://docs.revdesk.com/integrations/calendar/apple-calendar.md): Bookings land on your Apple Calendar over iCloud, with two-way sync across every device on the account. - [Google Calendar](https://docs.revdesk.com/integrations/calendar/google-calendar.md): Bookings land on the right Google Calendar before the prospect ends the call. Two-way sync across personal Gmail and Workspace accounts, no double-bookings. - [ICS Feed](https://docs.revdesk.com/integrations/calendar/ics-feed.md): Read-only availability from any calendar that exports an ICS feed. Use it for secondary calendars and conflict-checking alongside a direct integration. - [Outlook and Office 365](https://docs.revdesk.com/integrations/calendar/outlook.md): Bookings land on the right Outlook calendar before the prospect ends the call. Two-way sync across Outlook.com and Microsoft 365, Teams links included. - [Zoho Calendar](https://docs.revdesk.com/integrations/calendar/zoho-calendar.md): Bookings land on your Zoho Calendar and link to your Zoho CRM contacts automatically. Best for teams already running on the Zoho suite. - [HubSpot](https://docs.revdesk.com/integrations/crm/hubspot.md): Sync RevDesk with HubSpot CRM to trigger AI calls from workflows, log call results, import contacts, and create deals. - [LeadConnector](https://docs.revdesk.com/integrations/crm/leadconnector.md): Sync qualified leads and call results back to LeadConnector (GoHighLevel). Contacts are tagged with AICALL so you can trigger CRM workflows. - [Zoho CRM](https://docs.revdesk.com/integrations/crm/zoho-crm.md): Sync RevDesk with Zoho CRM to manage leads, log calls, and automate your sales process. - [Integrations](https://docs.revdesk.com/integrations/index.md): Connect RevDesk to your calendar, CRM, video conferencing, messaging, and automation tools. All integrations sync in real time and set up without code. - [Email](https://docs.revdesk.com/integrations/messaging/email.md): Configure your sending domain, verify DNS, and create reusable templates so your campaigns and follow-ups land in the inbox. - [Slack](https://docs.revdesk.com/integrations/messaging/slack.md): Get real-time RevDesk notifications in Slack channels. Know instantly when calls come in and appointments get booked. - [WhatsApp](https://docs.revdesk.com/integrations/messaging/whatsapp.md): Send confirmations, reminders, and follow-ups over WhatsApp where SMS open rates are dropping. Two-way replies route through the same RevDesk contact record. - [Giphy](https://docs.revdesk.com/integrations/other/giphy.md): Add GIFs to your RevDesk booking pages and confirmation messages for a more engaging experience. - [HIPAA Business Associate Agreement](https://docs.revdesk.com/integrations/other/hipaa.md): Business Associate Agreement for healthcare organizations. Handle protected health information compliantly. - [AI Forms](https://docs.revdesk.com/integrations/other/routing-forms.md): Intelligent call routing based on form responses. Direct callers to the right team or service automatically. - [Google Meet](https://docs.revdesk.com/integrations/video/google-meet.md): Booked appointments get a Google Meet link automatically. The customer joins from the calendar invite, no setup on their side. - [Microsoft Teams](https://docs.revdesk.com/integrations/video/microsoft-teams.md): Booked appointments get a Microsoft Teams meeting link automatically. The customer joins from the Outlook invite, no setup on their side. - [Affiliate Program](https://docs.revdesk.com/partners/affiliate/index.md): Earn 20% recurring commission for 12 months on every referral. Share your link, we handle everything else. - [Request a Demo](https://docs.revdesk.com/partners/demo.md): See the RevDesk reseller platform in action. 30-minute personalized demo for potential partners. - [Partner Program](https://docs.revdesk.com/partners/index.md): Resell AI voice automation under your own brand. Affiliate commissions or full white-label. You set the pricing, you keep the margin. - [Partner Success Stories](https://docs.revdesk.com/partners/success-stories/index.md): See how agencies, consultants, and MSPs are building recurring revenue with RevDesk. - [Reseller Program](https://docs.revdesk.com/partners/white-label/index.md): Offer AI voice automation under your own brand. Start with a subdomain or go full white-label. - [Reseller Pricing](https://docs.revdesk.com/partners/white-label/pricing.md): Simple, flat-rate partner pricing. $37/seat. No minimums. No hidden fees. - [Code Review Process](https://docs.revdesk.com/policies/code-review-process.md): How RevDesk (Cell Labs, Inc.) reviews code changes before they reach production. Public reference for the procedure cited in our Secure Development Policy. - [Engineering Documentation](https://docs.revdesk.com/policies/engineering-documentation.md): Secure-by-design and privacy-by-design principles applied across RevDesk (Cell Labs, Inc.) engineering, plus environment, vulnerability management, and developer training references. - [Privacy Policy](https://docs.revdesk.com/policies/privacy-policy.md): How RevDesk (Cell Labs, Inc.) collects, uses, and protects your data. - [Security](https://docs.revdesk.com/policies/security.md): Encryption posture, sub-processors, access controls, retention, and residency. The full picture for security and compliance reviews. - [Terms of Service](https://docs.revdesk.com/policies/terms-of-service.md): The agreement that governs your use of RevDesk (Cell Labs, Inc.). - [Pricing](https://docs.revdesk.com/pricing.md): Four tiers from \$95/mo. Pay annually and get 2 months free. Start for \$20 with a 14-day trial. - [ROI](https://docs.revdesk.com/roi.md): Cost per booked meeting on RevDesk, worked through against a small broker shop and a 30-person sales org. The unit that matters is meetings on calendars, not minutes or leads. - [Case studies](https://docs.revdesk.com/solutions/case-studies/index.md): Real outcomes from teams running RevDesk in production. Customer details anonymized at their request; metrics are pulled directly from the database. - [Lending broker](https://docs.revdesk.com/solutions/case-studies/lending-broker.md): A small-business lending broker runs outbound work across three channels. 29 qualified leads at about \$44 each, on roughly \$1,280 of voice spend over six weeks. - [vs. Answering services](https://docs.revdesk.com/solutions/comparisons/vs-answering-services.md): Phone answering services take messages. RevDesk has the conversation, qualifies, and books on the call. - [vs. Build-it-yourself](https://docs.revdesk.com/solutions/comparisons/vs-developer-platforms.md): When raw voice APIs and a six-month build make sense, and when buying a ready platform makes more. - [vs. Hiring](https://docs.revdesk.com/solutions/comparisons/vs-hiring.md): Headcount math against an always-on AI. When hiring still makes sense, and when RevDesk is the better fit. - [After-Hours Coverage](https://docs.revdesk.com/solutions/core-solutions/after-hours-coverage.md): Inbound coverage nights, weekends, and holidays. Routine bookings roll to the next business day. Urgent inquiries route by your rules. - [Enrich Leads](https://docs.revdesk.com/solutions/core-solutions/enrich-leads.md): Fill missing fields on every record. Identify unknown callers before the voice agent picks up. Keep the CRM current without a data ops team. - [Get More Reviews](https://docs.revdesk.com/solutions/core-solutions/get-more-reviews.md): Post-engagement check-in calls that route satisfied customers to your review platform of choice. Works for SaaS, healthcare, services, and any business where reputation drives revenue. - [Handle Every Inbound](https://docs.revdesk.com/solutions/core-solutions/handle-every-call.md): 24/7 inbound coverage across voice and chat. Live qualification, calendar-backed booking, transcript and CRM sync the moment the conversation ends. - [Qualify Before Booking](https://docs.revdesk.com/solutions/core-solutions/qualify-before-booking.md): Every meeting that lands on an AE's calendar passes a real qualification call first. Clean pipeline, protected calendars, full context for the rep. - [Re-engage Cold Leads](https://docs.revdesk.com/solutions/core-solutions/re-engage-cold-leads.md): Rework older lists at scale. Real conversations, CRM status updates from what the contact actually says, meetings booked with the ready buyers. - [Reduce No-Shows](https://docs.revdesk.com/solutions/core-solutions/reduce-no-shows.md): Confirmation and reminder calls handled by an AI that reschedules on the line. Cuts no-show rate on demos, consultations, and appointments by 40 to 60 percent. - [Scale Without Hiring](https://docs.revdesk.com/solutions/core-solutions/scale-without-hiring.md): Routine pipeline work handled by AI agents. Capacity grows with pipeline rather than with headcount. Humans handle the conversations that need them. - [Source Leads](https://docs.revdesk.com/solutions/core-solutions/source-leads.md): Build a fresh pipeline of accounts and contacts that match your ICP. Verified, deduped against your CRM, and pre-enriched before the first dial. - [Speed to Lead](https://docs.revdesk.com/solutions/core-solutions/speed-to-lead.md): Call new leads inside 60 seconds of form submission. Live qualification on the call, calendar-backed booking onto the right rep before the lead loses momentum. - [Solutions](https://docs.revdesk.com/solutions/index.md): GTM outcomes you can deploy today. Source the right buyers, enrich every record, reach them in under a minute, qualify live, and book the meeting onto the right rep's calendar. - [By industry](https://docs.revdesk.com/solutions/industries.md): How revenue teams in legal, SaaS, financial services, healthcare, real estate, higher ed, e-commerce, and manufacturing deploy RevDesk against their specific intent-decay curve. ## OpenAPI Specs - [openapi](https://docs.revdesk.com/openapi.json)