← Tools Reference

Dailybot

Dailybot integration (Communication, Productivity). Imported from open-connector.

API key10 toolshttps://api.dailybot.com
GET
dailybot_get_me
Get the authenticated Dailybot user context and linked organization.

/v1/me/

GET
dailybot_get_organization
Get the Dailybot organization details for the authenticated API key.

/v1/organization/

GET
dailybot_list_users
List users in the authenticated Dailybot organization.

/v1/users/

4 parameters
ParamTypeRequiredDescription
is_activebooleanoptionalFilter users by active status.
rolestringoptionalFilter users by role.
limitintegeroptionalNumber of results to return.
offsetintegeroptionalPagination offset for the result set.
GET
dailybot_get_user
Get a specific user from the authenticated Dailybot organization.

/v1/users/{user_uuid}/

1 parameter
ParamTypeRequiredDescription
user_uuidstringrequiredThe Dailybot user UUID.
GET
dailybot_list_teams
List teams in the authenticated Dailybot organization.

/v1/teams/

2 parameters
ParamTypeRequiredDescription
limitintegeroptionalNumber of results to return.
offsetintegeroptionalPagination offset for the result set.
GET
dailybot_get_team
Get a specific team from the authenticated Dailybot organization.

/v1/teams/{team_id}/

1 parameter
ParamTypeRequiredDescription
team_idstringrequiredThe Dailybot team identifier.
GET
dailybot_list_team_members
List members of a specific Dailybot team.

/v1/teams/{team_id}/members/

1 parameter
ParamTypeRequiredDescription
team_idstringrequiredThe Dailybot team identifier.
POST
dailybot_send_message
Send a chat message to a Dailybot user, team, or channel.

/v1/messaging/send-message/

4 parameters
ParamTypeRequiredDescription
target_typestringrequiredThe recipient type.
target_uuidstringrequiredThe recipient UUID for the message.
messagestringrequiredThe message text to send.
platformstringoptionalThe chat platform to use for delivery.
POST
dailybot_send_email
Send an email notification through Dailybot.

/v1/messaging/send-email/

3 parameters
ParamTypeRequiredDescription
user_uuidstringrequiredThe Dailybot user UUID.
subjectstringrequiredThe email subject line.
bodystringrequiredThe email body, as plain text or HTML.
POST
dailybot_open_conversation
Open a direct Dailybot conversation with a user.

/v1/messaging/open-conversation/

2 parameters
ParamTypeRequiredDescription
user_uuidstringrequiredThe Dailybot user UUID.
initial_messagestringoptionalThe optional first message to send with the conversation.