/sap-concur-list-item-bulk | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
sap_concur_list_item_bulk_create_bulk_list_item | Create list items |
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}

