Provide a customer id to uniquely identify a user.

Provide a unique identifier that can be used to link different devices to the same customer in the Nami platform. This customer id will also be returned in any data sent from the Nami servers to your systems as well.

The ID sent to Nami must be a valid UUID or you may hash any other identifier with SHA256 and provide it in this call.

❗️

Nami Will Not Accept PII as an Identifier

Email addresses and usernames cannot be sent to Nami via this call. Nami only accepts data that is a valid UUID or a SHA256. Any other data will be rejected by the Nami server.

Nami.setExternalIdentifier(externalIdentifier: String, type: NamiExternalIdentifierType)
[Nami setExternalIdentifierWithExternalIdentifier:@"EXTERNAL_ID_VALUE" type:NamiExternalIdentifierType]
Nami.setExternalIdentifier(externalIdentifier: String, type: NamiExternalIdentifierType)
Nami.setExternalIdentifier(String externalIdentifier, NamiExternalIdentifierType type);
NativeModules.NamiBridge.setExternalIdentifier(externalIdentifier:string, type:string)
Nami.setExternalIdentifier(
      String externalIdentifier, NamiExternalIdentifierType type);
Nami.SetExternalIdentifier(string externalIdentifier, NamiExternalIdentifierType type);

Parameters