Skip to content

Commit

Permalink
Add M_MISSING_PARAM error
Browse files Browse the repository at this point in the history
  • Loading branch information
tcpipuk authored Jan 13, 2025
1 parent e00d2e9 commit a11286a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions proposals/4133-extended-profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,15 @@ demonstrates the process of defining new fields in the `m.*` namespace.
}
```

- **`M_MISSING_PARAM`**: Required parameter is missing, e.g. if a client attempts to set a profile field, but neglects to include that named field in the request body.

```json
{
"errcode": "M_MISSING_PARAM",
"error": "A required parameter is missing: {parameter_name}."
}
```

- **`M_PROFILE_TOO_LARGE`**: Exceeds total profile size limits.

```json
Expand Down

0 comments on commit a11286a

Please sign in to comment.