Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
REST Endpoints Error Logging Script
00:00
5 left

REST Endpoints Error Logging Script

MediumPython

Problem

Write a script that hits multiple REST endpoints and logs the errors.

Asked in the Coding test stage.

For deterministic grading, implement the error-processing portion using endpoint results produced by a mocked REST client. Each result is a dictionary with url, status, and optional error. Return one structured record for every failed request, where failures include HTTP status codes >= 400 and requests with a non-empty error. Also log each returned record with Python's logging module.

Input and Output

Implement log_endpoint_errors(results). Return records containing url, status, and error, preserving input order. Successful responses produce no record.

Constraints

  • 1 <= results.length <= 10^4
  • Each result contains a non-empty string field named url
  • status is null or an integer from 100 through 599
  • error is absent or a string
  • Return records in the same order as their failed inputs

Function Signature

def log_endpoint_errors(results):
Interviewer

Your question is REST Endpoints Error Logging Script. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.