Partner Commerce Partner Commerce for Administrators Customizing Your Application Current: Using Custom Objects Through APIs PDF Download PDF Download page Using Custom Objects Through APIs. Current page All pages Using Custom Objects Through APIs Digital Commerce generic APIs support custom objects by replacing the :custom_object__c with the custom object API name into the URL path as shown in the example below:[GET] .../apexrest/Apttus_WebStore/apttus/v3/:custom_object__c[POST] .../apexrest/Apttus_WebStore/apttus/v3/:custom_object__c /queryYou need to ensure that the SDK utilizes these APIs for custom services and models by following the steps below:Create a custom object in Salesforce and add some custom fields.The custom object must have at least one lookup to another object.The other object must have a lookup to this custom object as a child object. You can just enable attachments for this object.Open a template and install the latest SDK libraries.Create a service and model for the custom object created in step 1.You may need to add the ‘route’ attribute to the ATable decorator similar to what was done in ‘cart’ and set it to the API name of the custom object:Verify that all the methods within the service work:querywheresearchaggregatedescribegetfetchdeletecreateupdateupsertVerify that relationships work on the model.The lookup you created in step 1 should be pulled.The model should be able to pull the child object with attachments. ×