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

> SAP Concur List Bulk

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

## Tools

| Tool                                                                                                  | Description                 |
| ----------------------------------------------------------------------------------------------------- | --------------------------- |
| [`sap_concur_list_item_bulk_create_bulk_list_item`](#sap_concur_list_item_bulk_create_bulk_list_item) | Create list items           |
| [`sap_concur_list_item_bulk_update_bulk_list_item`](#sap_concur_list_item_bulk_update_bulk_list_item) | Update or delete list items |

***

## sap\_concur\_list\_item\_bulk\_create\_bulk\_list\_item

Create list items

**Parameters:**

| Parameter         | Type      | Required | Default | Description                                                                                                |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
| `listId`          | string    | Yes      | —       | The unique identifier of the list (SYNC\_GUID)                                                             |
| `Accept-Language` | string    | No       | —       | Language code                                                                                              |
| `requests`        | object\[] | No       | —       | The requests in the bulk list item create request. There is a limit of 250 request parts per bulk request. |

<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 (SYNC_GUID)"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "requests": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "shortCode": {
              "type": "string",
              "description": "List item short code"
            },
            "value": {
              "type": "string",
              "description": "List item value"
            },
            "parentCode": {
              "type": "string",
              "description": "The long code of the parent list item"
            }
          },
          "required": [
            "shortCode",
            "value"
          ]
        },
        "description": "The requests in the bulk list item create request. There is a limit of 250 request parts per bulk request."
      }
    },
    "required": [
      "PCID",
      "listId"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_list\_item\_bulk\_update\_bulk\_list\_item

Update or delete list items

**Parameters:**

| Parameter         | Type      | Required | Default | Description                                                                                                |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
| `listId`          | string    | Yes      | —       | The unique identifier of the list (SYNC\_GUID)                                                             |
| `Accept-Language` | string    | No       | —       | Language code                                                                                              |
| `requests`        | object\[] | No       | —       | The requests in the bulk list item update request. There is a limit of 250 request parts per bulk request. |

<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 (SYNC_GUID)"
      },
      "Accept-Language": {
        "type": "string",
        "description": "Language code"
      },
      "requests": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "code": {
              "type": "string",
              "description": "List item long code"
            },
            "value": {
              "type": "string",
              "description": "List item value"
            },
            "deleted": {
              "type": "boolean",
              "description": "List item deleted status"
            }
          },
          "required": [
            "code"
          ]
        },
        "description": "The requests in the bulk list item update request. There is a limit of 250 request parts per bulk request."
      }
    },
    "required": [
      "PCID",
      "listId"
    ]
  }
  ```
</Expandable>
