Datagraph Best Practices
missing-2xx-response
general > missing-2xx-response
Guidance
APIs with HTTP resources that do not return 2xx success responses cannot be added to the unified schema.
Message
All endpoints must have a 2xx response.
Examples
valid
paths:
/users:
get:
summary: Returns a list of users
responses:
'200'
invalid
paths:
/users:
get:
summary: Returns a list of users
responses:
'400'
Applies to Operation