Contentful
contentfulContentful is a headless CMS allowing developers to create, manage, and distribute content across multiple channels and devices with an API-first approach
Acciones disponibles (3)
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.
Get spaceCONTENTFUL_GET_SPACEAcciónRetrieves details of a specific space by its id. this action is used to get information about a single space in contentful.
CONTENTFUL_GET_SPACEAcciónRetrieves details of a specific space by its id. this action is used to get information about a single space in contentful.
Parámetros de entrada
space_idstringObligatorioID of the space 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 spacesCONTENTFUL_LIST_SPACESAcciónLists all spaces that the authenticated user has access to in contentful. this is a fundamental operation needed before performing any other content management actions since most operations require a space id.
CONTENTFUL_LIST_SPACESAcciónLists all spaces that the authenticated user has access to in contentful. this is a fundamental operation needed before performing any other content management actions since most operations require a space id.
Parámetros de entrada
skipintegerNumber of spaces to skip for pagination
limitintegerMaximum number of spaces to return (default: 100, max: 1000)
orderstringOrder spaces by field (e.g. 'sys.createdAt' or '-sys.createdAt')
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 spaceCONTENTFUL_UPDATE_SPACEAcciónUpdates the name of a specific space. notes: - the version number is required to ensure you're updating the latest version of the space. - you can get the current version from the sys.version field when fetching space details. - only the name of the space can be updated.
CONTENTFUL_UPDATE_SPACEAcciónUpdates the name of a specific space. notes: - the version number is required to ensure you're updating the latest version of the space. - you can get the current version from the sys.version field when fetching space details. - only the name of the space can be updated.
Parámetros de entrada
namestringObligatorioNew name for the space
versionintegerObligatorioCurrent version of the space. Required for version control.
space_idstringObligatorioID of the space to update
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