Core resources


Administration


Booking flow

Members

Organization members.

Endpoints

The member object

Attributes

iduuid

Unique identifier

organization_iduuid

Identifier of the organization this member is defined in

user_iduuid
user_profiles.user_id

Identifier of the related user

created_attimestamp with time zone

Creation timestamp

updated_attimestamp with time zone

Last modification timestamp

role"user" | "admin" | "superuser"

Role of the member

The member object
{
"id": "00000000-0000-0000-0000-000000000000",
"organization_id": "00000000-0000-0000-0000-000000000000",
"user_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2024-05-11T10:32:21.979Z",
"updated_at": "2024-05-11T10:32:21.979Z",
"role": "user"
}

List members

Filters

idFilter<uuid>

Unique identifier

organization_idFilter<uuid>

Identifier of the organization this member is defined in

user_idFilter<uuid>

Identifier of the related user

created_atFilter<timestamp with time zone>

Creation timestamp

updated_atFilter<timestamp with time zone>

Last modification timestamp

roleFilter<"user" | "admin" | "superuser">

Role of the member

Responses

200

A list of members with the selected columns

206

Partial Content

GET/members
curl -X GET "https://api.bookingmood.com/v1/members?select=*" \
  -H "Authorization: Bearer YOUR_API_KEY"