Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created June 20, 2024 14:41
Show Gist options
  • Save PaulieScanlon/fbd1c56d4d8e4895fa26c0a5747cbd80 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/fbd1c56d4d8e4895fa26c0a5747cbd80 to your computer and use it in GitHub Desktop.
Slack Message request
// src/index.js#L59
body: JSON.stringify({
blocks: [
{
type: 'header',
text: {
type: 'plain_text',
text: '📊 7 Days Google Analytics Report',
emoji: true,
},
},
{
type: 'divider',
},
{
type: 'section',
text: {
type: 'plain_text',
text: 'Top ten page views.',
},
},
{
type: 'context',
elements: [
{
type: 'mrkdwn',
text: report,
},
],
},
],
}),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment