POST
Unsubscribe
Unsubscribe removes the authenticated user's notification registration for a specific anime.
/api.v1.subscription.SubscriptionService/Unsubscribe Bearer required01
Request
UnsubscribeRequest
UnsubscribeRequestapi.v1.subscription.UnsubscribeRequest3 fields
UnsubscribeRequest identifies the subscription to remove.
animeIduint32Unique database identifier for the anime.
languagestringThe language identifier of the subscription being removed.
allLanguagesboolIf true, removes every language subscription for the anime.
{
"animeId": 1,
"language": "de",
"allLanguages": false
}02
Response
SubscriptionResponse
SubscriptionResponseapi.v1.subscription.SubscriptionResponse1 fields
SubscriptionResponse confirms the result of a subscription operation.
messagestringA descriptive message indicating the result.
{
"message": "success"
}03
Error handling
Common failure codes
unauthenticatedThe Bearer token is missing or invalid.
invalid_argumentThe request payload failed validation.
internalThe service could not complete the operation.