We would like to send iPhone Wallet cards to users containing important health information that they need to have with them at all times.
Because of privacy concerns, we would like to just use a web form, have the user input the required fields, which include their names and birthdates etc., generate the pass and then discard the user information so that their privacy is protected.
However, we would also like to update the pkpass
file (or within it, the pass.json
file) at some point in the future if information changes. It seems that partial updates are not possible (!)?
How would you solve this?
Clarification Detail
In light of @PassKit's answer, I would like to verify that I can for example update some text on the back of a "coupon" card by including the following complete JSON file in the request:
{
"coupon": {
"backFields": [
{
"key": "info",
"label": "Important Information",
"value": "THIS INFORMATION CHANGED."
}
]
}
}