LiveRamp / reslang

A language for describing resource-oriented APIs & turning them into Swagger or resource diagrams. Oriented around the concepts we want to expose in the APIs.
Apache License 2.0
23 stars 7 forks source link

Return parameters sent during MULTIGET #114

Open conrs opened 4 years ago

conrs commented 4 years ago

It would be nice to have a query field in the top-level response for a MULTIGET. This could contain all the query parameters and is mostly useful for troubleshooting and later reference.

E.g.

GET /?name=meow&limit=6&offset=200

{ 
   results: [...]
   query: {
       name: "meow",
       limit: 6,
       offset: 200
   }
}