calls.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!
Not ready for the future? Return to the past at api.slack.com.
Usage info
This method is part of our Calls API.
The Call fields that may be updated are the Call's title
, join_url
, and desktop_app_join_url
.
Response
Typical success response
{
"ok": true,
"call": {
"id": "R0E69JAIF",
"date_start": 1562002086,
"external_unique_id": "025169F6-E37A-4E62-BB54-7F93A0FC4C1F",
"join_url": "https://callmebeepme.com/calls/0987654321",
"desktop_app_join_url": "callapp://join/0987654321",
"external_display_id": "705-292-868",
"title": "Kimpossible sync up",
"users": [
{
"slack_id": "U0MQG83FD"
},
{
"external_id": "54321678",
"display_name": "Kim Possible",
"avatar_url": "https://callmebeepme.com/users/avatar1234.jpg"
}
]
}
}
Typical error response where the Call was not found:
{
"ok": false,
"error": "invalid_call_id"
}