Associate
Administrator
Developer
Consultant
Marketing
Architect
Accredited Professional
Sales
Designer
Tableau
Claude

Updated for Summer '26

New to this track? Our Salesforce Certified Platform Developer exam prep is the recommended first step. See our certification path to understand where this certification fits. The Salesforce Certified Heroku Developer Accredited Professional exam weights Heroku Development most heavily (35%) — see the full breakdown, study tips, and practice questions below. Ready to book? Read our exam tips and study plan.

60 practice Qs800+ students/moUpdated Summer '26Verified vs official exam guide

Join 800+ passed this month • Updated for 2026 • No sign-up required

Updated for Summer '26

This page is reviewed every release to stay aligned with the current exam blueprint.

Exam Blueprint Aligned

Section weightages match the official Summer '26 exam guide

Questions Reviewed

Practice questions and explanations checked each release cycle

Works on Any Device

Full practice experience on phone, tablet, or desktop

Free, No Sign-Up

Start practicing immediately — no account or email required

Krishna Mohan — 5x Salesforce certified author

Written & verified by Krishna Mohan

5× Salesforce Certified · 12+ years in data engineering & Salesforce · Updated for Summer '26

ADM-201PD1PD2App BuilderSales Cloud Consultant

Verify on Trailblazer.me · Methodology · Contact

Who is the Heroku Developer Accredited Professional exam for?

  • Heroku developers: You deploy and manage apps on Heroku's PaaS — Dynos, Postgres, buildpacks, and add-ons — and want to validate your platform operations skills.
  • Salesforce-adjacent developers: You build custom apps on Heroku that integrate with Salesforce via Heroku Connect and need to prove your understanding of that sync layer.
  • Career builders: You want a focused credential that strengthens your resume for developer roles spanning both Heroku and the Salesforce ecosystem.

Exam Fees & Registration

Exam Fee

$150

One-time registration fee

Retake Fee

$150

If you need to retake the exam

Comparing certs? View all Salesforce exam fees in one place →

Certification Validity

Your Salesforce Certified Heroku Developer Accredited Professional certification is valid for 3 years from the date you pass the exam. You'll need to maintain your certification through continuing education or retake the exam.

How to Register

Register for the Salesforce Certified Heroku Developer Accredited Professional exam through the official Salesforce certification portal.

Register for Exam

Exam data verification: questions, duration, passing score, fees, and section coverage were checked against official source references on .

Official sources: Salesforce exam pricing·Independent prep resource; no braindumps or leaked exam questions.

APIntermediate

Salesforce Certified Heroku Developer Accredited Professional – Complete Summer '26 Guide

This exam covers hands-on Heroku development: deploying apps with buildpacks, configuring dynos, managing add-ons, and integrating with Salesforce via Heroku Connect. Expect questions on Procfile setup, config vars, and worker-based background jobs.

60
Questions
68%
Passing Score
90 min
Duration
$150
Exam Fee

Salesforce Certified Heroku Developer Accredited Professional Exam Weightage by Section

Heroku Development35%
Apps and Add-ons35%
Deployment and Best Practices30%

Exam Topics

HerokuPaaSDynosBuildpacksAdd-onsAPIsBest Practices

Exam Tips

  • 1Heroku Development and Apps/Add-ons are 70%—know dynos, buildpacks, add-ons, and deployment.
  • 2Understand Heroku development: dynos, buildpacks, config vars, and deployment.
  • 3Know deployment and best practices: Git deployment, CI/CD, and monitoring.
  • 4Be ready for "how do you develop X?" questions.

Prerequisites

  • Heroku development experience
  • Programming knowledge

Focus Areas

  • Heroku Development
  • Apps and Add-ons
  • Deployment and Best Practices

Study Strategy

Develop and deploy apps on Heroku.

Use add-ons, configure dynos, and set up CI/CD.

Align with the exam outline.

Exam Format and First-Attempt Readiness

The Salesforce Certified Heroku Developer Accredited Professional exam has 60 questions in 90 min, passing score 68%. Most Salesforce exams test scenario-based decisions — focus on when to use each feature, not just terms.

  • Study Heroku Development and Apps and Add-ons first — together they carry 70% of the exam.
  • Do timed question sets. Build pacing and confidence.
  • Review why wrong answers are wrong. It improves scenario reasoning.
  • Book the exam once your mock scores are steady above 68%.
Is the Heroku Developer Accredited Professional Exam Hard?
Heroku Developer Accredited Professional Exam Format Explained

Heroku Developer AP: Key Concepts for the Exam

Buildpacks, Runtime & Procfile

Heroku detects the language/framework of an app using Buildpacks — Node.js, Python, Ruby, Java, Go, and more are officially supported. Custom Buildpacks extend the detection and build process. The build process: push code → detect buildpack → compile → create slug → deploy to dynos. The Procfile defines process types: `web: node server.js` (HTTP), `worker: node worker.js` (background). Multiple process types can run simultaneously. Eco and Basic dynos sleep after inactivity. The `heroku local` command runs the Procfile locally using `.env` for config vars. The AP exam tests how to configure a Procfile for a multi-process app and how to debug a build failure using build logs.

Config Vars, Add-ons & Environment Management

Config Vars are environment variables set per Heroku app — accessible in code as `process.env.VAR_NAME`. Never hardcode secrets; always use Config Vars. Add-ons extend Heroku apps with third-party services (databases, email, monitoring, logging) — provisioned via `heroku addons:create`. Each add-on sets Config Vars automatically (e.g., DATABASE_URL for Postgres). Add-on plans scale independently from app dynos. The Heroku CLI (`heroku config:set`, `heroku addons`) manages Config Vars and Add-ons. The AP exam tests how to pass secrets to a Heroku app securely, how to provision and configure an add-on, and how to rotate credentials without downtime.

Heroku Connect & Salesforce Integration

Heroku Connect maps Salesforce object records to Heroku Postgres tables, syncing data bidirectionally on a configurable schedule. Setup: provision Heroku Connect add-on → authenticate with Salesforce → create mappings (object, fields, direction). Read mappings pull Salesforce data to Postgres. Write mappings push Postgres changes back to Salesforce. Conflict detection handles records modified in both systems simultaneously. The `_hc_lastop`, `_hc_err`, and `isdeleted` system columns track sync status. Connection limits on Salesforce API calls govern sync frequency. The AP exam tests how to configure a Heroku Connect mapping, troubleshoot sync errors, and design for high-volume bidirectional sync within Salesforce API limits.

Async Jobs, Workers & Message Queues

Background processing on Heroku uses Worker dynos. Job queues (Redis-backed: Bull, Bee-Queue for Node.js; Celery for Python; Sidekiq for Ruby) decouple work submission from processing. Pattern: web dyno enqueues a job → worker dyno processes it asynchronously. This prevents long-running tasks from blocking HTTP responses and allows independent scaling of web vs. worker processes. Scheduled tasks use Heroku Scheduler add-on (cron-like) or clock processes in the Procfile. Dead Letter Queues capture failed jobs for retry or investigation. The exam tests how to architect a job queue for a given throughput requirement and how to handle job failures gracefully.

Monitoring, Logging & Performance

Heroku Logplex aggregates logs from all Dynos, Router, and add-ons into a unified stream — `heroku logs --tail` for real-time viewing. Log Drains forward logs to external services (Papertrail, Datadog, Splunk). Application metrics (response time, throughput, error rate) are visible in the Heroku Dashboard. Dyno metrics show CPU and memory usage — memory leaks cause R14 (memory quota exceeded) errors. R10 (Boot timeout), H10 (App crashed), H12 (Request timeout at 30s) are common Heroku error codes. New Relic, Scout APM, and Datadog add-ons provide application performance monitoring. The exam tests how to diagnose a performance problem using logs and metrics, and how to configure alerting for dyno errors.

How to Pass the Heroku Developer Accredited Professional Exam

The Heroku Developer AP exam tests hands-on Heroku development: deploying applications, configuring dynos, working with add-ons, and integrating with Salesforce via Heroku Connect.

Heroku Deployment Workflow

Know the Heroku deployment flow: git push heroku main, Procfile configuration (web/worker dyno types), buildpack selection (auto-detected or explicit), and how release commands run post-deploy tasks.

Dyno Configuration & Scaling

Know dyno types (eco, basic, standard, performance), how to scale horizontally (heroku ps:scale web=3) and vertically (dyno size), and how the Heroku Router distributes requests across web dynos.

Heroku Postgres

Know Heroku Postgres tiers, how to provision a database (heroku addons:create heroku-postgresql), run psql console sessions, create and restore backups, and promote a follower database during failover.

Heroku Connect Setup

Know how to configure Heroku Connect: creating the connection, mapping Salesforce objects to Postgres tables, configuring sync direction (bidirectional, Salesforce to Heroku, Heroku to Salesforce), and troubleshooting sync errors.

Config Vars & Add-ons

Know how to manage Heroku config vars (environment variables) for storing credentials, how to provision common add-ons (Redis, SendGrid, Papertrail), and how to use the Heroku CLI to manage your application.

Is the Salesforce Certified Heroku Developer Accredited Professional Exam Hard?

DifficultyModerate; plan about 4-8 weeks of focused prep.

Book When ReadyScore 80%+ on three timed mocks before scheduling.

Use Practice, Not DumpsOriginal practice questions build skill without risking your credential.

Exam format: 60 questions, 90 min, 68% passing score.

Get the Full Question Bank

Most candidates book the exam after scoring 75%+ on full mocks.

If you’re planning to test this quarter, aim to complete full mocks at least 10–14 days before your exam date.

Want to ensure you pass on your first try? Contact us for more information on our full 60-question mock exams and a personalized study plan. You can also reach out to km.krishnamohan25@gmail.com.

Request Mock Exams & Study Plan

Salesforce Certified Heroku Developer Accredited Professional Exam FAQs

What is covered on the Salesforce Certified Heroku Developer Accredited Professional exam?
This page shows the section-wise exam weightage so you know exactly which topics carry the most weight. Use the exam topics and practice questions above to align your study with the official outline.
What is Heroku Developer Accredited Professional?
Heroku Developer AP validates skills in developing and deploying applications on Heroku, including dyno management, add-ons, buildpacks, and deployment strategies.

Next Certifications After This AP

AP credentials pair well with core platform certifications. Consider: