Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.47 KB

list-team-member-booking-profiles-response.md

File metadata and controls

40 lines (32 loc) · 1.47 KB

List Team Member Booking Profiles Response

Structure

ListTeamMemberBookingProfilesResponse

Fields

Name Type Tags Description
teamMemberBookingProfiles TeamMemberBookingProfile[] | undefined Optional The list of team member booking profiles. The results are returned in the ascending order of the time
when the team member booking profiles were last updated. Multiple booking profiles updated at the same time
are further sorted in the ascending order of their IDs.
cursor string | undefined Optional The pagination cursor to be used in the subsequent request to get the next page of the results. Stop retrieving the next page of the results when the cursor is not set.
Constraints: Maximum Length: 65536
errors Error[] | undefined Optional Errors that occurred during the request.

Example (as JSON)

{
  "errors": [],
  "team_member_booking_profiles": [
    {
      "display_name": "Sandbox Seller",
      "is_bookable": true,
      "team_member_id": "TMXUrsBWWcHTt79t",
      "description": "description4",
      "profile_image_url": "profile_image_url2"
    },
    {
      "display_name": "Sandbox Staff",
      "is_bookable": true,
      "team_member_id": "TMaJcbiRqPIGZuS9",
      "description": "description4",
      "profile_image_url": "profile_image_url2"
    }
  ],
  "cursor": "cursor0"
}