Created
June 20, 2024 14:41
-
-
Save PaulieScanlon/fbd1c56d4d8e4895fa26c0a5747cbd80 to your computer and use it in GitHub Desktop.
Slack Message request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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