Reputation: 118
I'm using App Center Push - works great. I'm sending via the user list (user_ids_target).
I'm using Xamarin Forms - so the user could be on either iOS or Android (or both). I was hoping to be able to query the App Center api via Rest to get a list of these users (from SetUserId - not testers/team members).
Does anyone know how to get a list of 'application' users for each app?
Same with Custom Properties. I see an end point to get what custom properties are configured - but not the values for the application user / device.
Upvotes: 0
Views: 196
Reputation: 14956
you could refer to App Center Client
and the api maybe is what you want,it will returns all devices associated with the given distribution group:
/v0.1/apps/{owner_name}/{app_name}/distribution_groups/{distribution_group_name}/devices/download_devices_list
Upvotes: 0