Download OpenAPI specification:
| username required | string |
| password required | string |
{- "username": "johndoe",
- "password": "secret123"
}{- "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "username": "johndoe"
}
}| username required | string |
| password required | string |
{- "username": "johndoe",
- "password": "secret123"
}{- "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "username": "johndoe",
- "profilePic": "/uploads/avatar.jpg"
}
}[- {
- "id": "chat-uuid-1234",
- "isGroup": true,
- "name": "Amigos",
- "profilePic": "/uploads/group.jpg",
- "createdAt": "2024-03-08T10:00:00.000Z",
- "updatedAt": "2024-03-08T12:00:00.000Z",
- "users": [
- {
- "userId": "user-uuid-9012",
- "chatId": "chat-uuid-1234",
- "unreadCount": 2,
- "joinedAt": "2024-03-08T10:00:00.000Z",
- "user": {
- "id": "user-uuid-9012",
- "username": "johndoe",
- "profilePic": "/uploads/avatar.jpg",
- "lastSeen": "2024-03-08T19:25:00.000Z",
- "online": true
}
}
], - "messages": [
- {
- "id": "msg-uuid-5678",
- "content": "Hola a todos",
- "createdAt": "2024-03-08T19:30:00.000Z",
- "senderId": "user-uuid-9012",
- "fileUrl": null
}
]
}
]| isGroup required | boolean |
| name | string |
| userIds required | Array of strings |
{- "isGroup": true,
- "name": "Nuevo Grupo",
- "userIds": [
- "user-uuid-1",
- "user-uuid-2"
]
}{- "id": "chat-uuid-1234",
- "isGroup": true,
- "name": "Nuevo Grupo"
}| chatId required | string |
| name required | string |
{- "name": "Nombre Editado"
}{- "name": "Nombre Editado"
}| chatId required | string |
[- {
- "id": "msg-uuid-5678",
- "content": "Hola, ¿qué tal?",
- "fileUrl": "/uploads/image.png",
- "createdAt": "2024-03-08T19:30:00.000Z",
- "sender": {
- "id": "user-uuid-9012",
- "username": "johndoe"
}
}
]| chatId | string |
| content | string |
| file | string <binary> Archivo adjunto opcional |
{- "id": "msg-uuid-5678",
- "chatId": "chat-uuid-1234",
- "senderId": "user-uuid-9012",
- "content": "Hola, ¿qué tal?",
- "fileUrl": "/uploads/image.png",
- "fileName": "image.png",
- "createdAt": "2024-03-08T19:30:00.000Z",
- "sender": {
- "id": "user-uuid-9012",
- "username": "johndoe"
}
}| username | string Example: username=newjohndoe Nombre de usuario nuevo. |
{- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "username": "newjohndoe",
- "profilePic": "/uploads/avatar.jpg"
}, - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}