update /api/orders/create response

This commit is contained in:
jejolare 2025-05-01 12:16:17 +07:00
parent c3e41526c8
commit ea92d289a7

View file

@ -21,6 +21,22 @@
```typescript
{
success: boolean;
data?: string // error message
data?: string |
{
hasNotification: boolean;
id: number;
type: string;
timestamp: string;
side: string;
price: string;
amount: string;
total: string;
pair_id: number;
user_id: number;
status: string;
left: string;
updatedAt: string;
createdAt: string;
}
}
```