Subscribe
Subscribe registers the authenticated user to receive notifications for new releases of a specific anime.
/api.v1.subscription.SubscriptionService/Subscribe Bearer requiredRequest
SubscribeRequest
SubscribeRequestapi.v1.subscription.SubscribeRequest4 fields
SubscribeRequest identifies the anime and preferred language for notification alerts.
animeIduint32Unique database identifier for the anime.
languagestringPreferred language or region for the release alerts (e.g., "de", "en").
languagesarraystring[]Preferred languages for release alerts. If provided, this supersedes language.
inAppNotificationsEnabledboolWhether release notifications should create in-app notification rows.
{
"animeId": 1,
"language": "de",
"languages": [
"de"
],
"inAppNotificationsEnabled": false
}Response
SubscriptionResponse
SubscriptionResponseapi.v1.subscription.SubscriptionResponse1 fields
SubscriptionResponse confirms the result of a subscription operation.
messagestringA descriptive message indicating the result.
{
"message": "success"
}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.