You can stop following an app by calling this endpoint. When you stop following an app, there's no guarantee you will still have up-to-date information about this application. If you stop following an app, it stops counting towards your followed apps limit.
This allows you to stop following an app. You need to pass the unique identifier generated by AppTweak.io as part of your request.
DELETE /followed_apps/23945
curl -X DELETE -H "X-Apptweak-Key: ${API_KEY}" https://api.apptweak.com/followed_apps/23945
The response for following an app will contain information about the app you asked to stop following if the request suceeds. If the request fails, it will contain an error object informing why the request failed.
An id generated by us to identify this followed app uniquely
To which store the app belongs to: itunes or google
The two letter country code (ISO Alpha-2) of the followed app
The two letter language (ISO Alpha-2) of the followed app
The device of the application you are following
ID of the application you are following.
{
"content": {
"id": "47592be8-aecd-431a-913b-104238fdf50f",
"store": "itunes",
"application_id": "1229021451",
"country_code": "us",
"language": "us",
"device": "iphone"
},
"metadata": {
"request": {
"path": "/api/followed_apps/23945",
"params": {
}
},
"performed_at": "2019-07-31T15:35:21.504Z"
}
}