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
Format is defined in elastic/kibana#27408
Main objective is to easier bubbling or errors and messages.
```
export interface ReturnType {
error?: {
message: string;
code?: number;
};
success: boolean;
}
```
ph
added a commit
to elastic/beats
that referenced
this issue
Mar 28, 2019
Format is defined in elastic/kibana#27408
Main objective is to easier bubbling or errors and messages.
```
export interface ReturnType {
error?: {
message: string;
code?: number;
};
success: boolean;
}
```
The api currently returns in a semi-eratic fashion the shape of data and errors.
We want to move to a more predictable pattern.
regardless of HTTP status code, the following data structure should be used:
The text was updated successfully, but these errors were encountered: