A data scientist registers a model in SAS Model Manager and wants to test it using SAS Micro Analytic Service (MAS) before champion promotion. What endpoint pattern does MAS expose for real-time score code testing?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because SAS Micro Analytic Service organizes score code as modules containing steps. The MAS REST API exposes POST /microanalyticScore/modules/{moduleId}/steps/{stepId} where the request body contains the input variable values and the response contains the model's output (predicted score).
Full explanation below image
Full Explanation
B is correct because SAS Micro Analytic Service organizes score code as modules containing steps. The MAS REST API exposes POST /microanalyticScore/modules/{moduleId}/steps/{stepId} where the request body contains the input variable values and the response contains the model's output (predicted score). A is wrong; that endpoint pattern belongs to Model Manager, not MAS scoring. C is wrong; GET is not used for scoring with input payloads. D is wrong; SAS Intelligent Decisioning uses a different endpoint path.