NAiOS IconNAiOS Logo
Volver al catálogo

Uploadcare

uploadcare

Uploadcare is a comprehensive file handling service that offers uploading, storage, processing, and delivery solutions for web and mobile applications.

Acciones
12
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (12)

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 Uploadcare webhookUPLOADCARE_CREATE_WEBHOOKAcción

Tool to create a new webhook. use when you need to subscribe to file events and receive notifications at your service. ensure you have an existing project uuid before using this tool.

Parámetros de entrada

  • eventstringObligatorio

    Type of event to subscribe to (e.g., 'file.uploaded', 'file.deleted').

  • projectanyObligatoriouuid

    UUID of the project to associate the webhook with.

  • inactiveboolean

    Mark webhook as inactive after creation.

  • target_urlanyObligatoriouri

    Target URL to send the webhook events to.

  • signing_secretstring

    Custom secret for webhook signature. If not provided, a random secret will be generated.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete File Metadata KeyUPLOADCARE_DELETE_FILE_METADATA_KEYAcción

Tool to delete a specific metadata key from an uploadcare file. use when you need to remove obsolete metadata after file processing.

Parámetros de entrada

  • keystringObligatorio

    The metadata key to delete.

  • uuidstringObligatorio

    The UUID of the file.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete WebhookUPLOADCARE_DELETE_WEBHOOKAcción

Tool to delete a specific webhook. use when you need to remove a webhook by its id after confirming its details.

Parámetros de entrada

  • idstringObligatorio

    Unique identifier of the webhook to delete.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Uploadcare File Download URLUPLOADCARE_GET_FILE_DOWNLOAD_URLAcción

Tool to retrieve a temporary download url for a file. use when you need a direct download link after uploading a file.

Parámetros de entrada

  • file_idstringObligatorio

    The unique identifier of the file to retrieve the download URL for.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Uploadcare File InfoUPLOADCARE_GET_FILE_INFOAcción

Tool to get information about a specific file. use after uploading a file to retrieve detailed metadata and usage information.

Parámetros de entrada

  • uuidstringObligatorio

    The UUID of the file to retrieve info for.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Uploadcare Project InfoUPLOADCARE_GET_PROJECT_INFOAcción

Tool to get information about the current uploadcare project. use when you need to retrieve project configuration details.

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Uploadcare FilesUPLOADCARE_LIST_FILESAcción

Tool to list files in a project. use when you need to retrieve uploaded files with optional filters, pagination, or include total count.

Parámetros de entrada

  • limitinteger

    Number of files to return (1-1000).

  • offsetinteger

    Pagination offset, zero-based.

  • storedstringenum

    Filter by storage status ('true' or 'false').

    truefalse
  • includestring

    Include total file count in the response by specifying 'total'.

  • removedstringenum

    Filter by removal status ('true' or 'false').

    truefalse
  • to_datestring

    Return files uploaded before this ISO 8601 datetime.

  • orderingstring

    Comma-separated fields to sort by, e.g., 'datetime_uploaded' or '-size'.

  • from_datestring

    Return files uploaded after this ISO 8601 datetime.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Uploadcare GroupsUPLOADCARE_LIST_GROUPSAcción

Tool to list groups in the project. use when you need to retrieve paginated groups of files.

Parámetros de entrada

  • limitinteger

    Number of groups to return per page (1-100).

  • offsetinteger

    Number of groups to skip before starting the result set.

  • orderingstringenum

    Sort by 'datetime_created'; prefix with '-' for descending.

    datetime_created-datetime_created

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Uploadcare WebhooksUPLOADCARE_LIST_WEBHOOKSAcción

Tool to list webhook subscriptions. use when you need a paginated list of webhooks for your project after configuring authentication.

Parámetros de entrada

  • limitinteger

    Maximum number of webhook subscriptions to return (pagination).

  • offsetinteger

    Number of webhook subscriptions to skip before starting the page (pagination).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Rotate ImageUPLOADCARE_ROTATE_IMAGEAcción

Tool to rotate an image by specified degrees clockwise. use when you need to rotate an uploaded image by 90, 180, or 270 degrees. use after confirming the file uuid.

Parámetros de entrada

  • uuidstringObligatorio

    UUID of the image to rotate. Must follow 8-4-4-4-12 hex format.

  • degreesintegerObligatorioenum

    Rotation angle in degrees clockwise. Must be one of [90, 180, 270].

    90180270

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Store Uploadcare FileUPLOADCARE_STORE_FILEAcción

Tool to mark an uploadcare file as permanently stored. use after uploading a file when you need to store it permanently.

Parámetros de entrada

  • uuidstringObligatorio

    UUID of the Uploadcare file to mark as stored. Must follow 8-4-4-4-12 hex format.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Mirror Uploadcare ImageUPLOADCARE_UPLOADCARE_IMAGE_MIRRORAcción

Tool to mirror an image horizontally via uploadcare cdn. use when you need the url of a horizontally flipped image.

Parámetros de entrada

  • uuidstringObligatorio

    The Uploadcare file UUID (e.g., '3e0923f2-e05a-4b37-9f0d-343b981c9d70') or full CDN URL (e.g., 'https://ucarecdn.com/3e0923f2-e05a-4b37-9f0d-343b981c9d70/').

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not