> ## 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.

# jira-forms-api

> Jira Forms API

**Server path:** `/jira-forms-api` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                            | Description                              |
| --------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
| [`jira-forms-api_add_form`](#jira-forms-api_add_form)                                                           | Add form                                 |
| [`jira-forms-api_copy_forms`](#jira-forms-api_copy_forms)                                                       | Copy forms                               |
| [`jira-forms-api_delete_form`](#jira-forms-api_delete_form)                                                     | Delete form                              |
| [`jira-forms-api_externalise_form`](#jira-forms-api_externalise_form)                                           | Change visibility to external            |
| [`jira-forms-api_get_form`](#jira-forms-api_get_form)                                                           | Get form                                 |
| [`jira-forms-api_get_form_external_data`](#jira-forms-api_get_form_external_data)                               | Get external form data                   |
| [`jira-forms-api_get_form_index`](#jira-forms-api_get_form_index)                                               | Get form index                           |
| [`jira-forms-api_get_form_simplified_answers`](#jira-forms-api_get_form_simplified_answers)                     | Get form simplified answers              |
| [`jira-forms-api_get_form_template`](#jira-forms-api_get_form_template)                                         | Get form template                        |
| [`jira-forms-api_get_form_template_external_data`](#jira-forms-api_get_form_template_external_data)             | Get external form data on a request type |
| [`jira-forms-api_get_form_template_index`](#jira-forms-api_get_form_template_index)                             | Get project form index                   |
| [`jira-forms-api_get_issue_form_attachments_metadata`](#jira-forms-api_get_issue_form_attachments_metadata)     | Get form attachments metadata            |
| [`jira-forms-api_get_request_form`](#jira-forms-api_get_request_form)                                           | Get form                                 |
| [`jira-forms-api_get_request_form_attachments_metadata`](#jira-forms-api_get_request_form_attachments_metadata) | Get form attachments metadata            |
| [`jira-forms-api_get_request_form_external_data`](#jira-forms-api_get_request_form_external_data)               | Get external form data                   |
| [`jira-forms-api_get_request_form_index`](#jira-forms-api_get_request_form_index)                               | Get form index                           |
| [`jira-forms-api_get_request_form_simplified_answers`](#jira-forms-api_get_request_form_simplified_answers)     | Get form simplified answers              |
| [`jira-forms-api_get_request_type_form_template`](#jira-forms-api_get_request_type_form_template)               | Get form on a request type               |
| [`jira-forms-api_internalise_form`](#jira-forms-api_internalise_form)                                           | Change visibility to internal            |
| [`jira-forms-api_reopen_form`](#jira-forms-api_reopen_form)                                                     | Reopen form                              |
| [`jira-forms-api_save_form_answers`](#jira-forms-api_save_form_answers)                                         | Save form answers                        |
| [`jira-forms-api_save_request_form_answers`](#jira-forms-api_save_request_form_answers)                         | Save form answers                        |
| [`jira-forms-api_submit_form`](#jira-forms-api_submit_form)                                                     | Submit form                              |
| [`jira-forms-api_submit_request_form`](#jira-forms-api_submit_request_form)                                     | Submit form                              |

***

## jira-forms-api\_add\_form

Add form

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                         |
| -------------- | ------ | -------- | ------- | --------------------------------------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID                                 |
| `formTemplate` | object | Yes      | —       | Metadata of the template the form was created from. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formTemplate": {
        "type": "object",
        "description": "Metadata of the template the form was created from.",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID of the form template."
          }
        },
        "required": [
          "id"
        ]
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formTemplate"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_copy\_forms

Copy forms

**Parameters:**

| Parameter            | Type      | Required | Default | Description                                               |
| -------------------- | --------- | -------- | ------- | --------------------------------------------------------- |
| `sourceIssueIdOrKey` | string    | Yes      | —       | The source issue key or ID                                |
| `targetIssueIdOrKey` | string    | Yes      | —       | The target issue key or ID                                |
| `ids`                | object\[] | No       | —       | An array of form IDs. If not specified, copies all forms. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "sourceIssueIdOrKey": {
        "type": "string",
        "description": "The source issue key or ID"
      },
      "targetIssueIdOrKey": {
        "type": "string",
        "description": "The target issue key or ID"
      },
      "ids": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "value": {
              "type": "string",
              "format": "uuid",
              "description": "The value value"
            }
          },
          "required": [
            "value"
          ]
        },
        "description": "An array of form IDs. If not specified, copies all forms."
      }
    },
    "required": [
      "PCID",
      "sourceIssueIdOrKey",
      "targetIssueIdOrKey"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_delete\_form

Delete form

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_externalise\_form

Change visibility to external

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form

Get form

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form\_external\_data

Get external form data

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form\_index

Get form index

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form\_simplified\_answers

Get form simplified answers

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form\_template

Get form template

**Parameters:**

| Parameter         | Type   | Required | Default | Description                                             |
| ----------------- | ------ | -------- | ------- | ------------------------------------------------------- |
| `projectIdOrKey`  | string | Yes      | —       | The project key or ID                                   |
| `formId`          | string | Yes      | —       | The ID of the form                                      |
| `requestLanguage` | string | No       | —       | The requested language for the form to be translated to |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "projectIdOrKey": {
        "type": "string",
        "description": "The project key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      },
      "requestLanguage": {
        "type": "string",
        "description": "The requested language for the form to be translated to"
      }
    },
    "required": [
      "PCID",
      "projectIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form\_template\_external\_data

Get external form data on a request type

**Parameters:**

| Parameter       | Type    | Required | Default | Description                                                          |
| --------------- | ------- | -------- | ------- | -------------------------------------------------------------------- |
| `serviceDeskId` | string  | Yes      | —       | The service desk ID. This can alternatively be a project identifier. |
| `requestTypeId` | integer | Yes      | —       | The request type ID                                                  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "serviceDeskId": {
        "type": "string",
        "description": "The service desk ID. This can alternatively be a [project identifier](#project-identifiers)."
      },
      "requestTypeId": {
        "type": "integer",
        "description": "The request type ID"
      }
    },
    "required": [
      "PCID",
      "serviceDeskId",
      "requestTypeId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_form\_template\_index

Get project form index

**Parameters:**

| Parameter        | Type   | Required | Default | Description           |
| ---------------- | ------ | -------- | ------- | --------------------- |
| `projectIdOrKey` | string | Yes      | —       | The project key or ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "projectIdOrKey": {
        "type": "string",
        "description": "The project key or ID"
      }
    },
    "required": [
      "PCID",
      "projectIdOrKey"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_issue\_form\_attachments\_metadata

Get form attachments metadata

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_request\_form

Get form

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_request\_form\_attachments\_metadata

Get form attachments metadata

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_request\_form\_external\_data

Get external form data

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_request\_form\_index

Get form index

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_request\_form\_simplified\_answers

Get form simplified answers

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_get\_request\_type\_form\_template

Get form on a request type

**Parameters:**

| Parameter         | Type    | Required | Default | Description                                                          |
| ----------------- | ------- | -------- | ------- | -------------------------------------------------------------------- |
| `serviceDeskId`   | string  | Yes      | —       | The service desk ID. This can alternatively be a project identifier. |
| `requestTypeId`   | integer | Yes      | —       | The request type ID                                                  |
| `requestLanguage` | string  | No       | —       | The requested language for the form to be translated to              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "serviceDeskId": {
        "type": "string",
        "description": "The service desk ID. This can alternatively be a [project identifier](#project-identifiers)."
      },
      "requestTypeId": {
        "type": "integer",
        "description": "The request type ID"
      },
      "requestLanguage": {
        "type": "string",
        "description": "The requested language for the form to be translated to"
      }
    },
    "required": [
      "PCID",
      "serviceDeskId",
      "requestTypeId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_internalise\_form

Change visibility to internal

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_reopen\_form

Reopen form

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_save\_form\_answers

Save form answers

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                                                            |
| -------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------ |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID                                                                                    |
| `formId`       | string | Yes      | —       | The ID of the form                                                                                     |
| `answers`      | object | Yes      | —       | The answers to the form fields. It contains a mapping of form field IDs to their corresponding values. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      },
      "answers": {
        "type": "object",
        "description": "The answers to the form fields. It contains a mapping of form field IDs to their corresponding values."
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId",
      "answers"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_save\_request\_form\_answers

Save form answers

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                                                            |
| -------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------ |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID                                                                                    |
| `formId`       | string | Yes      | —       | The ID of the form                                                                                     |
| `answers`      | object | Yes      | —       | The answers to the form fields. It contains a mapping of form field IDs to their corresponding values. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      },
      "answers": {
        "type": "object",
        "description": "The answers to the form fields. It contains a mapping of form field IDs to their corresponding values."
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId",
      "answers"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_submit\_form

Submit form

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>

***

## jira-forms-api\_submit\_request\_form

Submit form

**Parameters:**

| Parameter      | Type   | Required | Default | Description         |
| -------------- | ------ | -------- | ------- | ------------------- |
| `issueIdOrKey` | string | Yes      | —       | The issue key or ID |
| `formId`       | string | Yes      | —       | The ID of the form  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "issueIdOrKey": {
        "type": "string",
        "description": "The issue key or ID"
      },
      "formId": {
        "type": "string",
        "description": "The ID of the form"
      }
    },
    "required": [
      "PCID",
      "issueIdOrKey",
      "formId"
    ]
  }
  ```
</Expandable>
