Search for Application data of all of the End Users of a Group¶
List Users Application Data¶
-
GET
/api/v1/tenants/
(string: tenant_id)/groups/
(string: group_id)/search/properties/users_app_data/
(string: applicationId)/
¶ List all the Application Data from all the End Users of a Group for a particular Application.
Example request:
GET /api/v1/tenants/foo/groups/fooGroup/search/properties/users_app_data/netaxis/ HTTP/1.1 Host: example.com { "keys": ["coffee", "beer"] }
- Request JSON Object:
keys (array) – (Optional) List only the AppData for the specified list of keys.
Example response:
HTTP/1.1 200 OK Content-Type: "application/json" { "applicationDatas": [ {"tenantId": "foo", "groupId": "fooGroup", "userId": "user1@netaxis.be", "applicationId": "netaxis", "key": "coffee", "lastName": "Lavazza is great"}, {"tenantId": "foo", "groupId": "fooGroup", "userId": "user1@netaxis.be", "applicationId": "netaxis", "key": "beer", "lastName": "Orval is great"}, {"tenantId": "foo", "groupId": "fooGroup", "userId": "user2@sip.netaxis.be", "applicationId": "netaxis", "key": "coffee", "lastName": "Starbucks is cool"} ] }
- Response JSON Object:
applicationDatas (array) – a list of objects as defined in User’s Application Data List Item.
- Status Codes:
200 OK – no error