Dotsimple
dotsimpleDotSimple is a comprehensive social media management tool that enables users to plan, create, and publish content across multiple platforms, leveraging AI for content generation and providing analytics for performance optimization.
Acciones disponibles (11)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create TagDOTSIMPLE_CREATE_TAGAcciónTool to create a new tag in dotsimple. use when you need to categorize content with custom tags. example: create a tag named "news" with color "#38bdf8".
DOTSIMPLE_CREATE_TAGAcciónTool to create a new tag in dotsimple. use when you need to categorize content with custom tags. example: create a tag named "news" with color "#38bdf8".
Parámetros de entrada
namestringObligatorioThe name of the tag to be created.
hex_coloranyObligatorioHexadecimal color code for the tag (e.g., '#38bdf8').
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Media FilesDOTSIMPLE_DELETE_MEDIA_FILESAcciónTool to delete multiple media files in the workspace. use after confirming unwanted files. call this when you have a list of media ids to remove. returns success status.
DOTSIMPLE_DELETE_MEDIA_FILESAcciónTool to delete multiple media files in the workspace. use after confirming unwanted files. call this when you have a list of media ids to remove. returns success status.
Parámetros de entrada
itemsinteger[]ObligatorioArray of media file IDs to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete TagDOTSIMPLE_DELETE_TAGAcciónTool to delete a tag by its uuid. use when you need to remove a specific tag; ensure the uuid is correct before invoking.
DOTSIMPLE_DELETE_TAGAcciónTool to delete a tag by its uuid. use when you need to remove a specific tag; ensure the uuid is correct before invoking.
Parámetros de entrada
uuidstringObligatorioUUID of the tag to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Media FileDOTSIMPLE_GET_MEDIA_FILEAcciónTool to retrieve details of a specific media file. use when you have the mediafileid and need its metadata.
DOTSIMPLE_GET_MEDIA_FILEAcciónTool to retrieve details of a specific media file. use when you have the mediafileid and need its metadata.
Parámetros de entrada
mediaFileIdstringObligatorioThe unique identifier of the media file
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Tag by UUIDDOTSIMPLE_GET_TAGAcciónTool to retrieve details for a specific tag by uuid. use when you need full tag information after obtaining its identifier.
DOTSIMPLE_GET_TAGAcciónTool to retrieve details for a specific tag by uuid. use when you need full tag information after obtaining its identifier.
Parámetros de entrada
tagIdstringObligatorioThe UUID of the tag to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List AccountsDOTSIMPLE_LIST_ACCOUNTSAcciónTool to list all connected social media accounts in the workspace. use when you need to retrieve available accounts before posting or scheduling content.
DOTSIMPLE_LIST_ACCOUNTSAcciónTool to list all connected social media accounts in the workspace. use when you need to retrieve available accounts before posting or scheduling content.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List AutorespondersDOTSIMPLE_LIST_AUTORESPONDERSAcciónTool to list all autoresponders. use when you need to browse through your autoresponder setup.
DOTSIMPLE_LIST_AUTORESPONDERSAcciónTool to list all autoresponders. use when you need to browse through your autoresponder setup.
Parámetros de entrada
pageintegerPage number for pagination (1-indexed).
per_pageintegerNumber of items to return per page.
Parámetros de salida
dataobject[]ObligatorioList of autoresponders.
metaobjectObligatorioPagination details.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Media FilesDOTSIMPLE_LIST_MEDIA_FILESAcciónTool to list all media files with optional pagination. use when you need to retrieve or browse uploaded media files page by page.
DOTSIMPLE_LIST_MEDIA_FILESAcciónTool to list all media files with optional pagination. use when you need to retrieve or browse uploaded media files page by page.
Parámetros de entrada
pageintegerPage number for pagination
Parámetros de salida
dataobject[]ObligatorioList of media file objects
metaobjectObligatorioPagination metadata
errorstringError if any occurred during the execution of the action
linksobjectObligatorioPagination navigation links
successfulbooleanObligatorioWhether or not the action execution was successful or not
List PostsDOTSIMPLE_LIST_POSTSAcciónTool to list all posts in the workspace with optional pagination. use when you need to fetch paginated posts after obtaining a valid auth token.
DOTSIMPLE_LIST_POSTSAcciónTool to list all posts in the workspace with optional pagination. use when you need to fetch paginated posts after obtaining a valid auth token.
Parámetros de entrada
pageintegerPage number to retrieve (1-indexed)
page_sizeintegerNumber of posts per page
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List ReportsDOTSIMPLE_LIST_REPORTSAcciónTool to list all account-level reports. use when you need to fetch aggregated account metrics chronologically after authentication.
DOTSIMPLE_LIST_REPORTSAcciónTool to list all account-level reports. use when you need to fetch aggregated account metrics chronologically after authentication.
Parámetros de entrada
pageintegerPage number to retrieve (1-indexed)
page_sizeintegerNumber of report entries per page
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List TagsDOTSIMPLE_LIST_TAGSAcciónTool to list all tags available in the workspace. use when you need to retrieve tag metadata for planning or display.
DOTSIMPLE_LIST_TAGSAcciónTool to list all tags available in the workspace. use when you need to retrieve tag metadata for planning or display.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of tags available in the workspace
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not