Skip to content

Latest commit

 

History

History
161 lines (135 loc) · 5.07 KB

File metadata and controls

161 lines (135 loc) · 5.07 KB
title Get orgContact
description Retrieve the properties of an orgContact object.
ms.localizationpriority medium
author dkershaw10
ms.subservice entra-directory-management
doc_type apiPageType
ms.date 06/21/2024

Get orgContact

Namespace: microsoft.graph

Get the properties and relationships of an organizational contact.

[!INCLUDE national-cloud-support]

Permissions

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. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

[!INCLUDE rbac-org-contacts-apis-read-all]

HTTP request

GET /contacts/{id}

Optional query parameters

This method supports the $select and $expand OData query parameters to help customize the response.

Request headers

Header Value
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and an orgContact object in the response body.

Example

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/contacts/25caf6a2-d5cb-470d-8940-20ba795ef62d

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-type: application/json

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#contacts/$entity",
    "id": "25caf6a2-d5cb-470d-8940-20ba795ef62d",
    "deletedDateTime": null,
    "companyName": "Adatum Corporation",
    "department": null,
    "displayName": "Adele Vance",
    "proxyAddresses": [
        "SMTP:AdeleVance@adatum.com"
    ],
    "givenName": "Adele",
    "imAddresses": [],
    "jobTitle": "Engagement manager",
    "mail": "AdeleVance@adatum.com",
    "mailNickname": "AdeleVance",
    "onPremisesLastSyncDateTime": null,
    "onPremisesSyncEnabled": null,
    "surname": "Vance",
    "addresses": [
        {
            "city": null,
            "countryOrRegion": "United States",
            "officeLocation": null,
            "postalCode": null,
            "state": null,
            "street": null
        }
    ],
    "onPremisesProvisioningErrors": [],
    "phones": [
        {
            "number": null,
            "type": "businessFax"
        },
        {
            "number": null,
            "type": "mobile"
        },
        {
            "number": null,
            "type": "business"
        }
    ]
}