Get Sales Group

get

/rest/v16/salesGroups/{id}

Us this endpoint the retrieve the specified sales group. User are only able to view Sales Groups that are part of their same organization (partner organization or host company).

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : The list of sales group variable names
Type: array
Title: The list of sales group variable names
The list of sales groups to which the transaction are forwarded to
Show Source
Back to Top

Examples

The following example shows how to retrieve the specified sales group by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/salesGroups/5671402

Response Body Sample

{
 "variableName": "technicalGroup",
  "dateModified": "2013-12-20T22:32:15.000Z",
  "id": 5671402,
  "label": "No Longer Used 21",
  "dateAdded": "2008-05-14T12:45:17.000Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/salesGroups/5671402"
    }, {
      "kind": "",
      "rel": "child",
      "name": "translations",
      "href": "https://sitename.oracle.com/rest/v16/salesGroups/5671402/translations"
    }]
  }
Back to Top