Docs: Update copy n' paste command section with enum example, and error response

This commit is contained in:
Lars Simon Winzer
2026-04-09 14:09:24 +02:00
parent 0afa1d65e9
commit 8bcd4dd033
@@ -93,13 +93,23 @@ Description of the command, what it does and when it should be used.
| :------------- | :----- | :---------------------------------- | :-------------------- | | :------------- | :----- | :---------------------------------- | :-------------------- |
| `param1` | `type` | If the parameter is optional or not | Description of param1 | | `param1` | `type` | If the parameter is optional or not | Description of param1 |
### Response ### Success Response
| Field | Type | Description | | Field | Type | Description |
| :------- | :------------------ | :-------------------- | | :------- | :------------------ | :-------------------- |
| `field1` | `type` | Description of field1 | | `field1` | `type` | Description of field1 |
| `field2` | `Collection<type2>` | | | `field2` | `Collection<type2>` | |
| `field3` | `Enum<type3>` | Description of field3 |
| Fields of `type2` | Type | Description | | Fields of `type2` | Type | Description |
| :---------------- | :----- | :-------------------- | | :---------------- | :----- | :-------------------- |
| `field1` | `type` | Description of field1 | | `field1` | `type` | Description of field1 |
| Members of `type` | Description |
| :---------------- | :--------------------- |
| `MEMBER1` | Description of member1 |
### Error Response
| Code | Discription |
| :----------- | :----------------------- |
| `ERROR_CODE` | Description of the error |
--> -->