This question runs in a pre-configured Salesforce environment - no personal connection required.
Write a method that makes an HTTP callout to fetch user data and return the user's age as an Integer.
You'll need to make a GET request to: https://dummyjson.com/users/{userId}
The API returns JSON in this format:
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"age": 28,
"email": "emily.johnson@x.dummyjson.com",
"phone": "+81 965-431-3024",
"username": "emilys",
"birthDate": "1996-5-30"
}
Examples:
Input: userId = 1
Output: 28
Explanation: User with ID 1 has age 28
Input: userId = 5
Output: 30
Explanation: User with ID 5 has age 30
Input: userId = 999
Output: null
Explanation: User with ID 999 does not exist, method returns null
Apex Code Editor
Welcome to Lightning Challenge!
How It Works
- • Write your solution in the code editor
- • This challenge runs without connecting your own org
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.