{"id":7282,"date":"2025-04-08T07:39:03","date_gmt":"2025-04-08T07:39:03","guid":{"rendered":"https:\/\/codewithtarun.com\/blog\/?p=7282"},"modified":"2025-04-08T07:51:37","modified_gmt":"2025-04-08T07:51:37","slug":"purpose-of-using-app-manifests-in-a-slack-app","status":"publish","type":"post","link":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/","title":{"rendered":"Purpose of Using App Manifests in a Slack App"},"content":{"rendered":"\n<p>App <strong>manifests<\/strong> in Slack are YAML or JSON configuration files that <strong>define your app&#8217;s structure, settings, and permissions<\/strong> in a single, sharable document. They&#8217;re especially useful for collaboration, deployment, and version control.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 <strong>Why Use App Manifests?<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>\ud83d\udee0 Simplified App Creation<\/strong>\n<ul class=\"wp-block-list\">\n<li>You can create or update an app by simply pasting a manifest into the Slack API dashboard.<\/li>\n\n\n\n<li>No need to manually configure scopes, event subscriptions, or features one by one.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>\ud83d\udcc4 Clear Documentation of App Configuration<\/strong>\n<ul class=\"wp-block-list\">\n<li>Everything from app name, bot scopes, event subscriptions, slash commands, to redirect URLs is documented in one place.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>\ud83d\udc65 Easier Team Collaboration<\/strong>\n<ul class=\"wp-block-list\">\n<li>Share the manifest file across your team so everyone works with the exact same configuration.<\/li>\n\n\n\n<li>Great for onboarding new developers or syncing across environments.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>\ud83d\udd01 Repeatable Deployments<\/strong>\n<ul class=\"wp-block-list\">\n<li>Perfect for deploying the same app configuration across multiple workspaces (e.g., dev, QA, and prod).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>\ud83e\uddea Faster Prototyping and Testing<\/strong>\n<ul class=\"wp-block-list\">\n<li>Quickly spin up or modify an app setup without clicking through UI settings.<\/li>\n\n\n\n<li>Ideal for hackathons or rapid development.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>\ud83d\udce6 Version Control Compatibility<\/strong>\n<ul class=\"wp-block-list\">\n<li>You can track changes, roll back versions, and review configuration history through Git or other version control tools.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udca1 Example Use Case:<\/h3>\n\n\n\n<p>You build a Slack app for internal ticketing. Using a manifest:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your dev team can clone the app in a dev workspace.<\/li>\n\n\n\n<li>Your QA team can test it in a staging workspace.<\/li>\n\n\n\n<li>You can deploy it to production with the same settings, just by copying the manifest.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Feature \/ Use Case<\/th><th>Is It Accurate?<\/th><th>Notes<\/th><\/tr><\/thead><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Simplifies app creation<\/td><td>\u2705 Yes<\/td><td>Paste manifest to create\/update app quickly<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Documents app configuration<\/td><td>\u2705 Yes<\/td><td>Keeps scopes, URLs, settings all in one file<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Team collaboration<\/td><td>\u2705 Yes<\/td><td>Share config with teammates easily<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Repeatable deployments<\/td><td>\u2705 Yes<\/td><td>Deploy to multiple workspaces consistently<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Faster prototyping\/testing<\/td><td>\u2705 Yes<\/td><td>No manual UI clicks needed<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Version control compatibility<\/td><td>\u2705 Yes<\/td><td>Easily track, revert, or review changes<br><br><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>Here\u2019s a ready-to-use <strong>sample Slack app manifest<\/strong> (in YAML format) that you can paste directly into the <strong>Slack API Dashboard<\/strong> under the <strong>&#8220;Create an App using a Manifest&#8221;<\/strong> option.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>\ud83d\udd39 Sample Slack App Manifest (YAML)<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>_display_information:\n  name: TicketBot\n  description: A bot that helps manage internal support tickets.\n  background_color: \"#4A154B\"\n\nfeatures:\n  bot_user:\n    display_name: TicketBot\n    always_online: true\n\noauth_config:\n  scopes:\n    bot:\n      - channels:read\n      - chat:write\n      - commands\n      - users:read\n      - app_mentions:read\n\nsettings:\n  event_subscriptions:\n    request_url: https:\/\/your-server.com\/slack\/events\n    bot_events:\n      - app_mention\n      - message.channels\n\n  interactivity:\n    is_enabled: true\n    request_url: https:\/\/your-server.com\/slack\/interactions\n\n  org_deploy_enabled: false\n  socket_mode_enabled: false\n  token_rotation_enabled: false\n  redirect_urls:\n    - https:\/\/your-server.com\/slack\/oauth\/callback\n\n  development:\n    slack_redirect_uri: https:\/\/your-server.com\/slack\/oauth\/callback\n    allowed_ip_ranges:\n      - 0.0.0.0\/0\n\n  app_directory:\n    short_description: A bot to manage internal support tickets.\n    long_description: >\n      TicketBot helps your team quickly create, assign, and track internal IT support tickets right from Slack.\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 What This Manifest Includes:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <strong>bot user<\/strong> named TicketBot<\/li>\n\n\n\n<li>Required <strong>OAuth scopes<\/strong> (permissions)<\/li>\n\n\n\n<li>Event subscriptions like <code>app_mention<\/code> and <code>message.channels<\/code><\/li>\n\n\n\n<li><strong>Interactivity<\/strong> enabled for buttons and modals<\/li>\n\n\n\n<li>Placeholder URLs for <strong>event\/interactivity endpoints<\/strong><\/li>\n\n\n\n<li>App metadata for potential directory listing<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udca1 How to Use:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to <a class=\"\">https:\/\/api.slack.com\/apps<\/a><\/li>\n\n\n\n<li>Click <strong>&#8220;Create New App&#8221;<\/strong><\/li>\n\n\n\n<li>Choose <strong>&#8220;From a manifest&#8221;<\/strong><\/li>\n\n\n\n<li>Select your workspace<\/li>\n\n\n\n<li>Paste this YAML<\/li>\n\n\n\n<li>Click <strong>&#8220;Next&#8221;<\/strong> \u2192 Review \u2192 <strong>Create<\/strong><\/li>\n<\/ol>\n\n\n\n<p><a href=\"https:\/\/api.slack.com\/reference\/manifests#creating_manifests\">https:\/\/api.slack.com\/reference\/manifests#creating_manifests<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"629\" src=\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.47\u202fPM-1024x629.png\" alt=\"\" class=\"wp-image-7286\" srcset=\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.47\u202fPM-1024x629.png 1024w, https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.47\u202fPM-300x184.png 300w, https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.47\u202fPM.png 1488w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"545\" src=\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.42\u202fPM-1024x545.png\" alt=\"\" class=\"wp-image-7287\" srcset=\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.42\u202fPM-1024x545.png 1024w, https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.42\u202fPM-300x160.png 300w, https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/Screenshot-2025-04-08-at-1.13.42\u202fPM.png 1446w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>App manifests in Slack are YAML or JSON configuration files that define your app&#8217;s structure, settings, and permissions in a single, sharable document. They&#8217;re especially useful for collaboration, deployment, and &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\" class=\"more-link\">Read more<span class=\"screen-reader-text\"> &#8220;Purpose of Using App Manifests in a Slack App&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":7289,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_tribe_ticket_capacity":"0","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"footnotes":""},"categories":[52,92],"tags":[],"class_list":["post-7282","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-slack","category-slack-developer"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Purpose of Using App Manifests in a Slack App - A SalesforceSphere By CodeWithTarun<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Purpose of Using App Manifests in a Slack App - A SalesforceSphere By CodeWithTarun\" \/>\n<meta property=\"og:description\" content=\"App manifests in Slack are YAML or JSON configuration files that define your app&#8217;s structure, settings, and permissions in a single, sharable document. They&#8217;re especially useful for collaboration, deployment, and &hellip; Read more &quot;Purpose of Using App Manifests in a Slack App&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\" \/>\n<meta property=\"og:site_name\" content=\"A SalesforceSphere By CodeWithTarun\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-08T07:39:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-08T07:51:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Tarun Gupta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tarun Gupta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\"},\"author\":{\"name\":\"Tarun Gupta\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3\"},\"headline\":\"Purpose of Using App Manifests in a Slack App\",\"datePublished\":\"2025-04-08T07:39:03+00:00\",\"dateModified\":\"2025-04-08T07:51:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\"},\"wordCount\":413,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3\"},\"image\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png\",\"articleSection\":[\"Slack\",\"Slack Developer\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\",\"url\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\",\"name\":\"Purpose of Using App Manifests in a Slack App - A SalesforceSphere By CodeWithTarun\",\"isPartOf\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png\",\"datePublished\":\"2025-04-08T07:39:03+00:00\",\"dateModified\":\"2025-04-08T07:51:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage\",\"url\":\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png\",\"contentUrl\":\"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codewithtarun.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Purpose of Using App Manifests in a Slack App\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/#website\",\"url\":\"https:\/\/codewithtarun.com\/blog\/\",\"name\":\"A SalesforceSphere By CodeWithTarun\",\"description\":\"A Hub for Salesforce Trailblazers &amp; Tech Explorers.\",\"publisher\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codewithtarun.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3\",\"name\":\"Tarun Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/af6262d086f1ed309a700bcf09b2cdf679b126c0abb7cb12797833c3a5f43a97?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/af6262d086f1ed309a700bcf09b2cdf679b126c0abb7cb12797833c3a5f43a97?s=96&d=mm&r=g\",\"caption\":\"Tarun Gupta\"},\"logo\":{\"@id\":\"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Salesforce Marketing Champion \ud83c\udfc6 | Founder &amp; CTO, Vivaansh Consulting | Multi-Cloud | DevOps Enthusiast | Public Speaker | Community Leader | MVP Expert | SFMC , Slack | Data Enthusiast\",\"sameAs\":[\"https:\/\/codewithtarun.com\/blog\"],\"url\":\"https:\/\/codewithtarun.com\/blog\/author\/codewtadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Purpose of Using App Manifests in a Slack App - A SalesforceSphere By CodeWithTarun","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/","og_locale":"en_US","og_type":"article","og_title":"Purpose of Using App Manifests in a Slack App - A SalesforceSphere By CodeWithTarun","og_description":"App manifests in Slack are YAML or JSON configuration files that define your app&#8217;s structure, settings, and permissions in a single, sharable document. They&#8217;re especially useful for collaboration, deployment, and &hellip; Read more \"Purpose of Using App Manifests in a Slack App\"","og_url":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/","og_site_name":"A SalesforceSphere By CodeWithTarun","article_published_time":"2025-04-08T07:39:03+00:00","article_modified_time":"2025-04-08T07:51:37+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1024x683.png","type":"image\/png"}],"author":"Tarun Gupta","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tarun Gupta","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#article","isPartOf":{"@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/"},"author":{"name":"Tarun Gupta","@id":"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3"},"headline":"Purpose of Using App Manifests in a Slack App","datePublished":"2025-04-08T07:39:03+00:00","dateModified":"2025-04-08T07:51:37+00:00","mainEntityOfPage":{"@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/"},"wordCount":413,"commentCount":0,"publisher":{"@id":"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3"},"image":{"@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage"},"thumbnailUrl":"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png","articleSection":["Slack","Slack Developer"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/","url":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/","name":"Purpose of Using App Manifests in a Slack App - A SalesforceSphere By CodeWithTarun","isPartOf":{"@id":"https:\/\/codewithtarun.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage"},"image":{"@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage"},"thumbnailUrl":"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png","datePublished":"2025-04-08T07:39:03+00:00","dateModified":"2025-04-08T07:51:37+00:00","breadcrumb":{"@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#primaryimage","url":"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png","contentUrl":"https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/codewithtarun.com\/blog\/2025\/04\/08\/purpose-of-using-app-manifests-in-a-slack-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codewithtarun.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Purpose of Using App Manifests in a Slack App"}]},{"@type":"WebSite","@id":"https:\/\/codewithtarun.com\/blog\/#website","url":"https:\/\/codewithtarun.com\/blog\/","name":"A SalesforceSphere By CodeWithTarun","description":"A Hub for Salesforce Trailblazers &amp; Tech Explorers.","publisher":{"@id":"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codewithtarun.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/cbe8ae2003e574a61d78f6b91c3773d3","name":"Tarun Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/af6262d086f1ed309a700bcf09b2cdf679b126c0abb7cb12797833c3a5f43a97?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/af6262d086f1ed309a700bcf09b2cdf679b126c0abb7cb12797833c3a5f43a97?s=96&d=mm&r=g","caption":"Tarun Gupta"},"logo":{"@id":"https:\/\/codewithtarun.com\/blog\/#\/schema\/person\/image\/"},"description":"Salesforce Marketing Champion \ud83c\udfc6 | Founder &amp; CTO, Vivaansh Consulting | Multi-Cloud | DevOps Enthusiast | Public Speaker | Community Leader | MVP Expert | SFMC , Slack | Data Enthusiast","sameAs":["https:\/\/codewithtarun.com\/blog"],"url":"https:\/\/codewithtarun.com\/blog\/author\/codewtadmin\/"}]}},"featured_media_urls":{"thumbnail":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-150x150.png",150,150,true],"medium":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-300x200.png",300,200,true],"medium_large":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png",768,512,false],"large":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1024x683.png",950,634,true],"1536x1536":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png",1536,1024,false],"2048x2048":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png",1536,1024,false],"inspiro-featured-image":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta.png",1536,1024,false],"inspiro-loop":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-950x320.png",950,320,true],"inspiro-loop@2x":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1536x640.png",1536,640,true],"portfolio_item-thumbnail":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-600x400.png",600,400,true],"portfolio_item-thumbnail@2x":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1200x800.png",1200,800,true],"portfolio_item-masonry":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-600x400.png",600,400,true],"portfolio_item-masonry@2x":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1200x800.png",1200,800,true],"portfolio_item-thumbnail_cinema":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-800x335.png",800,335,true],"portfolio_item-thumbnail_portrait":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-600x900.png",600,900,true],"portfolio_item-thumbnail_portrait@2x":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-1200x1024.png",1200,1024,true],"portfolio_item-thumbnail_square":["https:\/\/codewithtarun.com\/blog\/wp-content\/uploads\/2025\/04\/manifests_slack_app_tarungupta-800x800.png",800,800,true]},"_links":{"self":[{"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/posts\/7282","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/comments?post=7282"}],"version-history":[{"count":3,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/posts\/7282\/revisions"}],"predecessor-version":[{"id":7288,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/posts\/7282\/revisions\/7288"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/media\/7289"}],"wp:attachment":[{"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/media?parent=7282"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/categories?post=7282"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codewithtarun.com\/blog\/wp-json\/wp\/v2\/tags?post=7282"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}