List customers
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported.
Get a list of bookingCustomer objects.
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) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Not supported. |
HTTP request
GET /bookingBusinesses/{id}/customers
Optional query parameters
This method supports the OData Query Parameters to help customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {code} |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and collection of bookingCustomer objects in the response body.
Example
Request
The following is an example of the request.
GET https://graph.microsoft.com/beta/bookingBusinesses/Contosolunchdelivery@M365B489948.onmicrosoft.com/customers
Response
The following 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
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#bookingBusinesses('Contosolunchdelivery%40M365B489948.onmicrosoft.com')/customers",
"value": [
{
"id": "80b5ddda-1e3b-4c9d-abe2-d606cc075e2e",
"displayName": "Adele Vance",
"emailAddress": "adelev@proseware.com"
},
{
"id": "8bb19078-0f45-4efb-b2c5-da78b860f73a",
"displayName": "Adele Vance",
"emailAddress": "adelev@proseware.com"
},
{
"id": "829e3cb5-3d4d-4319-a8de-1953aedaa166",
"displayName": "Bob Kelly",
"emailAddress": "bobk@tailspintoys.com"
},
{
"id": "7ed53fa5-9ef2-4f2f-975b-27447440bc09",
"displayName": "Jordan Miller",
"emailAddress": "jordanm@contoso.com"
}
]
}
Feedback
Loading feedback...