userIds

List of identifiers for additional Extended IDs on the Identity Service. The data type of userIds is a list of UserId.

This option won't be saved; instead, it will be sent to the server with each new ad request.

// For the ad request
AdService.getInstance().setAdRequestGlobalParameter(
AdRequestGlobalParameters::userIds,
listOf(UserId(UserIdType.IDFA, "AAAA"), UserId(UserIdType.NETID, "BBBB"))
)

// For the tag and track requests
AdService.getInstance().setTrackingGlobalParameter(
TrackingGlobalParameters::userIds,
listOf(UserId(UserIdType.IDFA, "AAAA"), UserId(UserIdType.NETID, "BBBB"))
)