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
This Accept header allows the client to indicate to the server the content types it can handle in the response, which is crucial when interacting with APIs that can return multiple response formats.
It seems that currently we are sending 'Accept': '*/*' or in some cases like when we create a Job we are not sending a value for this header.
Acceptance criteria
Send Accept header as application/json if the response expected is a dictionary or list, unless the user specifies a different value.
The text was updated successfully, but these errors were encountered:
What is the expected feature or enhancement?
This
Accept
header allows the client to indicate to the server the content types it can handle in the response, which is crucial when interacting with APIs that can return multiple response formats.It seems that currently we are sending
'Accept': '*/*'
or in some cases like when we create a Job we are not sending a value for this header.Acceptance criteria
Accept
header asapplication/json
if the response expected is a dictionary or list, unless the user specifies a different value.The text was updated successfully, but these errors were encountered: