List customers
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Get a list of bookingCustomer objects.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ❌ |
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.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | Bookings.Read.All | Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Bookings.Read.All | Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All |
GET /solutions/bookingbusinesses/{id}/customers
This method supports the OData query parameters to help customize the response.
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK
response code and collection of bookingCustomer objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/solutions/bookingbusinesses/contosolunchdelivery@contoso.com/customers
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/beta/$metadata#solutions/bookingBusinesses('Contosolunchdelivery%40contoso.com')/customers",
"value": [
{
"id": "80b5ddda-1e3b-4c9d-abe2-d606cc075e2e",
"displayName": "Adele Vance",
"emailAddress": "adelev@proseware.com",
"addresses": [],
"phones": []
},
{
"id": "8bb19078-0f45-4efb-b2c5-da78b860f73a",
"displayName": "Adele Vance",
"emailAddress": "adelev@proseware.com",
"addresses": [
{
"postOfficeBox":"",
"street":"4567 Main Street",
"city":"Buffalo",
"state":"NY",
"countryOrRegion":"USA",
"postalCode":"98052",
"type":"home"
},
{
"postOfficeBox":"",
"street":"4570 Main Street",
"city":"Buffalo",
"state":"NY",
"countryOrRegion":"USA",
"postalCode":"98054",
"type":"business"
}
],
"phones": [
{
"number": "206-555-0100",
"type": "home"
},
{
"number": "206-555-0200",
"type": "business"
}
]
},
{
"id": "829e3cb5-3d4d-4319-a8de-1953aedaa166",
"displayName": "Bob Kelly",
"emailAddress": "bobk@tailspintoys.com",
"addresses": [],
"phones": []
},
{
"id": "7ed53fa5-9ef2-4f2f-975b-27447440bc09",
"displayName": "Jordan Miller",
"emailAddress": "jordanm@contoso.com",
"addresses": [],
"phones": []
}
]
}