简体   繁体   中英

Eloqua - Extract LastModifiedBy details of Security Group using REST API

I am trying to retrive security group details (last modified by field) using REST API,but unable to extract this information.

Here is my GET -

GET /Api/rest/2.0/system/security/groups?depth=partial&search=acronym%3DRXCM&xsrfToken=dfa16605-d884-4ebc-9a7b-16fd36c9181a

Response

{
  "elements":
  [
   {
    "type":"SecurityGroup",
    "id":"29",
    "createdAt":"1427641487",
    "createdBy":"13",
    "depth":"partial",
    "name":"Central Marketing User",
    "updatedAt":"1427641487",
    "acronym":"RXCM",
    "isEffective":"false",
    "isReadOnly":"false"
   }
  ],
  "page":1,
  "pageSize":1000,
  "total":1
}

Does anyone knows how to get LastModifiedBy field?

You'll get more data on the response if you use the depth=complete instead of partial. I'm not sure if that will return the LastModifiedBy.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM