Slack query
- 
 I am trying to create a slack channels with the outputs in numbers through form in it. I am trying to make colors for the outputs. Example ) SLA : 100% means the background color of the number needs to be in green background. Any have tried this before ? If yes kindly share the link for the same. How to code inside the slack message box and automate the output through webhook ? 
- 
 How to create an attachment in this ? 
 anyone used builder kit in slack ?$Webhook = "https://hooks.slack.com/workflows" $ContentType= 'application/json' $Body = @" { "text": "Update your Status + :sunglasses: + $(Get-Date -format g)", } "@ Invoke-RestMethod -uri $Webhook -Method Post -body $Body -ContentType $ContentType