Anonymize Request #624
-
Hi, I'd like to remove the 'Requested By' on the notifications, for example, in discord. How can this be done? |
Beta Was this translation helpful? Give feedback.
Answered by
fallenbagel
Jan 14, 2024
Replies: 1 comment 1 reply
-
You can use the webhook agent for that. Heres an example: {
"avatar_url": "https://github.com/Fallenbagel/jellyseerr/blob/develop/public/os_logo_square.png?raw=true",
"username": "Jellyseerr",
"embeds": [
{
"color": 1127128,
"title": "{{notification_type}}",
"description":"{{subject}}\n\n{{message}}\n\nStatus: {{media_status}}\n\nRequest Id: {{request_id}}",
"thumbnail": {
"url": "{{image}}"
},
"footer": {
"text": "Link https://jellyseerrurl/{{media_type}}/{{media_tmdbid}}",
"icon_url": "https://github.com/Fallenbagel/jellyseerr/blob/develop/public/os_logo_square.png?raw=true"
}
}
]
} Change the You could try this template on webhook notification part |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kevsestrella
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the webhook agent for that.
Discord json payload templating with jellyseerr variables should be good.
Heres an example: