List telecomExpenseManagementPartners
Article
11/30/2023
9 contributors
Feedback
In this article
Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
List properties and relationships of the telecomExpenseManagementPartner objects.
This API is available in the following national cloud deployments .
Global service
US Government L4
US Government L5 (DOD)
China operated by 21Vianet
✅
✅
✅
✅
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions .
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All
HTTP Request
GET /deviceManagement/telecomExpenseManagementPartners
Header
Value
Authorization
Bearer <token> Required.
Accept
application/json
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of telecomExpenseManagementPartner objects in the response body.
Example
Request
Here is an example of the request.
GET https://graph.microsoft.com/v1.0/deviceManagement/telecomExpenseManagementPartners
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceManagement.TelecomExpenseManagementPartners.GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
telecomExpenseManagementPartners, err := graphClient.DeviceManagement().TelecomExpenseManagementPartners().Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
TelecomExpenseManagementPartnerCollectionPage telecomExpenseManagementPartners = graphClient.deviceManagement().telecomExpenseManagementPartners()
.buildRequest()
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
let telecomExpenseManagementPartners = await client.api('/deviceManagement/telecomExpenseManagementPartners')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->deviceManagement()->telecomExpenseManagementPartners()->get()->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(credentials, scopes)
result = await graph_client.device_management.telecom_expense_management_partners.get()
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 358
{
"value": [
{
"@odata.type": "#microsoft.graph.telecomExpenseManagementPartner",
"id": "47a3b399-b399-47a3-99b3-a34799b3a347",
"displayName": "Display Name value",
"url": "Url value",
"appAuthorized": true,
"enabled": true,
"lastConnectionDateTime": "2016-12-31T23:58:36.6670033-08:00"
}
]
}