I need the date when the contact was created on ios phonebook in react native.
I have tried the code in simulation with react-native-contacts package and I am getting below data, but I am not getting date of creation in below response
"[
{
""id"": ""1"",
""displayName"": ""John Doe"",
""givenName"": ""John"",
""familyName"": ""Doe"",
""phoneNumbers"": [
{
""label"": ""mobile"",
""number"": ""+1234567890""
},
{
""label"": ""home"",
""number"": ""+0987654321""
}
],
""emailAddresses"": [
{
""label"": ""work"",
""email"": ""[email protected]""
},
{
""label"": ""home"",
""email"": ""[email protected]""
}
],
""birthday"": ""1990-01-01"",
""addresses"": [
{
""label"": ""home"",
""street"": ""123 Main St"",
""city"": ""Anytown"",
""region"": ""CA"",
""postcode"": ""12345"",
""country"": ""USA""
}
],
""organization"": {
""company"": ""Example Corp"",
""jobTitle"": ""Developer"",
""department"": ""Engineering""
},
""note"": ""Met at conference"",
""profilePicture"": ""https://example.com/johndoe.jpg""
}
]"
1