1.29.0 -> 1.29.1
Deprecation
Activation.id now provided via Activation.userId
Breaking Changes
Update Legal Documents Service Calls
Both platforms now require userProfileId for all Legal Documents operations. This ID is typically obtained from the Activation response or user response.
// OLD (1.29.0)
legalDocsService.getLegalDocuments { result -> ... }
// NEW (1.29.1)
legalDocsService.getLegalDocuments(userProfileId) { result -> ... }Last updated