Get Commerce Process Document Modify Options
get
                    /rest/v19/commerceProcessSetups/{processVarName}/documents/{docVarName}/modifyTab
Use this endpoint to retrieve modify options for the specified Commerce Process document.
                
                Request
Path Parameters
                
                
                
                
                
                
                
                
                
                Back to Top
                Response
Supported Media Types
                - application/json
200 Response
Success
                
                
                    Root Schema : ResponseCollectionModel_DocModifyItemModel
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            count: 
            integer()
            Title:CountRead Only:trueThe number of resource instances returned in the current range.
- 
            hasMore: 
            boolean()
            Title:HasMoreRead Only:trueIndicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false.
- 
            items: 
            array  items
            
            
- 
            limit: 
            integer()
            Title:LimitRead Only:trueThe actual paging size used by the server.
- 
            offset: 
            integer()
            Title:OffSetRead Only:trueThe offset value used in the current page.
- 
            totalResults: 
            integer()
            Title:Total ResultsRead Only:trueCaptures the total count of the resource instances, which not only includes the instances in the current range, but all instances on the server that satisfy the request.
Nested Schema : DocModifyItemModel
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            attributeId: 
            integer()
            Title:Attribute IdId of the attribute
- 
            attributeLabel: 
            string()
            Title:Attribute LabelDisplay Label of the attribute
- 
            attributeVarName: 
            string()
            Title:Attribute Variable NameVariable Name of the attribute
- 
            customAttribute: 
            boolean()
            Title:Is Custom AttributeSpecifies whether the attribute is custom or not
- 
            formulaPresent: 
            boolean()
            Title:Has FormulaSpecifies whether the attribute has formula defined
- 
            overrideModify: 
            boolean()
            Title:Override ModifySpecifies whether the standard option should be overridden
- 
            useFormula: 
            boolean()
            Title:Use FormulaSpecifies whether formula should be used or not
Examples
The following example shows how to retrieve modify options for the specified Commerce Process document by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/commerceProcessSetups/automationStd/documents/transactionLine/modifyTab?limit=10&offset=0&q={"attributeVarName":"contactCity_t"}Response Body Sample
{
}{
  "offset": 0,
  "limit": 2,
  "count": 2,
  "totalResults": 28,
  "hasMore": true,
  "items": [{
      "attributeId": 3022948822,
      "useFormula": false,
      "overrideModify": false,
      "customAttribute": false,
      "formulaPresent": false,
      "attributeVarName": "_customer_t_company_name",
      "attributeLabel": "Customer Company Name"
    }, {
      "attributeId": 3022948844,
      "useFormula": false,
      "overrideModify": false,
      "customAttribute": false,
      "formulaPresent": false,
      "attributeVarName": "_customer_t_company_name_2",
      "attributeLabel": "Customer Company Name 2"
    }
  ]
}