429 TOO_MANY_REquest

Hi Team,

We are trying to integrate the fetch-mode API. When we try to access it via the following URL https://dev.ndhm.gov.in/gateway/v0.5/users/auth/fetch-modes,

we are able to receive the response code 202 Accepted. However, when we attempt to access it through our own API, we encounter the error shown in the attached file.

I have also tried the solution suggested in DevForm (changing the time zone), but it did not work for me. Please refer to the attachment for more information.

Note : client id : SBX_002901

Kindly help me on this .

Hi @sreenu.soft2012, This might be due to the time difference between your system and the server.

Try adding some seconds/minutes in the timestamp of the request-body and try again.

You can add this in pre-request script.
const moment = require(‘moment’);
pm.globals.set(“timestamp”, moment.utc().add(200, ‘seconds’).format(“YYYY-MM-DDTHH:mm:ss.SSSSSS”));

thanks . It resolved