Tag Archives: Engage API

Viva Engage (Yammer) API

Yammer (Viva Engage) API

There are three Yammer APIs that I know:

There were also rumors on (in development/preview) Yammer REST API v 2.0 – https://api.yammer.com/ – but nothing specific…

Classic Yammer REST API ( v 1.0 )

Classic Yammer REST API is rich and mature, but Microsoft said that no further updates are planned on classic Yammer API, so here is my article on how to call Classic Yammer API from code, including search in Yammer … Since Microsoft Graph API for Viva Engage (Yammer is very limited), we have to rely on classic Yammer Viva Engage API, including search through Viva Engage communities posts.

You’d call this classic API with your personal credentials, i.e. if operation requires admin access, you’d need activate your Yammer Admin role.

Microsoft Graph API for Viva Engage (Yammer)

So far the only available operations are:

You also can work with communities membership – add/get/delete members – but it’s done via groups API

Authentication options available – delegated and application (e.g. automation available), with Entra Id App Registration.

Reports on Yammer (Viva Engage) activity

Provides summary and activities

Authentication options available – delegated and application (e.g. automation available), with Entra Id App Registration.


more on the subject (to be explored…)

Accessing Yammer API with Azure registered App

There are two permissions you can provide to your azure app registration:

  • access_as_user – Read and write to the Yammer platform
    Allows the application to access the Yammer platform on behalf of the signed-in user
  • user_impersonation – Read and write to the Yammer platform
    Allows the application to access the Yammer platform on behalf of the signed-in user

References

Working with Yammer API from code

Yammer (now Viva Engage) is an internal (corporate) social network, and part of the Microsoft 365 suit of services. How do we work with Viva Engage programmatically? Can we read messages or search through communities? Can we get groups (communities) details and membership – etc. Is there an API we can use? How do we authenticate? Here you go.

There are two API’s available to work with Viva Engage (Yammer) from code:

  • (modern) Microsoft Graph API
  • (classic) Yammer API

Microsoft Graph API

Microsoft Graph API is a preferred way to work with Viva Engage programmatically. You’d just need an Entra Id App Registration configured correctly to authenticate and be authorized to call Graph API:

Unfortunately, Microsoft Graph API is still limited (Mar 2025) with respect to Viva Engage – you can only do CRUD operations against communities. You cannot search through community messages, you cannot post messages or read what is posted. You cannot reply or react on messages.

Since any Yammer community membership is based on Microsoft 365 group – you can use all group operations (including managing membership).

Since any Yammer community has a SharePoint site behind – you can use SharePoint Graph API to manage community documents.

Yammer API

Classic Yammer API is old, but still relevant API. With Classic Yammer API you can do what is not possible yet with Graph API, e.g. get messages (all or latest or within specific community or about some topic, etc.), search through messages, as well as post and delete messages.

Here is the full list of available operations. Unfortunately, Microsoft just keeps light on there (no plans for development). Below is how to authenticate to Yammer API and some usage samples of classic Yammer API for Viva Engage.

    Register Yammer Application

    Navigate to the page: https://www.yammer.com/client_applications

    Click “Register new application”:

    Fill all the fields:

    Client ID and Client secret will be generated automatically:

    I’m not sure – how to get access token from Client ID and Client secret, so I use link “Generate a developer token for this application”. When you click this link, a token will be generated, and it says “Here is your personal token for testing. Please copy it somewhere safe as it will disappear when you leave the page:”

    Calling Yammer API

    Once you get the toke – you can use it in your code (consider vaulting or other save methods). Here is an example based on powershell, but surely you can do the same with programming language you comfortable with:

    $baererToken = "Put your token here"
    
    $headers = @{ Authorization = ("Bearer " + $baererToken) }
    
    # get messages
    $webRequest = Invoke-WebRequest –Uri "https://www.yammer.com/api/v1/messages.json" –Method Get -Headers $headers
    $results = $webRequest.Content | ConvertFrom-Json
    
    $results.messages | ForEach-Object {
        $message = $_ 
        Write-Host "Message Id:" $message.id
        Write-Host "Message body:" $message.body.parsed
    }
    
    # get users
    Invoke-WebRequest –Uri "https://www.yammer.com/api/v1/users.json" –Method Get -Headers $headers | ConvertFrom-Json | select email
    
    # search through Viva Engage messages
    $YammerApiURL = "https://www.yammer.com/api/v1/search.json?search=Test*"
    $results = Invoke-WebRequest –Uri $YammerApiURL –Method Get -Headers $headers | ConvertFrom-Json 
    $results
    $results.count
    $results.users[0]
    $results.messages.messages[0].body.parsed
    
    # export all messages (admin role required)
    $url = "https://www.yammer.com/api/v1/export?since=2020-02-9T00:00:00+00:00"
    $url = $url + "&model=Message&include=csv"
    Invoke-WebRequest –Uri $url –Method Get -Headers $headers | ConvertFrom-Json 
    
    
      

    References

    Yammer API with PowerShell: Private groups and messages

    As an Office 365 administrator, I would like to get some reports on Yammer with PowerShell. How it’s done?

    Patrick Lamber wrote a good article here: “Access the Yammer REST API through PowerShell“. The only I would add (important!) is:

    By default, even with a Verified Admin token, you do not have access to private messages and private groups content.
    To get private stuff, you need select “Private Content Mode” under Yammer Admin Center -> Content and Security -> Content Mode:

    Check Microsoft: “Monitor private content in Yammer” and
    Yammer: “Verified Admin Private Content Mode

    If you do not have “Private Content Mode” set up, you might see some weird “Invoke-WebRequest” errors like: