|
| 1 | +--- |
| 2 | +title: "List following objects" |
| 3 | +description: "Retrieve a list of users that the specified user is currently following." |
| 4 | +author: "aditijha4" |
| 5 | +ms.date: 02/06/2026 |
| 6 | +ms.localizationpriority: medium |
| 7 | +ms.subservice: "viva-engage" |
| 8 | +doc_type: apiPageType |
| 9 | +--- |
| 10 | + |
| 11 | +# List following objects |
| 12 | + |
| 13 | +Namespace: microsoft.graph |
| 14 | + |
| 15 | +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] |
| 16 | + |
| 17 | +Retrieve a list of users whose [storyline](../resources/storyline.md) the specified user is currently following. |
| 18 | + |
| 19 | +## Permissions |
| 20 | + |
| 21 | +Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference). |
| 22 | + |
| 23 | +<!-- { |
| 24 | + "blockType": "permissions", |
| 25 | + "name": "storyline-list-followings-permissions" |
| 26 | +} |
| 27 | +--> |
| 28 | +[!INCLUDE [permissions-table](../includes/permissions/storyline-list-followings-permissions.md)] |
| 29 | + |
| 30 | +## HTTP request |
| 31 | + |
| 32 | +<!-- { |
| 33 | + "blockType": "ignored" |
| 34 | +} |
| 35 | +--> |
| 36 | +``` http |
| 37 | +GET /users/{user-id}/employeeExperience/storyline/followings |
| 38 | +``` |
| 39 | + |
| 40 | +## Optional query parameters |
| 41 | + |
| 42 | +This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). |
| 43 | + |
| 44 | +## Request headers |
| 45 | + |
| 46 | +|Name|Description| |
| 47 | +|:---|:---| |
| 48 | +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| |
| 49 | + |
| 50 | +## Request body |
| 51 | + |
| 52 | +Don't supply a request body for this method. |
| 53 | + |
| 54 | +## Response |
| 55 | + |
| 56 | +If successful, this method returns a `200 OK` response code and a collection of [storylineFollowing](../resources/storylinefollowing.md) objects in the response body. |
| 57 | + |
| 58 | +## Examples |
| 59 | + |
| 60 | +### Request |
| 61 | + |
| 62 | +The following example shows a request. |
| 63 | +<!-- { |
| 64 | + "blockType": "request", |
| 65 | + "name": "list_storyline_followings" |
| 66 | +} |
| 67 | +--> |
| 68 | +``` http |
| 69 | +GET https://graph.microsoft.com/beta/users/b3c29da7-ff83-4a92-b14e-7c91fe830b96/employeeExperience/storyline/followings |
| 70 | +``` |
| 71 | + |
| 72 | +### Response |
| 73 | + |
| 74 | +The following example shows the response. |
| 75 | +>**Note:** The response object shown here might be shortened for readability. |
| 76 | +<!-- { |
| 77 | + "blockType": "response", |
| 78 | + "truncated": true, |
| 79 | + "@odata.type": "Collection(microsoft.graph.storylineFollowing)" |
| 80 | +} |
| 81 | +--> |
| 82 | +``` http |
| 83 | +HTTP/1.1 200 OK |
| 84 | +Content-Type: application/json |
| 85 | +
|
| 86 | +{ |
| 87 | + "@odata.context": "https://graph.microsoft.com/beta/$metadata#users('b3c29da7-ff83-4a92-b14e-7c91fe830b96')/employeeExperience/storyline/followings", |
| 88 | + "@odata.count": 3, |
| 89 | + "value": [ |
| 90 | + { |
| 91 | + "id": "e7f439cd-2e84-4b15-a903-f6d82a7b9c21", |
| 92 | + "following": { |
| 93 | + "group": null, |
| 94 | + "audience": null, |
| 95 | + "application": null, |
| 96 | + "user": { |
| 97 | + "@odata.type": "#microsoft.graph.userIdentity", |
| 98 | + "displayName": "Cameron", |
| 99 | + "id": "e7f439cd-2e84-4b15-a903-f6d82a7b9c21", |
| 100 | + "userPrincipalName": "cameron@contoso.com" |
| 101 | + } |
| 102 | + } |
| 103 | + }, |
| 104 | + { |
| 105 | + "id": "d4b89c76-3f8e-4a15-9c72-8e5f6b3d91a2", |
| 106 | + "following": { |
| 107 | + "user": { |
| 108 | + "@odata.type": "#microsoft.graph.userIdentity", |
| 109 | + "displayName": "Taylor", |
| 110 | + "id": "d4b89c76-3f8e-4a15-9c72-8e5f6b3d91a2", |
| 111 | + "userPrincipalName": "taylor@contoso.com" |
| 112 | + } |
| 113 | + } |
| 114 | + }, |
| 115 | + { |
| 116 | + "id": "a8c55d92-1374-4e68-bb9f-3c8d7e924156", |
| 117 | + "following": { |
| 118 | + "user": { |
| 119 | + "@odata.type": "#microsoft.graph.userIdentity", |
| 120 | + "displayName": "Jordan", |
| 121 | + "id": "a8c55d92-1374-4e68-bb9f-3c8d7e924156", |
| 122 | + "userPrincipalName": "jordan@contoso.com" |
| 123 | + } |
| 124 | + } |
| 125 | + } |
| 126 | + ] |
| 127 | +} |
| 128 | +``` |
| 129 | + |
0 commit comments