This question runs in a pre-configured Salesforce environment - no personal connection required.

Given a cart ID, fetch the cart details from the DummyJSON API at https://dummyjson.com/carts/{cartId} and return the total price of the cart. The API returns a JSON object containing a "total" field with the cart total value. Return null for null or non-positive cart IDs. Return null if the API request fails or returns a non-200 status code.

Examples:

Input: cartId = 1 Output: The total value from cart 1 (e.g., 2328.0) Input: cartId = null Output: null Explanation: Null input returns null Input: cartId = 0 Output: null Explanation: Non-positive cart ID returns null
Apex Code Editor

Welcome to Lightning Challenge!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

How It Works

  • • Write your solution in the code editor
  • • Connect your Salesforce org to test
  • • Submit to check if your solution passes
  • • Use hints if you get stuck

Contest Alert

🏆 #CodeEveryDay Mar/April 2026

Contest runs March 3 - April 30. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.