cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
jjurisch
Regular Visitor

Post File via HTTP

I am trying to identify a method to use flow to send the attachment of an email via HTTP Post to a custom API. This API accepts multipart form data with file attachments and works when testing via PostMan. However, when trying to craft together the Flow steps I am unable to emulate the request. 

 

Is there any way to do this type of request via Flow and a custom API?

 

My Setup

Step 1) When an email is flagged. 

Step 2) For each attachment:

   A) HTTP

            Method: POST

            URL: Custom API URL

            Header: { "Content-Type": "application/x-www-form-urlencoded" }

            Body: [attachments]

            Authentication: None

  

When the API recieves the request, it appears to be the encoded file but not in a multipart form request. I have full control over how the API handles the request data so could go about this a different way, but I'm completely stuck with figuring out how the Body field is supposed to behave with an attachment. 

1 ACCEPTED SOLUTION

Accepted Solutions
jjurisch
Regular Visitor

I was able to finally self solve this with some more advanced trial and error. Hopefully it will help somebody else down the line until there is better documentation around the actions. 

 

It turns out that if you add the [attachments] object to the body of the email it will submit a JSON array with attributes of the file and the file itself encoded in Base64. So I just needed to update my API handler to accept a JSON array, loop through each attachment and decode the ContentBytes into a file again. 

 

I didn't experiment with adding additional attachment information to the body, but my use didn't need anything else from the message. 

 

Example Attachment Record

[{
    "Id": "AQMkADgxZmMyZmVmLWZiYTEtNGI3ZC05NzZlLTUzYTM1MGQ0YjdmNgBGAAAD5GChXHSojUuPkBPyKc4QiwcAZAodtTo4mUerxYfYMVtIcwAAAgEMAAAAZAodtTo4mUerxYfYMVtIcwAB6K4I0AAAAAESABAAszVi_Bwy20yVhdzX_og1fA==",
    "ContentType": "application/zip",
    "Size": 12552,
    "@odata.type": "#Microsoft.OutlookServices.FileAttachment",
    "Name": "attachment.zip",
    "ContentBytes": "UEsDBAoAAAAIAK1RT0odhQmifC4AAGhABgAyAAAAZ29vZ2xlLmNvbSFlbmdhZ2UuM20uY29tITE0ODcwMzA0MDAhMTQ4NzExNjc5OS54bWztnduO20iWru/7KQp9n2FGkMETPJ49wMz0xQZmgJ4e7MsCRVISKylSICm7VE+/I6hDMm01My2RGYtRP2C5XHmQKOnTinX81+d//X1X/vI1b9qirv7lr5w5f/0lr9I6K6rNv/z1f//xn0/hX3/51y9/+bzO82yVpM9f/vLLL5+bfF833a+7vEuypEv019RX62bza5Xs8i+but6UOUvr3edP1y+efibfJUX5parVPZTHp2yXNOlTe9jru/s/w187/dz5d37vmuTXtK66JO1+Lap1/WXbdfs2/vTp/Kvs5Vc/JZ+Sqv2WN5+E5/sydNR9/fj7pzs+P40i++IKTwoZisAJXBmJIIzU7718+/Tj6qnmvzZJtTk/GfWlVb4pqi/cCwPHdTxH/dLpK5fv51XWf5dzP4gidSnV5c4+vb6366MNX9PP+7os0uOv+8OqLNptfr2QWr061Ze82iSbnLm700t2/urpR5Lsudh9aT5/Ov3j/MV2v+6/pv97+tJevRdV/vnT/vz/7eUL7eUr+7T7wvUz0//or/TWVanXMq2bywU29bfrS9DWhybNfy32X4Tj8FjKMF7n3I95FEfqb+7FXKqbH6rHvP7o5ZfT+lCph//86fSPy5fPV5B/TcqDehmzyzf0a1O0+7otOoXz+ZkMvzL4Of2y7JO2VT9wfYXOL8H6y1rRp1+D9fUhP91+TPW+XZ7r5yLLq65YF+rDdP21bZ5kefPruql3379fw2+d7+uHe/icHLrtr03eHsru5U6/u+C3cTjTru/l/JzP/zN41nmZp13dfMmeuSO8J+FwoV6By1evL8PwsT8PXqCfvo62Xnenl/n1tQxedkXqd09f//CFs3ch5ztBvA5XTqw+nCJOHRnHQiRAzQ7UNvqU+PlrmBYxJ2Scu0xZN8ZF8M/RcoHWgtCiZMUCj2
},]

View solution in original post

13 REPLIES 13
jjurisch
Regular Visitor

I was able to finally self solve this with some more advanced trial and error. Hopefully it will help somebody else down the line until there is better documentation around the actions. 

 

It turns out that if you add the [attachments] object to the body of the email it will submit a JSON array with attributes of the file and the file itself encoded in Base64. So I just needed to update my API handler to accept a JSON array, loop through each attachment and decode the ContentBytes into a file again. 

 

I didn't experiment with adding additional attachment information to the body, but my use didn't need anything else from the message. 

 

Example Attachment Record

[{
    "Id": "AQMkADgxZmMyZmVmLWZiYTEtNGI3ZC05NzZlLTUzYTM1MGQ0YjdmNgBGAAAD5GChXHSojUuPkBPyKc4QiwcAZAodtTo4mUerxYfYMVtIcwAAAgEMAAAAZAodtTo4mUerxYfYMVtIcwAB6K4I0AAAAAESABAAszVi_Bwy20yVhdzX_og1fA==",
    "ContentType": "application/zip",
    "Size": 12552,
    "@odata.type": "#Microsoft.OutlookServices.FileAttachment",
    "Name": "attachment.zip",
    "ContentBytes": "UEsDBAoAAAAIAK1RT0odhQmifC4AAGhABgAyAAAAZ29vZ2xlLmNvbSFlbmdhZ2UuM20uY29tITE0ODcwMzA0MDAhMTQ4NzExNjc5OS54bWztnduO20iWru/7KQp9n2FGkMETPJ49wMz0xQZmgJ4e7MsCRVISKylSICm7VE+/I6hDMm01My2RGYtRP2C5XHmQKOnTinX81+d//X1X/vI1b9qirv7lr5w5f/0lr9I6K6rNv/z1f//xn0/hX3/51y9/+bzO82yVpM9f/vLLL5+bfF833a+7vEuypEv019RX62bza5Xs8i+but6UOUvr3edP1y+efibfJUX5parVPZTHp2yXNOlTe9jru/s/w187/dz5d37vmuTXtK66JO1+Lap1/WXbdfs2/vTp/Kvs5Vc/JZ+Sqv2WN5+E5/sydNR9/fj7pzs+P40i++IKTwoZisAJXBmJIIzU7718+/Tj6qnmvzZJtTk/GfWlVb4pqi/cCwPHdTxH/dLpK5fv51XWf5dzP4gidSnV5c4+vb6366MNX9PP+7os0uOv+8OqLNptfr2QWr061Ze82iSbnLm700t2/urpR5Lsudh9aT5/Ov3j/MV2v+6/pv97+tJevRdV/vnT/vz/7eUL7eUr+7T7wvUz0//or/TWVanXMq2bywU29bfrS9DWhybNfy32X4Tj8FjKMF7n3I95FEfqb+7FXKqbH6rHvP7o5ZfT+lCph//86fSPy5fPV5B/TcqDehmzyzf0a1O0+7otOoXz+ZkMvzL4Of2y7JO2VT9wfYXOL8H6y1rRp1+D9fUhP91+TPW+XZ7r5yLLq65YF+rDdP21bZ5kefPruql3379fw2+d7+uHe/icHLrtr03eHsru5U6/u+C3cTjTru/l/JzP/zN41nmZp13dfMmeuSO8J+FwoV6By1evL8PwsT8PXqCfvo62Xnenl/n1tQxedkXqd09f//CFs3ch5ztBvA5XTqw+nCJOHRnHQiRAzQ7UNvqU+PlrmBYxJ2Scu0xZN8ZF8M/RcoHWgtCiZMUCj2
},]

Hi @jjurisch,

 

Thanks for the update and sharing!

Regards

Community Support Team _ Michael Shao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @jjurisch

I'm integrating a personnal app with Microsoft Flow and I'm Having the same problem.

Can you describe this steps:

 

"So I just needed to update my API handler to accept a JSON array, loop through each attachment and decode the ContentBytes into a file again." 

 

Thank you,

Filipe Amaro

 

SH2021
Advocate II
Advocate II

Dear Community

 

I am facing this problem and I could not find a proper explanation. If anyone knows how to attach documents that are saved in SharePoint to an HTTP POST request used to create draft emails in Outlook, then please share this valuable piece of info!

 

I want to obtain "test.pptx" which lies in a SharePoint document folder and then attach it to my HTTP POST request. I first import all the data from this folder and then loop through the data in it. When the loop is at the test.pptx file, I obtain the "id" by using the dynamic content "identifier", as well as the "Name" by using "File Name with Extension". Interestingly, "File Name with Extension" gave me the contentType when saving it in an array. 
I furthermore load the data directly by using the identifier, which gives me the "ContentBytes" and I then get "Size" by using int(length(string(body('Dateiinhalt_abrufen')))) (its in German).

 

Below is one of many trials. I'd appreciate any feedback! For example, is the positioning of the attachment correct, or should it appear somewhere else?


Kind regards
Sean

 

{

  "subject": "attachment try ",
  "body":{
  "contentType":"HTML",
  "content":"Dear X, how are you doing? Bye, Y",},
  "toRecipients":[
  {
  "emailAddress":{
  "address":"me.me@me.com"}
  }
],
  "ccRecipients":[

  {
  "emailAddress":{
  "address":"me.me@me.com"}
  }
],
  [{
  "@odata.type": #Microsoft.OutlookServices.FileAttachment,
  "Id": "Shared%2bDocuments%252faktuelles%2bQuartal%252ftest_GH_.pptx" ,
  "Name": "test.pptx" ,
   "ContentType": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
  "Size": 32731,
  "ContentBytes": "UEsDBBQA…”
  }]

}

 

Error upon running:

Unable to read JSON request payload. Please ensure Content-Type header is set and payload is of valid JSON format.

jjurisch
Regular Visitor

@SH2021 - most likely our use cases may be different as with mine I was controlling both the Flow application as well as the API it was sending the data to. In this case, I couldn't change anything in the Flow submission (that I could find). However, that was also ~4-5 years ago and I haven't kept up with advancements in PowerApps/Flows.

 

In my example, the payload that was sent from Flow to the downstream API was out of my control, but in examining what it was sending I found that the JSON line of "ContentBytes" was actually a Base64 encoded string. If you have control in the downstream application to examine that line and Base64 decode it, it will convert into a file if you use the other metadata to encode it correctly (Content Type, Name, etc). 

 

So if you are sending to Outlook as draft - unless you have the ability to parse/decode the string value into email values this may not help you much. Outside of this specific project I haven't dabbled with Flow/PowerApps since so am not much of a resource in this space. 

 

Good luck figuring it out! If you do, please add some details to this thread as looks like more people may have similar issues/use cases. 

SH2021
Advocate II
Advocate II

Thank you for your reply @jjurisch! Unfortunately, I have not solved it, yet, but I might have gotten slightly closer. I used the code below. I got the code for "Attachments" by examining the code of another simple flow which saved this attachment into my sharepoint documents folder, so I can be sure that the information under "Attachments" is correct.

 

My problematic flow, which I hope will attach this saved file to a draft outlook e-mail using an HTTP POST Request, now gives me a different warning than before: "were unable to deserialize".

 

Can anyone tell me whether this relates to jjurisch comment about decoding the Base64 string? If yes, I suppose I should parse/decode the string value (meaning the strings of "Id" and "ContentType"? or all fields?) into email values?


Kind regards

{
"subject": "attachment ",
"body":{
"contentType":"HTML",
"content":"Dear X, how are you doing? Bye, Y",
"Attachments": [
{
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Id": "AAMkADkwOWU0MG…
"LastModifiedDateTime": "2022-01-27T15:06:43+00:00",
"Name": "test_BB_.xlsx",
"ContentType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"Size": 18246,
"IsInline": false,
"ContentId": null,
"ContentBytes": "UEsDBBQABgAIAAAAIQDuoo…
}
]
},
"toRecipients":[
{
"emailAddress":{
"address":"me.me@me.com"}
}
],
"ccRecipients":[
{
"emailAddress":{
"address":"me.me@me.com"}
}
],

}

 

 

I alternatively tried to directly attach the email attachments to the HTTP POST Request (I have to use PA in German). No luck though:

SH2021_0-1643298984147.pngSH2021_1-1643299010029.png

 

The error message body upon examining:

{
  "error": {
    "code""BadRequest",
    "message""Unable to read JSON request payload. Please ensure Content-Type header is set and payload is of valid JSON format.",
    "innerError": {
      "date""2022-01-27T15:53:51",
      "request-id""ab80e8ef-e4ee-4927-a837-677f510b545c",
      "client-request-id""ab80e8ef-e4ee-4927-a837-677f510b545c"
    }
  }
}

 

 

tolga-balci
Frequent Visitor

@SH2021 - I'm struggling with the same for weeks. Were you able to solve your issue? 

SH2021
Advocate II
Advocate II

Hi@tolga-balci I have not implemented a solution yet, but may have found one. Lately I stumbled upon something which I wanted to try out but then forgot to save the link. It may have been this, because I have not tried this compose idea yet and it looks like it may work: https://www.damobird365.com/create-a-draft-email-in-outlook/

I will try it out when it becomes relevant for me again (in one month probably), but please let me know if you beat me to it.

Kind regards

SH

tolga-balci
Frequent Visitor

Deal. To be honest, I'm following his article, too. I managed to get the drafts working without any issues, but things fail when I try to add the attachments. 

SH2021
Advocate II
Advocate II

I looked at your post now (30.05.22). So you get the same problem is I am facing it seems, the payload error.

One thing I wonder about is that you have empty spaces in your "name" and "contentBytes":

“name”:”Monthly Report May 2022.xlsx”,
“contentBytes”: outputs(‘Get XLSX Report’)?[‘body’]?[‘$content’]


So far Power Automate has always replaced spaces with lower bars "_" whenever I reference previous steps. It does not seem to like empty spaces. Maybe manually replace them accordingly and try again?

 

Also: did you try Aud's solution?

Thanks @SH2021  - it seems that I corrected it afterwards, as it seems like there are the underscores, and the error message changed to:

 

{
  "error": {
    "code": "UnableToDeserializePostBody",
    "message": "were unable to deserialize "
  }
}

 

 

Plus, I think we are missing the base64 conversion as documented in the fileAttachments documentation.

 

Edit: Regarding my post on 30.May, it doesn't appear under my profile. It's as if I posted it and is somehow disappeared. 

That is a shame, but can you please send me the post's link?

SH2021
Advocate II
Advocate II

tbalci
Frequent Visitor

@SH2021 

Sorry, I really got confused with another post.

 

Helpful resources

Announcements

April 2024 Commnuity Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.     Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.     Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Users online (3,695)