Eloqua 製品のお知らせ :Eloqua Application API ユーザエンドポイントのminimal depthへの変更
概要
Eloqua リリース 22B (2022年5月) により、ユーザを抽出するためのEloqua Application API エンドポイントが変更され、minimal depthではcreatedByとupdatedByを返さないようになります。
何が変わりますか?
22Bにより、以下のエンドポイントが変更になります。
- 1.0
- Retrieve a user: GET /api/REST/1.0/system/user/{id}
- Default depth は complete
- Retrieve a list of users: GET /api/REST/1.0/system/users
- Default depth は minimal
- Retrieve a user: GET /api/REST/1.0/system/user/{id}
- 2.0
- Retrieve a user: GET /api/REST/2.0/system/user/{id}
- Default depth は complete
- Retrieve a list of users: GET /api/REST/2.0/system/users
- Default depth は minimal
- Retrieve a user: GET /api/REST/2.0/system/user/{id}
例:
22B以前は、 minimal depthはcreatedBy とupdatedBy を返しました。
Request:
GET /api/REST/2.0/system/users
Response: 200 OK
{
"elements": [
{
"type": "User",
"id": "11",
"createdAt": "1378838897",
"createdBy": "10",
"depth": "minimal",
"description": "API User",
"name": "API User",
"updatedAt": "1576714238",
"updatedBy": "11",
"isDisabled": "False"
},
{
"type": "User",
"id": "12",
"createdAt": "1393273317",
"createdBy": "11",
"depth": "minimal",
"description": "Test User",
"name": "Test User",
"updatedAt": "1528489352",
"updatedBy": "11",
"isDisabled": "True"
},
{
"type": "User",
"id": "14",
"createdAt": "1446843885",
"createdBy": "11",
"depth": "minimal",
"description": "Test Test",
"name": "Test Test",
"updatedAt": "1599160452",
"updatedBy": "11",
"isDisabled": "False"
}
],
"page": 1,
"pageSize": 1000,
"total": 3
}
0