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

200 Response

Success
Body ()
Root Schema : ResponseCollectionModel_DocModifyItemModel
Type: object
Show Source
  • Title: Count
    Read Only: true
    The number of resource instances returned in the current range.
  • Title: HasMore
    Read Only: true
    Indicates 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
  • Title: Limit
    Read Only: true
    The actual paging size used by the server.
  • Title: OffSet
    Read Only: true
    The offset value used in the current page.
  • Title: Total Results
    Read Only: true
    Captures 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 : items
Type: array
Show Source
Nested Schema : DocModifyItemModel
Type: object
Show Source
Back to Top

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"
    }
  ]
}
Back to Top