Does postman mock service return a non-200 response if we cross the usage limits?

We’re using a postman pro license with a cap on the number of calls we can make across the mock services setup across our team.

Will the mock service return a non-200 error response when the cap limits are exceeded? Trying to identify a way for our UI devs to know that they’re not getting a valid response because the team has exceeded usage limits set by postman license.

You should see a 429 HTTP response with a body like the one below.

{"error":
    {"name":
        "usageLimitError","message":"Usage limit reached. Contact your team admin."
    }
}
2 Likes