1. Adobe Commerce Developer Documentation
"Inventory Management web APIs": This official guide explicitly demonstrates how to perform inventory management tasks
such as managing stock and sources
using both REST API calls (e.g.
POST /V1/inventory/source-items) and GraphQL mutations (e.g.
mutation { updateSourceItems(...) }). This directly supports that both A and C are correct.
Source: Adobe Commerce Developer Documentation > Inventory Management > Web APIs.
2. Adobe Commerce Developer Documentation
"Introduction to Adobe Commerce web APIs": This document introduces the available web APIs
focusing on REST and GraphQL as the primary integration methods for Adobe Commerce. It positions them as the standard technologies for interacting with the platform's resources.
Source: Adobe Commerce Developer Documentation > Web APIs > Overview.
3. Adobe Commerce Developer Documentation
"Deprecated features": This page confirms the removal of the XML-RPC API
stating
"The XML-RPC API library is not supported in Magento 2. The REST and SOAP APIs provide better scalability
and are more robust." This validates that option D is incorrect for the current platform.
Source: Adobe Commerce Developer Documentation > Get Started > Magento Technology Stack > Deprecated features.