You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When making API calls, the responses vary between returning a subset of properties, the whole object, or nothing.
For the most part GET requests will return the whole object, but creates/updates return subsets.
In an effort to make the responses standard, what would we like to do:
Options:
Return a partial class with some missing properties (for the subset responses)
Return the deserialized response directly from vercel
Return a new Object that represents the response for the API call (similar to the aws-sdk for javascript)
The text was updated successfully, but these errors were encountered:
When making API calls, the responses vary between returning a subset of properties, the whole object, or nothing.
For the most part
GET
requests will return the whole object, but creates/updates return subsets.In an effort to make the responses standard, what would we like to do:
Options:
Return a partial class with some missing properties (for the subset responses)
Return the deserialized response directly from vercel
Return a new Object that represents the response for the API call (similar to the aws-sdk for javascript)
The text was updated successfully, but these errors were encountered: