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

# sap-concur-list-item

> SAP Concur List Items

**Server path:** `/sap-concur-list-item` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                      | Description                                   |
| ------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------- |
| [`sap_concur_list_item_create_list_item_using_post`](#sap_concur_list_item_create_list_item_using_post)                   | Returns the newly created list item           |
| [`sap_concur_list_item_delete_from_list_using_delete`](#sap_concur_list_item_delete_from_list_using_delete)               | Delete a list item from a particular list     |
| [`sap_concur_list_item_delete_using_delete`](#sap_concur_list_item_delete_using_delete)                                   | Delete a list item                            |
| [`sap_concur_list_item_get_children_in_list_using_get`](#sap_concur_list_item_get_children_in_list_using_get)             | Returns the list item children in a list      |
| [`sap_concur_list_item_get_children_using_get`](#sap_concur_list_item_get_children_using_get)                             | Returns the list item children                |
| [`sap_concur_list_item_get_first_level_list_items_using_get`](#sap_concur_list_item_get_first_level_list_items_using_get) | Returns the first level list items for a list |
| [`sap_concur_list_item_get_using_get`](#sap_concur_list_item_get_using_get)                                               | Returns the list item                         |
| [`sap_concur_list_item_update_list_item_using_put`](#sap_concur_list_item_update_list_item_using_put)                     | Returns the updated list item                 |

***

## sap\_concur\_list\_item\_create\_list\_item\_using\_post

Returns the newly created list item

**Parameters:**

| Parameter         | Type   | Required | Default | Description                                                   |
| ----------------- | ------ | -------- | ------- | ------------------------------------------------------------- |
| `Accept-Language` | string | No       | —       | Language code                                                 |
| `listId`          | string | Yes      | —       | The unique identifier of the list that contains the list item |
| `parentCode`      | string | No       | —       | The long code of parent list item                             |
| `parentId`        | string | No       | —       | The unique identifier of parent list item                     |
| `shortCode`       | string | Yes      | —       | List item short code                                          |
| `value`           | string | Yes      | —       | List item value                                               |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "listId": {
        "type": "string",
        "description": "The unique identifier of the list that contains the list item"
      },
      "parentCode": {
        "type": "string",
        "description": "The long code of parent list item"
      },
      "parentId": {
        "type": "string",
        "description": "The unique identifier of parent list item"
      },
      "shortCode": {
        "type": "string",
        "description": "List item short code"
      },
      "value": {
        "type": "string",
        "description": "List item value"
      }
    },
    "required": [
      "PCID",
      "listId",
      "shortCode",
      "value"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_delete\_from\_list\_using\_delete

Delete a list item from a particular list

**Parameters:**

| Parameter | Type   | Required | Default | Description                            |
| --------- | ------ | -------- | ------- | -------------------------------------- |
| `listId`  | string | Yes      | —       | The unique identifier of the list      |
| `itemId`  | string | Yes      | —       | The unique identifier of the list item |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "listId": {
        "type": "string",
        "description": "The unique identifier of the list"
      },
      "itemId": {
        "type": "string",
        "description": "The unique identifier of the list item"
      }
    },
    "required": [
      "PCID",
      "listId",
      "itemId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_delete\_using\_delete

Delete a list item

**Parameters:**

| Parameter | Type   | Required | Default | Description                            |
| --------- | ------ | -------- | ------- | -------------------------------------- |
| `itemId`  | string | Yes      | —       | The unique identifier of the list item |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "itemId": {
        "type": "string",
        "description": "The unique identifier of the list item"
      }
    },
    "required": [
      "PCID",
      "itemId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_get\_children\_in\_list\_using\_get

Returns the list item children in a list

**Parameters:**

| Parameter          | Type    | Required | Default | Description                                                                                                                                          |
| ------------------ | ------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Accept-Language`  | string  | No       | —       | Language code                                                                                                                                        |
| `hasChildren`      | boolean | No       | —       | Show items with children                                                                                                                             |
| `isDeleted`        | boolean | No       | —       | Show deleted items                                                                                                                                   |
| `itemId`           | string  | Yes      | —       | The unique identifier of the list item                                                                                                               |
| `listId`           | string  | Yes      | —       | The unique identifier of the list. For a list item shared between multiple lists, this parameter enables retrieving children from a particular list. |
| `page`             | integer | No       | —       | Page number starting from 1                                                                                                                          |
| `shortCode`        | string  | No       | —       | Filter capabilities for ShortCode                                                                                                                    |
| `shortCodeOrValue` | string  | No       | —       | Filter capabilities for Value OR ShortCode                                                                                                           |
| `sortBy`           | string  | No       | —       | Field to sort by, \{value, shortcode}                                                                                                                |
| `sortDirection`    | string  | No       | —       | Sort direction, \{asc, desc}                                                                                                                         |
| `value`            | string  | No       | —       | Filter capabilities for Value                                                                                                                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "hasChildren": {
        "type": "boolean",
        "description": "Show items with children"
      },
      "isDeleted": {
        "type": "boolean",
        "description": "Show deleted items"
      },
      "itemId": {
        "type": "string",
        "description": "The unique identifier of the list item"
      },
      "listId": {
        "type": "string",
        "description": "The unique identifier of the list. For a list item shared between multiple lists, this parameter enables retrieving children from a particular list."
      },
      "page": {
        "type": "integer",
        "description": "Page number starting from 1"
      },
      "shortCode": {
        "type": "string",
        "description": "Filter capabilities for ShortCode"
      },
      "shortCodeOrValue": {
        "type": "string",
        "description": "Filter capabilities for Value OR ShortCode"
      },
      "sortBy": {
        "type": "string",
        "description": "Field to sort by, {value, shortcode}",
        "enum": [
          "value",
          "shortcode"
        ]
      },
      "sortDirection": {
        "type": "string",
        "description": "Sort direction, {asc, desc}",
        "enum": [
          "asc",
          "desc"
        ]
      },
      "value": {
        "type": "string",
        "description": "Filter capabilities for Value"
      }
    },
    "required": [
      "PCID",
      "itemId",
      "listId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_get\_children\_using\_get

Returns the list item children

**Parameters:**

| Parameter          | Type    | Required | Default | Description                                |
| ------------------ | ------- | -------- | ------- | ------------------------------------------ |
| `Accept-Language`  | string  | No       | —       | Language code                              |
| `hasChildren`      | boolean | No       | —       | Show items with children                   |
| `isDeleted`        | boolean | No       | —       | Show deleted items                         |
| `itemId`           | string  | Yes      | —       | The unique identifier of the list item     |
| `page`             | integer | No       | —       | Page number starting from 1                |
| `shortCode`        | string  | No       | —       | Filter capabilities for ShortCode          |
| `shortCodeOrValue` | string  | No       | —       | Filter capabilities for Value OR ShortCode |
| `sortBy`           | string  | No       | —       | Field to sort by, \{value, shortcode}      |
| `sortDirection`    | string  | No       | —       | Sort direction, \{asc, desc}               |
| `value`            | string  | No       | —       | Filter capabilities for Value              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "hasChildren": {
        "type": "boolean",
        "description": "Show items with children"
      },
      "isDeleted": {
        "type": "boolean",
        "description": "Show deleted items"
      },
      "itemId": {
        "type": "string",
        "description": "The unique identifier of the list item"
      },
      "page": {
        "type": "integer",
        "description": "Page number starting from 1"
      },
      "shortCode": {
        "type": "string",
        "description": "Filter capabilities for ShortCode"
      },
      "shortCodeOrValue": {
        "type": "string",
        "description": "Filter capabilities for Value OR ShortCode"
      },
      "sortBy": {
        "type": "string",
        "description": "Field to sort by, {value, shortcode}",
        "enum": [
          "value",
          "shortcode"
        ]
      },
      "sortDirection": {
        "type": "string",
        "description": "Sort direction, {asc, desc}",
        "enum": [
          "asc",
          "desc"
        ]
      },
      "value": {
        "type": "string",
        "description": "Filter capabilities for Value"
      }
    },
    "required": [
      "PCID",
      "itemId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_get\_first\_level\_list\_items\_using\_get

Returns the first level list items for a list

**Parameters:**

| Parameter          | Type    | Required | Default | Description                                |
| ------------------ | ------- | -------- | ------- | ------------------------------------------ |
| `Accept-Language`  | string  | No       | —       | Language code                              |
| `hasChildren`      | boolean | No       | —       | Show items with children                   |
| `isDeleted`        | boolean | No       | —       | Show deleted items                         |
| `listId`           | string  | Yes      | —       | The unique identifier of the list          |
| `page`             | integer | No       | —       | Page number starting from 1                |
| `shortCode`        | string  | No       | —       | Filter capabilities for ShortCode          |
| `shortCodeOrValue` | string  | No       | —       | Filter capabilities for Value OR ShortCode |
| `sortBy`           | string  | No       | —       | Field to sort by, \{value, shortcode}      |
| `sortDirection`    | string  | No       | —       | Sort direction, \{asc, desc}               |
| `value`            | string  | No       | —       | Filter capabilities for Value              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "hasChildren": {
        "type": "boolean",
        "description": "Show items with children"
      },
      "isDeleted": {
        "type": "boolean",
        "description": "Show deleted items"
      },
      "listId": {
        "type": "string",
        "description": "The unique identifier of the list"
      },
      "page": {
        "type": "integer",
        "description": "Page number starting from 1"
      },
      "shortCode": {
        "type": "string",
        "description": "Filter capabilities for ShortCode"
      },
      "shortCodeOrValue": {
        "type": "string",
        "description": "Filter capabilities for Value OR ShortCode"
      },
      "sortBy": {
        "type": "string",
        "description": "Field to sort by, {value, shortcode}",
        "enum": [
          "value",
          "shortcode"
        ]
      },
      "sortDirection": {
        "type": "string",
        "description": "Sort direction, {asc, desc}",
        "enum": [
          "asc",
          "desc"
        ]
      },
      "value": {
        "type": "string",
        "description": "Filter capabilities for Value"
      }
    },
    "required": [
      "PCID",
      "listId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_get\_using\_get

Returns the list item

**Parameters:**

| Parameter         | Type   | Required | Default | Description                            |
| ----------------- | ------ | -------- | ------- | -------------------------------------- |
| `Accept-Language` | string | No       | —       | Language code                          |
| `itemId`          | string | Yes      | —       | The unique identifier of the list item |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "itemId": {
        "type": "string",
        "description": "The unique identifier of the list item"
      }
    },
    "required": [
      "PCID",
      "itemId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_update\_list\_item\_using\_put

Returns the updated list item

**Parameters:**

| Parameter         | Type   | Required | Default | Description                            |
| ----------------- | ------ | -------- | ------- | -------------------------------------- |
| `Accept-Language` | string | No       | —       | Language code                          |
| `itemId`          | string | Yes      | —       | The unique identifier of the list item |
| `shortCode`       | string | Yes      | —       | List item short code                   |
| `value`           | string | Yes      | —       | List item value                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "itemId": {
        "type": "string",
        "description": "The unique identifier of the list item"
      },
      "shortCode": {
        "type": "string",
        "description": "List item short code"
      },
      "value": {
        "type": "string",
        "description": "List item value"
      }
    },
    "required": [
      "PCID",
      "itemId",
      "shortCode",
      "value"
    ]
  }
  ```
</Expandable>
