/sap-concur-list-item | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
sap_concur_list_item_create_list_item_using_post | Returns the newly created list item |
sap_concur_list_item_delete_from_list_using_delete | Delete a list item from a particular list |
sap_concur_list_item_delete_using_delete | Delete a list item |
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 | Returns the list item children |
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 | Returns the list item |
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
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"
},
"itemId": {
"type": "string",
"description": "The unique identifier of the list item"
}
},
"required": [
"PCID",
"listId",
"itemId"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}

