Get Sales Group

get

/rest/v19/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 : Sales Groups
Type: object
Title: Sales Groups
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 -H "Authorization: Bearer <token>" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v19/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/v19/salesGroups/5671402"
    }, {
      "kind": "",
      "rel": "child",
      "name": "translations",
      "href": "https://sitename.oracle.com/rest/v19/salesGroups/5671402/translations"
    }]
  }
Back to Top