Hi franciscor54562584 ,
DAIDs are used to identify mobile devices and they are different from audience manager UUIDs. In case of mobile implementation,we need to explicitly implement device Id sync in order to associate aam UUID with DAID(IDFA/GAID).E.g.
Device ID sync (IDFA ID) is done using the “setAdvertisingIdentifier” method outlined here:
Syntax:
+ (void) setAdvertisingIdentifier:(NSString *)identifier;
Example:
NSString *idfa = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
[ADBMobile setAdvertisingIdentifier:idfa];
Once we have successful device Id sync implemented,we have an associated UUID with a device ID.
In case of sending data to a destination,when it comes to mobile data we have mobile destinations specifically setup to send that data and data usually sent is DAIDs.
Regards,
Shweta