> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# responsiveio

> RFP response management

**Server path:** `/responsiveio` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                    | Description                                       |
| ------------------------------------------------------- | ------------------------------------------------- |
| [`responsiveio_get_project`](#responsiveio_get_project) | Get a specific ResponsiveIO project by project ID |
| [`responsiveio_get_intake`](#responsiveio_get_intake)   | Get a specific ResponsiveIO intake by intake ID   |

***

## responsiveio\_get\_project

Get a specific ResponsiveIO project by project ID

**Parameters:**

| Parameter   | Type   | Required | Default | Description                                        |
| ----------- | ------ | -------- | ------- | -------------------------------------------------- |
| `projectId` | string | Yes      | —       | Project ID of the ResponsiveIO project to retrieve |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "The PinkConnect ID for authentication"
      },
      "projectId": {
        "type": "string",
        "description": "Project ID of the ResponsiveIO project to retrieve"
      }
    },
    "required": [
      "PCID",
      "projectId"
    ]
  }
  ```
</Expandable>

***

## responsiveio\_get\_intake

Get a specific ResponsiveIO intake by intake ID

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                      |
| ---------- | ------ | -------- | ------- | ------------------------------------------------ |
| `intakeId` | string | Yes      | —       | Intake ID of the ResponsiveIO intake to retrieve |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "The PinkConnect ID for authentication"
      },
      "intakeId": {
        "type": "string",
        "description": "Intake ID of the ResponsiveIO intake to retrieve"
      }
    },
    "required": [
      "PCID",
      "intakeId"
    ]
  }
  ```
</Expandable>
