Core resources
Administration
Booking flow
id
uuid
Unique identifier
organization_id
uuid
Identifier of the organization this contact is defined in
created_at
timestamp with time zone
Creation timestamp
updated_at
timestamp with time zone
Last modification timestamp
address
text
Concatenation of the address fields
avatar
text | null
URL of the avatar image
city
text
City of the contact
country
text
Country of the contact
email
text
Contact email address
first_name
text
First name of the contact
fts
tsvector
Full text search index
language
text | null
Language of the contact
last_name
text
Last name of the contact
meta
jsonb
name
text
Full name of the contact
notes
text
phone
text
Contact phone number
province
text
Province of the contact
state
text
State of the contact
street
text
Street address of the contact
street2
text
Street address of the contact
zip
text
Zip code of the contact
{"id": "00000000-0000-0000-0000-000000000000","creator_id": "00000000-0000-0000-0000-000000000000","organization_id": "00000000-0000-0000-0000-000000000000","created_at": "2024-11-21T14:03:52.202Z","updated_at": "2024-11-21T14:03:52.202Z","address": "","avatar": "","city": "","country": "","email": "","first_name": "","language": "","last_name": "","meta": {},"name": "","notes": "","phone": "","province": "","state": "","street": "","street2": "","zip": ""}
id
Filter<>
Unique identifier
creator_id
Filter<>
Identifier of the user that created the contact
organization_id
Filter<>
Identifier of the organization this contact is defined in
created_at
Filter<>
Creation timestamp
updated_at
Filter<>
Last modification timestamp
address
Filter<>
Concatenation of the address fields
avatar
Filter<>
URL of the avatar image
city
Filter<>
City of the contact
country
Filter<>
Country of the contact
email
Filter<>
Contact email address
first_name
Filter<>
First name of the contact
fts
Filter<>
Full text search index
language
Filter<>
Language of the contact
last_name
Filter<>
Last name of the contact
meta
Filter<>
name
Filter<>
Full name of the contact
notes
Filter<>
phone
Filter<>
Contact phone number
province
Filter<>
Province of the contact
state
Filter<>
State of the contact
street
Filter<>
Street address of the contact
street2
Filter<>
Street address of the contact
zip
Filter<>
Zip code of the contact
200
A list of contacts with the selected columns
206
Partial Content
GET
/contacts
curl -X GET "https://api.bookingmood.com/v1/contacts?select=*" \ -H "Authorization: Bearer YOUR_API_KEY"
Partial<Contact>
| Array<Partial<Contact>>
201
The newly created contacts with the selected columns
POST
/contacts
curl -X POST "https://api.bookingmood.com/v1/contacts" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '[]'
id
Filter<>
Unique identifier
creator_id
Filter<>
Identifier of the user that created the contact
organization_id
Filter<>
Identifier of the organization this contact is defined in
created_at
Filter<>
Creation timestamp
updated_at
Filter<>
Last modification timestamp
address
Filter<>
Concatenation of the address fields
avatar
Filter<>
URL of the avatar image
city
Filter<>
City of the contact
country
Filter<>
Country of the contact
email
Filter<>
Contact email address
first_name
Filter<>
First name of the contact
fts
Filter<>
Full text search index
language
Filter<>
Language of the contact
last_name
Filter<>
Last name of the contact
meta
Filter<>
name
Filter<>
Full name of the contact
notes
Filter<>
phone
Filter<>
Contact phone number
province
Filter<>
Province of the contact
state
Filter<>
State of the contact
street
Filter<>
Street address of the contact
street2
Filter<>
Street address of the contact
zip
Filter<>
Zip code of the contact
204
The deleted contacts with the selected columns
DELETE
/contacts
curl -X DELETE "https://api.bookingmood.com/v1/contacts" \ -H "Authorization: Bearer YOUR_API_KEY"
id
Filter<>
Unique identifier
creator_id
Filter<>
Identifier of the user that created the contact
organization_id
Filter<>
Identifier of the organization this contact is defined in
created_at
Filter<>
Creation timestamp
updated_at
Filter<>
Last modification timestamp
address
Filter<>
Concatenation of the address fields
avatar
Filter<>
URL of the avatar image
city
Filter<>
City of the contact
country
Filter<>
Country of the contact
email
Filter<>
Contact email address
first_name
Filter<>
First name of the contact
fts
Filter<>
Full text search index
language
Filter<>
Language of the contact
last_name
Filter<>
Last name of the contact
meta
Filter<>
name
Filter<>
Full name of the contact
notes
Filter<>
phone
Filter<>
Contact phone number
province
Filter<>
Province of the contact
state
Filter<>
State of the contact
street
Filter<>
Street address of the contact
street2
Filter<>
Street address of the contact
zip
Filter<>
Zip code of the contact
Partial<Contact>
204
The updated contacts with the selected columns
PATCH
/contacts
curl -X PATCH "https://api.bookingmood.com/v1/contacts" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{}'