Get bookingStaffMember
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported.
Get the properties and relationships of a bookingStaffMember in the specified bookingbusiness.
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}/staffMembers/{id}
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 bookingStaffMember object 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/staffmembers/71d64d0e-7225-49b6-b0b1-070d476cda51
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')/staffMembers/$entity",
"id": "71d64d0e-7225-49b6-b0b1-070d476cda51",
"displayName": "Samantha Booth",
"emailAddress": "samanthab@M365B489948.OnMicrosoft.com",
"availabilityIsAffectedByPersonalCalendar": true,
"colorIndex": 0,
"role": "administrator",
"useBusinessHours": true,
"workingHours": [
{
"day": "monday",
"timeSlots": [
{
"start": "08:00:00.0000000",
"end": "17:00:00.0000000"
}
]
},
{
"day": "tuesday",
"timeSlots": [
{
"start": "08:00:00.0000000",
"end": "17:00:00.0000000"
}
]
},
{
"day": "wednesday",
"timeSlots": [
{
"start": "08:00:00.0000000",
"end": "17:00:00.0000000"
}
]
},
{
"day": "thursday",
"timeSlots": [
{
"start": "08:00:00.0000000",
"end": "17:00:00.0000000"
}
]
},
{
"day": "friday",
"timeSlots": [
{
"start": "08:00:00.0000000",
"end": "17:00:00.0000000"
}
]
},
{
"day": "saturday",
"timeSlots": []
},
{
"day": "sunday",
"timeSlots": []
}
]
}
Feedback
Loading feedback...