Add refresh_device_metadata to create user so country / IP can be set #1339
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
One Line Summary
Add
refresh_device_metadata
to create user so country and IP can be set for the new user.Details
When the server receives a create user request, it doesn't automatically update IP and country for this user because this request can come from the SDK or from the customer's server.
By passing in a
refresh_device_metadata = true
property to the request body, we can let the server know to update IP and country based on where the request originated from.Motivation
This flag was added to the create user endpoint and while missing country / IP didn't affect iOS as it did Android, because iOS made a followup session call immediately, let's still add this to our create user request for consistency.
Scope
Country and IP are based on where the request originated from. This change is not really necessary for iOS due to differing behavior but consistency-wise and future proofing, it is good to have this flag on the create user request.
Testing
Unit testing
None
Manual testing
iPhone 13 iOS 17.1
Affected code checklist
Checklist
Overview
Testing
Final pass
This change is