adjust-icon

Get device information

The Adjust SDK contains helper methods that return device information. Use these methods to add details to your callbacks and improve your reporting.

Web UUID

Changed in 5.7.0

To identify web users in Adjust, the Web SDK generates a unique web_uuid identifier when it sends the first session. The identifier follows the Universally Unique Identifier (UUID) format.

The waitForWebUUID method returns a promise that resolves once the web_uuid has been generated or retrieved from the browser storage (IndexedDB or LocalStorage, based on availability).

Call the waitForWebUUID method to return this information as a string.

Adjust.waitForWebUUID().then((webUuid) => console.log(webUuid));