Fibery
fiberyFibery is a work management platform designed to help teams collaborate, organize information, and manage their workflows.
Acciones disponibles (27)
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.
Delete Custom App EndpointFIBERY_DELETE_CUSTOM_APP_ENDPOINTAcciónTool to delete a specific custom app endpoint. Use after confirming the app and endpoint IDs to remove.
FIBERY_DELETE_CUSTOM_APP_ENDPOINTAcciónTool to delete a specific custom app endpoint. Use after confirming the app and endpoint IDs to remove.
Parámetros de entrada
app_idstringObligatorioIdentifier of the custom app containing the endpoint
endpoint_idstringObligatorioIdentifier of the custom endpoint 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 EntityFIBERY_DELETE_ENTITYAcciónTool to delete a specific Fibery entity by its ID. Use when you have verified the entity exists and have its GUID. Deletion is irreversible.
FIBERY_DELETE_ENTITYAcciónTool to delete a specific Fibery entity by its ID. Use when you have verified the entity exists and have its GUID. Deletion is irreversible.
Parámetros de entrada
typestringFull qualified type name for the entity (e.g., 'Product Discovery/Opportunity'). If provided, deletion will be performed via Commands API (fibery.entity/delete).
entity_idstringObligatorioThe GUID of the entity to delete (8-4-4-4-12 hex format)
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 FileFIBERY_DELETE_FILEAcciónTool to delete a specific file. Use when you need to remove a file from Fibery by its ID.
FIBERY_DELETE_FILEAcciónTool to delete a specific file. Use when you need to remove a file from Fibery by its ID.
Parámetros de entrada
file_idstringObligatorioIdentifier of the file 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
Execute GraphQL QueryFIBERY_EXECUTE_GRAPH_QL_QUERYAcciónTool to execute GraphQL queries or mutations against a Fibery space. Use when you need to fetch or modify Fibery data via the GraphQL API.
FIBERY_EXECUTE_GRAPH_QL_QUERYAcciónTool to execute GraphQL queries or mutations against a Fibery space. Use when you need to fetch or modify Fibery data via the GraphQL API.
Parámetros de entrada
querystringObligatorioGraphQL query or mutation string to execute.
variablesobjectOptional mapping of variable names to values for the GraphQL query.
operationNamestringOptional operation name when sending multiple operations.
Parámetros de salida
dataanyData returned by the GraphQL query; schema depends on the query.
errorstringError if any occurred during the execution of the action
errorsobject[]List of GraphQL errors, if any occurred during execution.
messagestringRequest-level error message, for example missing query.
successfulbooleanObligatorioWhether or not the action execution was successful or not
Authenticate (validate token via API call)FIBERY_FIBERY_AUTHENTICATEAcciónTool to validate existing Fibery personal API token by performing a real API call. If the call succeeds, returns the token value extracted from the Authorization header. Use the returned token in the `Authorization: Token <value>` header for further calls.
FIBERY_FIBERY_AUTHENTICATEAcciónTool to validate existing Fibery personal API token by performing a real API call. If the call succeeds, returns the token value extracted from the Authorization header. Use the returned token in the `Authorization: Token <value>` header for further calls.
Parámetros de entrada
command_bodyobject[]Optional override for the /commands payload used to validate the token. If omitted, a default query against fibery/user will be used.
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 App InformationFIBERY_GET_APP_INFOAcciónTool to retrieve application information. Use when you need the version, name, description, authentication methods, and available data sources before further operations.
FIBERY_GET_APP_INFOAcciónTool to retrieve application information. Use when you need the version, name, description, authentication methods, and available data sources before further operations.
Parámetros de entrada
appIdstringOptional custom app id to resolve app info via Fibery workspace proxy when base_url ends with /api.
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 Custom App EndpointsFIBERY_GET_CUSTOM_APP_ENDPOINTSAcciónTool to list custom app endpoints. Use when you need the available custom endpoints for a given app before invoking them.
FIBERY_GET_CUSTOM_APP_ENDPOINTSAcciónTool to list custom app endpoints. Use when you need the available custom endpoints for a given app before invoking them.
Parámetros de entrada
app_idstringObligatorioIdentifier of the custom Fibery app whose endpoints will be retrieved
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 Custom AppsFIBERY_GET_CUSTOM_APPSAcciónTool to list all custom apps in the Fibery workspace. Use when you need the identifiers of all custom apps.
FIBERY_GET_CUSTOM_APPSAcciónTool to list all custom apps in the Fibery workspace. Use when you need the identifiers of all custom apps.
Parámetros de entrada
limitintegerMaximum number of custom apps to return (required by Fibery q/limit).
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 EntitiesFIBERY_GET_ENTITIESAcciónTool to query Fibery entities. Use after specifying type and fields; supports optional filters and pagination.
FIBERY_GET_ENTITIESAcciónTool to query Fibery entities. Use after specifying type and fields; supports optional filters and pagination.
Parámetros de entrada
fromstringObligatorioFull database/type name in 'Namespace/Type' format, e.g. 'Product/Feature'
limitintegerMaximum number of entities to return
wherearrayFilter expression array, e.g. ['=', ['user/age'], '$age']
offsetintegerNumber of entities to skip for pagination
paramsobjectBindings for any $-variables in `where`, e.g. {'$age': 30}
selectstring[]ObligatorioList of field identifiers to return, e.g. ['fibery/id', 'user/name']
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 Fibery EntityFIBERY_GET_ENTITYAcciónTool to retrieve detailed info of a specific Fibery entity by its ID. Uses Fibery Commands API (fibery.entity/query) filtered by fibery/id with q/limit = 1.
FIBERY_GET_ENTITYAcciónTool to retrieve detailed info of a specific Fibery entity by its ID. Uses Fibery Commands API (fibery.entity/query) filtered by fibery/id with q/limit = 1.
Parámetros de entrada
expandstring[]Optional list of additional fields to return (e.g., ['user/name', 'user/email']).
entity_idstringObligatorioEntity identifier in 'Type/ID' format, e.g., 'fibery/user/<uuid>' or 'Product Discovery/Opportunity/<uuid>'
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 FileFIBERY_GET_FILEAcciónTool to retrieve a file by its secret or id. Prefer the file secret to download raw bytes. Returns the file content, MIME type, and original filename if available.
FIBERY_GET_FILEAcciónTool to retrieve a file by its secret or id. Prefer the file secret to download raw bytes. Returns the file content, MIME type, and original filename if available.
Parámetros de entrada
fileIdstringUnique identifier of the file (may not work for download).
fileSecretstringSecret identifier of the file 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
Get GraphQL SchemaFIBERY_GET_GRAPH_QL_SCHEMAAcciónTool to retrieve the GraphQL schema for the current workspace. Uses standard GraphQL introspection.
FIBERY_GET_GRAPH_QL_SCHEMAAcciónTool to retrieve the GraphQL schema for the current workspace. Uses standard GraphQL introspection.
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
Get User PreferencesFIBERY_GET_USER_PREFERENCESAcciónTool to retrieve the current user's UI preferences. Use after authentication to tailor UI to user settings.
FIBERY_GET_USER_PREFERENCESAcciónTool to retrieve the current user's UI preferences. Use after authentication to tailor UI to user settings.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Refresh access tokenFIBERY_POST_AUTH_REFRESH_TOKENAcciónTool to refresh an access token using a refresh token. Use when the current access token has expired and a valid refresh token is available.
FIBERY_POST_AUTH_REFRESH_TOKENAcciónTool to refresh an access token using a refresh token. Use when the current access token has expired and a valid refresh token is available.
Parámetros de entrada
refresh_tokenstringObligatorioThe refresh token used to obtain a new access token
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
Authenticate with username and passwordFIBERY_POST_AUTH_TOKENAcciónTool to authenticate with Fibery using resource owner password credentials. Use when you need an access token by providing username and password. Include the returned token in the `Authorization: Token <access_token>` header for subsequent API calls.
FIBERY_POST_AUTH_TOKENAcciónTool to authenticate with Fibery using resource owner password credentials. Use when you need an access token by providing username and password. Include the returned token in the `Authorization: Token <access_token>` header for subsequent API calls.
Parámetros de entrada
passwordstringObligatorioFibery account password
usernamestringObligatorioFibery account username, typically an email address
grant_typestringGrant type, must be 'password' for resource owner password credentials flow
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
Create EntityFIBERY_POST_CREATE_ENTITYAcciónTool to create a new Fibery entity. Use when you have prepared all necessary field values and need to persist a new record. Example: Create a 'Project/Task' with title and assignee.
FIBERY_POST_CREATE_ENTITYAcciónTool to create a new Fibery entity. Use when you have prepared all necessary field values and need to persist a new record. Example: Create a 'Project/Task' with title and assignee.
Parámetros de entrada
typestringObligatorioFull qualified type name for the entity, e.g., 'App/Type'.
entityobjectObligatorioField values for the new entity. Relations must be provided as objects with 'fibery/id' keys, e.g., {'assignee': {'fibery/id': '<uuid>'}} or arrays of such objects.
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
Fetch Data from SourceFIBERY_POST_FETCH_DATAAcciónTool to fetch data from a specified source. Use after specifying the source and optional filters.
FIBERY_POST_FETCH_DATAAcciónTool to fetch data from a specified source. Use after specifying the source and optional filters.
Parámetros de entrada
filterobjectOptional filter map. For custom-apps, pass fields as declared in GET /. For Fibery fallback, you may include keys like 'q/select', 'q/where', 'q/limit', 'q/offset', and 'params'.
sourcestringObligatorioSource identifier. For custom-apps this matches an ID from GET /. When using Fibery fallback, provide a full type like 'fibery/user'.
accountobjectObligatorioAuthentication payload matching the app's auth schema (custom-app). Not used by Fibery commands fallback.
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
POST_FETCH_DATA_COUNTFIBERY_POST_FETCH_DATA_COUNTAcciónTool to return the count of records for a given Fibery type (source). Uses Fibery commands API and returns the total number of entities of the type.
FIBERY_POST_FETCH_DATA_COUNTAcciónTool to return the count of records for a given Fibery type (source). Uses Fibery commands API and returns the total number of entities of the type.
Parámetros de entrada
filterobjectObligatorioFilter object (not used directly). Use Get Entities for complex filtering.
sourcestringObligatorioFull Fibery type name in 'Namespace/Type' format, e.g. 'fibery/user'
accountobjectObligatorioAccount object holding credentials/configuration (not used by this endpoint)
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
Fetch Datalist OptionsFIBERY_POST_FETCH_DATA_LISTAcciónTool to fetch options for a datalist filter field. Use after retrieving field metadata to build dynamic filters.
FIBERY_POST_FETCH_DATA_LISTAcciónTool to fetch options for a datalist filter field. Use after retrieving field metadata to build dynamic filters.
Parámetros de entrada
fieldstringObligatorioField name (marked with 'datalist' flag) to fetch options for.
sourcestringObligatorioSource identifier for which to fetch the datalist options.
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
Fetch SchemaFIBERY_POST_FETCH_SCHEMAAcciónTool to fetch predefined data schema. Use after authenticating when mapping and integrating Fibery data.
FIBERY_POST_FETCH_SCHEMAAcciónTool to fetch predefined data schema. Use after authenticating when mapping and integrating Fibery data.
Parámetros de entrada
filterobjectObligatorioFilter object to scope the schema, structure as per your app design
accountobjectObligatorioAccount credentials object, e.g., {username, password}
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
Exchange OAuth2 authorization codeFIBERY_POST_OAUTH2_ACCESS_TOKENAcciónTool to finalize OAuth2 authentication for Fibery custom apps. Use when exchanging an authorization code for access and refresh tokens after user authorization. Notes: - In Fibery custom app flows, the access_token endpoint is typically implemented by the app itself (your connector) rather than the Fibery workspace domain. We therefore probe multiple candidate roots and paths and provide resilient fallbacks.
FIBERY_POST_OAUTH2_ACCESS_TOKENAcciónTool to finalize OAuth2 authentication for Fibery custom apps. Use when exchanging an authorization code for access and refresh tokens after user authorization. Notes: - In Fibery custom app flows, the access_token endpoint is typically implemented by the app itself (your connector) rather than the Fibery workspace domain. We therefore probe multiple candidate roots and paths and provide resilient fallbacks.
Parámetros de entrada
codestringObligatorioThe authorization code returned by the authorization server
grant_typestringOAuth2 grant type, must be 'authorization_code' for this exchange
redirect_uristringObligatorioThe redirect URI (callback) used in the initial authorization request
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
Revoke Access TokenFIBERY_POST_REVOKE_TOKENAcciónTool to revoke an existing Fibery API access token. Use when invalidating a user session or logging out.
FIBERY_POST_REVOKE_TOKENAcciónTool to revoke an existing Fibery API access token. Use when invalidating a user session or logging out.
Parámetros de entrada
tokenstringObligatorioAccess token to revoke
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
Validate Fibery accountFIBERY_POST_VALIDATE_ACCOUNTAcciónTool to validate account credentials. Use when confirming provided credentials (and optionally refreshing OAuth2 tokens) before further API calls.
FIBERY_POST_VALIDATE_ACCOUNTAcciónTool to validate account credentials. Use when confirming provided credentials (and optionally refreshing OAuth2 tokens) before further API calls.
Parámetros de entrada
idstringObligatorioIdentifier of the authentication/account type to validate (e.g., 'basic', 'oauth2').
fieldsobjectObligatorioKey–value map of credential fields required by the selected authentication type. For 'basic', include 'username' and 'password'. For 'oauth2', include 'access_token', 'refresh_token', and 'expire_on' (ISO date-time).
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
Validate FilterFIBERY_POST_VALIDATE_FILTERAcciónTool to validate filter definitions. Use when ensuring filter structure and syntax are correct before running a data query.
FIBERY_POST_VALIDATE_FILTERAcciónTool to validate filter definitions. Use when ensuring filter structure and syntax are correct before running a data query.
Parámetros de entrada
filterobjectObligatorioFilter definition object to validate (structure depends on your app).
sourcestringObligatorioIdentifier of the data source to validate against.
accountobjectObligatorioAccount credentials object used for validation.
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
Update EntityFIBERY_UPDATE_ENTITYAcciónTool to update an existing Fibery entity. Uses Commands API: fibery.entity/update.
FIBERY_UPDATE_ENTITYAcciónTool to update an existing Fibery entity. Uses Commands API: fibery.entity/update.
Parámetros de entrada
typestringObligatorioFully-qualified Type name, e.g., 'Product Discovery/Opportunity'
fieldsobjectObligatorioMapping of field API names to new values. Relations must be provided as objects with 'fibery/id' keys, e.g., {'assignee': {'fibery/id': '<uuid>'}} or arrays of such objects.
entity_idstringObligatorioThe GUID of the entity to update (8-4-4-4-12 hex format)
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
Update User PreferencesFIBERY_UPDATE_USER_PREFERENCESAcciónTool to update the current user's preferences by using the Commands API. It fetches the current user id and preferences, merges the provided payload, and writes back the merged object into 'fibery/ui-preferences' of the current fibery/user.
FIBERY_UPDATE_USER_PREFERENCESAcciónTool to update the current user's preferences by using the Commands API. It fetches the current user id and preferences, merges the provided payload, and writes back the merged object into 'fibery/ui-preferences' of the current fibery/user.
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
Upload FileFIBERY_UPLOAD_FILEAcciónTool to upload a file to Fibery. Use when you need to attach a local file via the Fibery Files API.
FIBERY_UPLOAD_FILEAcciónTool to upload a file to Fibery. Use when you need to attach a local file via the Fibery Files API.
Parámetros de entrada
file_namestringOptional name to assign to the file in Fibery. Defaults to the basename of file_path if omitted.
file_pathstringObligatorioLocal filesystem path to the file to upload.
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