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
Usually 204 response would not have content. Current ResponseBodyPraser fails as it expects content to be present in all responses.
Parse 204 response with nothing to return
Set response status to 204 and not 200
delete:
description: deletes a single pet based on the ID supplied
operationId: deletePet
parameters:
- name: id
in: path
description: ID of pet to delete
required: true
schema:
type: integer
format: int64
responses:
'204':
description: pet deleted
The text was updated successfully, but these errors were encountered:
Usually 204 response would not have content. Current
ResponseBodyPraser
fails as it expectscontent
to be present in all responses.The text was updated successfully, but these errors were encountered: