Saves a message attachment as a favorite meme.
curl --request POST \
--url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/memes \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"alt_text": "<string>",
"tags": [
"<string>"
],
"attachment_id": "<string>",
"embed_index": 4503599627370495
}
'{
"id": "<string>",
"user_id": "<string>",
"name": "<string>",
"tags": [
"<string>"
],
"attachment_id": "<string>",
"filename": "<string>",
"content_type": "<string>",
"size": 123,
"url": "<string>",
"alt_text": "<string>",
"content_hash": "<string>",
"width": 123,
"height": 123,
"duration": 123,
"is_gifv": true,
"klipy_slug": "<string>",
"tenor_slug_id": "<string>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the channel
The ID of the message
Display name for the meme
Alternative text description for accessibility
Tags for categorizing and searching the meme
ID of the message attachment to save as a meme
Index of the message embed to save as a meme
0 <= x <= 9007199254740991Success
Unique identifier for the favorite meme
ID of the user who owns this favorite meme
Display name of the meme
Tags for categorizing and searching the meme
ID of the attachment storing the meme
Original filename of the meme
MIME type of the meme file
File size in bytes
CDN URL to access the meme
Alternative text description for accessibility
Hash of the file content for deduplication
Width of the image or video in pixels
Height of the image or video in pixels
Duration of the video in seconds
Whether the meme is a video converted from GIF
Klipy clip slug if the meme was sourced from Klipy
Tenor view/
curl --request POST \
--url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/memes \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"alt_text": "<string>",
"tags": [
"<string>"
],
"attachment_id": "<string>",
"embed_index": 4503599627370495
}
'{
"id": "<string>",
"user_id": "<string>",
"name": "<string>",
"tags": [
"<string>"
],
"attachment_id": "<string>",
"filename": "<string>",
"content_type": "<string>",
"size": 123,
"url": "<string>",
"alt_text": "<string>",
"content_hash": "<string>",
"width": 123,
"height": 123,
"duration": 123,
"is_gifv": true,
"klipy_slug": "<string>",
"tenor_slug_id": "<string>"
}