Payload
Request payload wrapper for POST, PUT, PATCH, and DELETE handlers.
This newtype wraps a serde_json::Value to accept arbitrary JSON bodies
in requests that support request bodies.
Echoes back the request’s method, headers, and the parsed JSON body.
Expects a JSON request body.
PUTPayload: A generic JSON object.200 OK: Returns a JSON object containing method, headers, and parsed body.400 Bad Request: If the request body is not valid JSON.Request payload wrapper for POST, PUT, PATCH, and DELETE handlers.
This newtype wraps a serde_json::Value to accept arbitrary JSON bodies
in requests that support request bodies.
Echoes request details
This handler allows testing of how a client handles different HTTP status codes.
It accepts any HTTP method.
code: The HTTP status code to return (e.g., 200, 404, 500).code path parameter.code is provided (e.g., not a number or out of valid range),400 Bad Request.>= 0
Returns the specified status code
Extracts and returns the User-Agent header value. Useful for testing
what user agent string your client is sending.
GET200 OK: Returns a JSON object containing the User-Agent string.Returns the User-Agent header
Generates a new random UUID (Universally Unique Identifier) using the v4 algorithm.
Useful for generating unique identifiers for testing purposes.
GET200 OK: Returns a JSON object containing the generated UUID.Returns a randomly generated UUID
Decodes the URL-path base64 string and returns a JSON payload with the
decoded content, a UTF-8 validity flag, and the decoded byte length.
Input is capped at MAX_BASE64_INPUT_BYTES (4096 bytes) to prevent
denial-of-service attacks from oversized decode operations.
encoded: The base64-encoded string to decode. URL-safe alphabet is200 OK: JSON object with encoded, decoded, is_utf8, byte_length,timing.duration_ms.400 Bad Request: Invalid base64 input or input exceeds the size limit.URL-safe base64-encoded string to decode (max 4096 bytes)
Returns decoded content with metadata