Hi, I’m adding OpenSearch support to an application and noticed that there are no examples of error messages in the documentation.
Are there any plans to add standard responses with errors?
For example, to request user information via _plugins/_security/api/internalusers/{username}
I get a 404 not_found, with a specific body.
Request:
GET _plugins/_security/api/internalusers/TestUserCreation
Response:
StatusCode: 404
Body:
{
“status”: “NOT_FOUND”,
“message”: “user ‘TestUserCreation’ not found.”
}