# Verify dynamic auth Verify whether a device is authentic/known to the dynamic auth system using its machine identifier. Use this to gate access to protected actions. Endpoint: POST /dynamic_auth/verify Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `machine_id` (string, required) Machine ID to verify against the registry. Example: "MACHINE-001" ## Response 200 fields (application/json): - `status` (string, required) Indicates request success. Always success in this schema. Example: "success" - `message` (string, required) Short description of the successful operation outcome. Example: "Operation completed successfully" ## Response 400 fields (application/json): - `status` (string, required) Indicates failure. Always error in this schema. Example: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Invalid request parameters" ## Response 401 fields