-
-
Notifications
You must be signed in to change notification settings - Fork 11
GetServiceStatus #171
Comments
That's actually a really good question, and something that I've noted as a possibility of running into issue with in the code itself. I've not actually used those APIs -- do they actually produce different results? It shouldn't be too difficult to put a wrapper on those functions, so that you can differentiate between them. Taking a quick look through the docs, the following sections have GetServiceStatus: These sections do NOT have a GetServiceStatus: Feeds, Reports Perhaps a mws.getServiceStatus(some indicator of which section you want) ? I'm actually thinking perhaps a bit-flag type of thing in case you want multiple sections, ie mws.getServiceStatus(INBOUND & OUTBOUND) or even mws.getServiceStatus(ALL) .. Noting that it does have a max request quota of basically 2 requests every ten minutes, it might take a little while to test. I hope that that quota isn't shared across all of them! |
@over-engineer hi there :) If you have any input as to how you'd like to see it work, I'd love to hear :) thanks! |
Hello again, thanks for the prompt reply! I’m currently working on multiple projects, so I didn’t get a chance to look into this sooner.
MWS docs state (emphasis mine):
So, I’d guess they do produce different results. Though, I always get a “GREEN status” so I’ve never confirmed it myself.
That sounds great!
That’s reasonable, and since all of them seem to have a maximum request quota of two and a restore rate of one request every five minutes, we don’t even have to worry about running out of requests for one operation. As long as what
Yeah, testing rate limited APIs is a PITA, thanks for doing this 😄 |
heh, sure. shouldn't take too much to put together, though actually verifying it works well without an outage isn't going to happen :-D |
Hello there 👋
Is there a way to get the status of each MWS service separately?
For example, both the Orders API and the Fulfillment Inventory API contain a
GetServiceStatus
operation which returns the operationalStatus
of the API.I couldn't find a method that wraps those endpoints, nor a way to specify the API when requesting it via
.callEndpoint()
😕So, I could do:
which returns an object like this:
However, it's unclear which API this
GetServiceStatus
operation belongs to.The text was updated successfully, but these errors were encountered: