Preloads and caches messages for multiple channels to improve performance when opening those channels. Returns preloaded message data for the specified channels.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/preload-messages \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"channels": [
"<string>"
]
}
'{}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Array of channel IDs to preload messages from (max 100)
100Success
A map of channel IDs to the latest message in each channel
Show child attributes
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/preload-messages \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"channels": [
"<string>"
]
}
'{}