Skip to content

Instantly share code, notes, and snippets.

@winston-stripe
Last active April 6, 2023 06:58
Show Gist options
  • Save winston-stripe/0cac608bd63b42d73a352be53577f7fd to your computer and use it in GitHub Desktop.
Save winston-stripe/0cac608bd63b42d73a352be53577f7fd to your computer and use it in GitHub Desktop.
Example calls responses
{
// Publicly documented fields at https://api.slack.com/apis/calls#post_to_channel
"type": "call",
"call_id": "Rxxxxxxx",
"block_id": "+1F6S",
// Private fields?
"api_decoration_available": false,
"call": {
"v1": {
"id": "Rxxxxxxx",
"app_id": "Axxxxx",
"app_icon_urls": {
"image_32": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_32.png",
"image_36": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_36.png",
"image_48": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_48.png",
"image_64": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_64.png",
"image_72": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_72.png",
"image_96": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_96.png",
"image_128": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_128.png",
"image_192": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_192.png",
"image_512": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_512.png",
"image_1024": "https://slack-files2.s3-us-west-2.amazonaws.com/avatars/2017-09-21/245295805989_06e77af1bfb8e3c81d4d_1024.png"
},
"date_start": 1680734761,
"active_participants": [],
"all_participants": [],
"display_id": "ZOOM-NUMBER",
"join_url": "https://zoom.us/j/...",
"desktop_app_join_url": "zoommtg://zoom.us/...",
"name": "Zoom meeting started by winston",
"created_by": "Uxxxxxxxx",
"date_end": 0,
"channels": [
"Cxxxxxxx"
],
"is_dm_call": false,
"was_rejected": false,
"was_missed": false,
"was_accepted": false,
"has_ended": false
},
"media_backend_type": "platform_call"
}
}
{
"ok": true,
"call": {
"id": "Rxxxxxxxx",
"date_start": 1680746773,
"external_unique_id": "ZzEtARdfdsabSyuztCrgdeD9Bg==",
"join_url": "https://zoom.us/j/...",
"date_end": 1680747013,
// Technically the `channels` field isn't documented either, but might be worth including
"channels": [
"Cxxxxxxx"
],
"external_display_id": "ZOOM-NUMBER",
"title": "Zoom meeting started by winston",
"desktop_app_join_url": "zoommtg://zoom.us/join?...",
"users": [
{
"slack_id": "Uxxxxxxxxx"
},
{
"external_id": "hfjkdsa",
"avatar_url": "",
"display_name": "winston-personal"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment