slackLists.items.update
method
Welcome to the new home of Slack developer docs!
We're still building and not all features are available quite yet. Enjoy this peek into the future! You can return to the past at api.slack.com.
Usage info
Lists are only available to Slack workspaces on a paid plan.
This method is used to update cells in a List.
Sample requests data
The following is an example JSON payload for the cells
argument when updating multiple cells for a given List item with the ID Rec014K005UQ1
.
{
"list_id": "F03PSRPN4CE",
"cells": [
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ1",
"rich_text": [
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_section",
"elements": [
{
"type": "text",
"text": "My first List!"
}
]
}
]
}
]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ2",
"user": ["U01284PCR98", "U0137181B5H"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ3",
"message": [
"https://myteam.slack.com/archives/C011S0U5LCS/p1682609158143849?thread_ts=1682608940.958959&cid=C011S0U5LCS"
]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ4",
"number": [123.25]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ5",
"select": ["Opt12345678", "Opt1234ABCD"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ6",
"date": ["2024-03-20"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ7",
"timestamp": [1710940800]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ8",
"attachment": ["F123456789", "F987654321"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ9",
"checkbox": true
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ10",
"email": ["user@example.com"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ11",
"phone": ["+1-555-123-4567"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ12",
"channel": ["C011S0U5LCS", "C011S0U5LCD"]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ13",
"rating": [5]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ14",
"link": [
{
"original_url": "https://www.example.com"
}
]
},
{
"row_id": "Rec014K005UQ1",
"column_id": "Col014K005UQ15",
"reference": [
{
"file": {
"file_id": "F03PSRPN4CE",
}
}
]
}
]
}