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.
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

Written & verified by Krishna Mohan
5× Salesforce Certified · 12+ years in data engineering & Salesforce · Updated for Summer '26
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 ExamExam 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.
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.
Recommended Prerequisites
We recommend completing this certification first to prepare you better.
Salesforce Certified Heroku Developer Accredited Professional Exam Weightage by Section
Exam Topics
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?
Is the Heroku Developer Accredited Professional Exam Hard?
The Heroku Developer AP exam is moderately difficult because it tests platform-specific concepts — dyno types, release phases, and add-on configuration — that fall outside typical Salesforce Core knowledge.
- 60 questions in 90 min.
- 68% passing score — build a margin above the minimum before booking.
- Platform operations — expect questions on dyno scaling, Heroku Postgres tiers, and how Heroku Connect keeps Salesforce and Postgres data in sync.
- Hands-on context matters — candidates who have configured or supported Heroku in a real org are better prepared than candidates who only memorize notes.
Pass Rate Guidance
Aim for 75%+ on timed practice sets before booking. If your score is below that, review the highest-weight topics first and retake questions until you can explain why each wrong option is wrong.
Heroku Developer Accredited Professional Exam Format Explained
Heroku Developer Accredited Professional Exam Format Explained
The Heroku Developer Accredited Professional exam is a timed Salesforce credential exam. Use the format below to plan pacing and practice-test strategy.
Total Questions
60 scored questions
Time Limit
90 min
Passing Score
68%
Question Type
Multiple-choice & multiple-select
How Many Questions Are Scenario-Based?
A meaningful share of questions are scenario-based. The common pattern is a business requirement followed by several plausible Salesforce options; your job is to identify the safest, most maintainable choice for Heroku.
Best Way to Pass on Your First Attempt
- Start with the official outline: Map each exam objective to your notes, Trailhead practice, and weak areas before taking full mocks.
- Prioritize high-impact topics: Spend extra time on Heroku, PaaS, and Dynos because these usually drive the hardest scenario questions.
- Practice under time pressure: Use timed question sets so you learn when to move on and return to marked questions later.
- Review explanations deeply: Do not just memorize the right option; write down why the other options are less appropriate for the scenario.
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 PlanSalesforce 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: