APNs Returning 200 OK for Uninstalled Apps

We're experiencing an issue with Apple Push Notification service where APNs continues to return 200 OK responses for device tokens belonging to uninstalled applications.

Issue Details:

When sending push notifications to device tokens, APNs returns 200 OK responses even for devices where our app was uninstalled more than a month ago

Thanks in advanced for support

The 410 status was never meant to be a signal for developers to determine that the app has been removed.

It is only a signal to the push provider server that they should stop using that token. Although this could mean that the app may have been removed, it could also mean the token has changed while the app is still installed.

The app token may change due to certain system events. Deleting and reinstalling the app, restoring the device from a backup, resetting the device (and then installing the app), certain major iOS updates, transferring all apps and data to a new device are all events that will cause the token to change. Because of this, it is recommended that apps register for remote notifications at every launch. If the token has changed, the app would need to update the push server to use the new token for the device/user. If an existing token is receiving 410, it might be that the app is still installed but one of these cases occurred.

Indeed if you look at the description of the 410 status, it says "The device token is no longer active for the topic.". Topic, in most cases means "your app". It is an indicator of the state of the token, not the app. And trying to determine whether an app has been deleted or not based on the 410 result is an off-label use that would not guarantee the results you might expect.

Additionally, beginning the return of the 410 state is non-deterministic for the sole purpose of discouraging this interpretation.

To summarize this interpretation: Existence of a 410 status merely indicates that the token is no longer valid and should not be used anymore. It does not mean the app has been deleted. Nor, the lack of a 410 status mean the app is still installed and receiving notifications.

If it is important to your use case that you know notifications are being received, my suggestion would be to confirm the critical receipt of notifications via a service extension, also use metrics based on user interaction to indicate that the user has actually seen the notification, not just that the device has received it (for example, the phone sitting at bottom of a bag with mute switch on).

If you receive a 410 status for a token, you should stop using it. If you believe that the app has been removed but still receiving 200 status for the token, there is no harm in sending notifications to it until if and when you receive a 410.


Argun Tekant /  DTS Engineer / Core Technologies

Hi Argun, We track the reason 'Unregistered' to deduce if the app has been uninstalled along with a 410 status code. What does the reason code 'Unregistered' mean in this case then?

Thank you for your response. It is clear in which scenarios the error codes are generated. However, in a case where we should be receiving a 410 error code, we are not getting it.

APNs returns 200 OK responses even for devices where our app was uninstalled more than a month ago.

please find sample logs below:

app uninstalled: 03.07.2025 device token:33079e41a28698c21ae212fbed702508fff24d16451f39f007e20af8f9ad5e6b notification activities: 05-JUL-25 06.57.12.455428000 PM, 06-JUL-25 12.12.35.691552000 AM

APNs Returning 200 OK for Uninstalled Apps
 
 
Q