bash
POST /request
Authorization header. The token must be obtained through the user authentication route.bash
Authorization: Bearer <your-token-here>
Request record in the database. This route receives the details of an HTTP request, such as headers, body, and query parameters, and stores them for future association with an HttpTraffic or CoreLog.headers | json | JSON object with the request headers. | Yes |
| body | json | JSON object with the request body. | No |
| queryParams | json | JSON object with the query parameters. | Yes |json
{"headers": {"Content-Type": "application/json","User-Agent": "MeuCliente/1.0"},"body": {"produtoId": 123,"quantidade": 2},"queryParams": {"source": "mobile"}}
201 Createdjson
{"id": "i1j2k3l4-m5n6-7890-1234-567890abcdef","headers": {"Content-Type": "application/json","User-Agent": "MeuCliente/1.0"},"body": {"productId": 123,"quantidade": 2},"queryParams": {"source": "mobile"},"createdAt": "2025-07-10T16:00:00.000Z"}
400 Bad Request
headers or Missing queryParams).401 Unauthorized
500 Internal Server Error