# Dynamic auth login Authenticate a device within the dynamic auth workflow by associating its machine and stock details. Often used after registration to initialize an operational session. Endpoint: POST /dynamic_auth/login Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `machineId` (string, required) Unique identifier for the machine. Example: "MACHINE-001" - `stockName` (string, required) Name/code of the stock used during login. Example: "ANDROID" - `totalPrice` (string, required) Total price string (supports commas and up to 2 decimals). Example: "200.00" - `currentStockPrice` (string, required) Current price string (supports commas and up to 2 decimals). Example: "150.00" ## 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