# Cloudpress

Cloudpress enables exporting content from Google Docs and Notion to various Content Management Systems.

- **Category:** documents
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 5
- **Triggers:** 0
- **Slug:** `CLOUDPRESS`
- **Version:** 20260407_00

## Tools

### Get Account Information

**Slug:** `CLOUDPRESS_GET_ACCOUNT_INFORMATION`

Tool to retrieve authenticated account information. Use after authentication to get current account details.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Collections

**Slug:** `CLOUDPRESS_LIST_COLLECTIONS`

Tool to list all collections in the user's Cloudpress account. Use when you need to browse or manage collection metadata. Supports pagination via pageNo and pageSize.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `pageNo` | integer | No | Page number to return, must be >=1. |
| `pageSize` | integer | No | Number of items per page, must be >=1. Default is 50. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Connections

**Slug:** `CLOUDPRESS_LIST_CONNECTIONS`

Tool to list all connections with pagination. Use when you need to retrieve Cloudpress connections page by page with optional filters like kind, type, or sourceReference.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `kind` | string ("source" | "destination") | No | The kind of connection to filter by. Cannot be used in conjunction with type. |
| `type` | string ("CONTENTFUL" | "KENTICO" | "NOTION" | "SANITY" | "WEBFLOW" | "WORDPRESS") | No | The type of connection to filter by. Cannot be used in conjunction with kind. |
| `pageNo` | integer | No | The page of results you would like to return. Starts at 1. |
| `pageSize` | integer | No | The number of items to return per page. Default is 50. |
| `properties` | object | No | The connection properties to filter by. Can only be used in conjunction with type. |
| `sourceReference` | string | No | An optional source document reference. If provided, lastExport indicates when this document was last exported. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Document Exports

**Slug:** `CLOUDPRESS_LIST_DOCUMENT_EXPORTS`

Tool to retrieve a paginated list of document exports. Use after initiating export jobs to fetch export history.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `pageNo` | integer | No | Page number to return, must be >= 1. |
| `pageSize` | integer | No | Number of items per page, must be >= 1. Defaults to 50. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Webhooks

**Slug:** `CLOUDPRESS_LIST_WEBHOOKS`

Tool to retrieve a paginated list of webhooks. Use when you need an overview of all configured webhooks.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
