slack-api-sdk-apimatic 1.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- slack_api_sdk_apimatic-1.1.1.dist-info/METADATA +206 -0
- slack_api_sdk_apimatic-1.1.1.dist-info/RECORD +433 -0
- slack_api_sdk_apimatic-1.1.1.dist-info/WHEEL +5 -0
- slack_api_sdk_apimatic-1.1.1.dist-info/licenses/LICENSE +28 -0
- slack_api_sdk_apimatic-1.1.1.dist-info/top_level.txt +1 -0
- slackwebapi/__init__.py +13 -0
- slackwebapi/api_helper.py +19 -0
- slackwebapi/configuration.py +252 -0
- slackwebapi/controllers/__init__.py +61 -0
- slackwebapi/controllers/admin_apps_approved_controller.py +101 -0
- slackwebapi/controllers/admin_apps_controller.py +153 -0
- slackwebapi/controllers/admin_apps_requests_controller.py +96 -0
- slackwebapi/controllers/admin_apps_restricted_controller.py +101 -0
- slackwebapi/controllers/admin_conversations_controller.py +895 -0
- slackwebapi/controllers/admin_conversations_ekm_controller.py +107 -0
- slackwebapi/controllers/admin_conversations_restrict_access_controller.py +231 -0
- slackwebapi/controllers/admin_emoji_controller.py +314 -0
- slackwebapi/controllers/admin_invite_requests_approved_controller.py +97 -0
- slackwebapi/controllers/admin_invite_requests_controller.py +209 -0
- slackwebapi/controllers/admin_invite_requests_denied_controller.py +97 -0
- slackwebapi/controllers/admin_teams_admins_controller.py +96 -0
- slackwebapi/controllers/admin_teams_controller.py +158 -0
- slackwebapi/controllers/admin_teams_owners_controller.py +97 -0
- slackwebapi/controllers/admin_teams_settings_controller.py +367 -0
- slackwebapi/controllers/admin_usergroups_controller.py +282 -0
- slackwebapi/controllers/admin_users_controller.py +555 -0
- slackwebapi/controllers/admin_users_session_controller.py +151 -0
- slackwebapi/controllers/api_controller.py +84 -0
- slackwebapi/controllers/apps_controller.py +88 -0
- slackwebapi/controllers/apps_event_authorizations_controller.py +96 -0
- slackwebapi/controllers/apps_permissions_controller.py +142 -0
- slackwebapi/controllers/apps_permissions_resources_controller.py +94 -0
- slackwebapi/controllers/apps_permissions_scopes_controller.py +80 -0
- slackwebapi/controllers/apps_permissions_users_controller.py +158 -0
- slackwebapi/controllers/auth_controller.py +136 -0
- slackwebapi/controllers/base_controller.py +72 -0
- slackwebapi/controllers/bots_controller.py +85 -0
- slackwebapi/controllers/calls_controller.py +304 -0
- slackwebapi/controllers/calls_participants_controller.py +149 -0
- slackwebapi/controllers/chat_controller.py +896 -0
- slackwebapi/controllers/chat_scheduled_messages_controller.py +107 -0
- slackwebapi/controllers/conversations_controller.py +1217 -0
- slackwebapi/controllers/dialog_controller.py +93 -0
- slackwebapi/controllers/dnd_controller.py +294 -0
- slackwebapi/controllers/emoji_controller.py +79 -0
- slackwebapi/controllers/files_comments_controller.py +90 -0
- slackwebapi/controllers/files_controller.py +470 -0
- slackwebapi/controllers/files_remote_controller.py +440 -0
- slackwebapi/controllers/migration_controller.py +98 -0
- slackwebapi/controllers/oauth_authorization_controller.py +159 -0
- slackwebapi/controllers/oauth_controller.py +168 -0
- slackwebapi/controllers/oauth_v_2_controller.py +96 -0
- slackwebapi/controllers/pins_controller.py +203 -0
- slackwebapi/controllers/reactions_controller.py +334 -0
- slackwebapi/controllers/reminders_controller.py +315 -0
- slackwebapi/controllers/rtm_controller.py +93 -0
- slackwebapi/controllers/search_controller.py +114 -0
- slackwebapi/controllers/stars_controller.py +246 -0
- slackwebapi/controllers/team_controller.py +294 -0
- slackwebapi/controllers/team_profile_controller.py +84 -0
- slackwebapi/controllers/usergroups_controller.py +384 -0
- slackwebapi/controllers/usergroups_users_controller.py +161 -0
- slackwebapi/controllers/users_controller.py +639 -0
- slackwebapi/controllers/users_profile_controller.py +165 -0
- slackwebapi/controllers/views_controller.py +287 -0
- slackwebapi/controllers/workflows_controller.py +237 -0
- slackwebapi/exceptions/__init__.py +108 -0
- slackwebapi/exceptions/admin_conversations_archive_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_convert_to_private_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_create_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_delete_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_disconnect_shared_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_get_teams_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_invite_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_search_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_set_conversation_prefs_error_schema_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_unarchive_error_schema_2_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_unarchive_error_schema_3_exception.py +56 -0
- slackwebapi/exceptions/admin_conversations_unarchive_error_schema_exception.py +56 -0
- slackwebapi/exceptions/api_exception.py +36 -0
- slackwebapi/exceptions/api_test_error_schema_exception.py +55 -0
- slackwebapi/exceptions/apps_permissions_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/apps_permissions_request_error_schema_exception.py +66 -0
- slackwebapi/exceptions/apps_permissions_resources_list_error_schema_exception.py +66 -0
- slackwebapi/exceptions/apps_permissions_scopes_list_error_schema_exception.py +66 -0
- slackwebapi/exceptions/apps_uninstall_error_schema_exception.py +65 -0
- slackwebapi/exceptions/auth_revoke_error_schema_exception.py +65 -0
- slackwebapi/exceptions/auth_test_error_schema_exception.py +65 -0
- slackwebapi/exceptions/bots_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_delete_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_delete_scheduled_message_error_schema_exception.py +66 -0
- slackwebapi/exceptions/chat_get_permalink_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_me_message_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_post_ephemeral_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_post_message_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_schedule_message_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_scheduled_messages_list_error_schema_exception.py +66 -0
- slackwebapi/exceptions/chat_unfurl_error_schema_exception.py +65 -0
- slackwebapi/exceptions/chat_update_error_schema_exception.py +65 -0
- slackwebapi/exceptions/conversations_archive_error_schema_exception.py +86 -0
- slackwebapi/exceptions/conversations_close_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_create_error_schema_exception.py +95 -0
- slackwebapi/exceptions/conversations_history_error_schema_exception.py +86 -0
- slackwebapi/exceptions/conversations_info_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_invite_error_schema_1_exception.py +107 -0
- slackwebapi/exceptions/conversations_join_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_kick_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_leave_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_list_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_mark_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_members_error_schema_exception.py +66 -0
- slackwebapi/exceptions/conversations_open_error_schema_exception.py +65 -0
- slackwebapi/exceptions/conversations_rename_error_schema_exception.py +85 -0
- slackwebapi/exceptions/conversations_replies_error_schema_exception.py +86 -0
- slackwebapi/exceptions/conversations_set_purpose_error_schema_exception.py +86 -0
- slackwebapi/exceptions/conversations_set_topic_error_schema_exception.py +86 -0
- slackwebapi/exceptions/conversations_unarchive_error_schema_exception.py +86 -0
- slackwebapi/exceptions/default_error_template_exception.py +49 -0
- slackwebapi/exceptions/dialog_open_error_schema_exception.py +65 -0
- slackwebapi/exceptions/dnd_end_dnd_error_schema_exception.py +65 -0
- slackwebapi/exceptions/dnd_end_snooze_error_schema_exception.py +65 -0
- slackwebapi/exceptions/dnd_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/dnd_set_snooze_error_schema_exception.py +65 -0
- slackwebapi/exceptions/files_comments_delete_error_schema_exception.py +65 -0
- slackwebapi/exceptions/files_delete_error_schema_exception.py +65 -0
- slackwebapi/exceptions/files_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/files_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/files_revoke_public_url_error_schema_exception.py +66 -0
- slackwebapi/exceptions/files_shared_public_url_error_schema_exception.py +66 -0
- slackwebapi/exceptions/files_upload_error_schema_exception.py +65 -0
- slackwebapi/exceptions/migration_exchange_error_schema_exception.py +65 -0
- slackwebapi/exceptions/oauth_provider_exception.py +73 -0
- slackwebapi/exceptions/pins_add_error_schema_exception.py +65 -0
- slackwebapi/exceptions/pins_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/pins_remove_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reactions_add_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reactions_get_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reactions_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reactions_remove_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reminders_add_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reminders_complete_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reminders_delete_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reminders_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/reminders_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/rtm_connect_error_schema_exception.py +65 -0
- slackwebapi/exceptions/stars_add_error_schema_exception.py +65 -0
- slackwebapi/exceptions/stars_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/stars_remove_error_schema_exception.py +65 -0
- slackwebapi/exceptions/team_access_logs_error_schema_exception.py +65 -0
- slackwebapi/exceptions/team_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/team_integration_logs_error_schema_exception.py +65 -0
- slackwebapi/exceptions/team_profile_get_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_create_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_disable_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_enable_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_update_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_users_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/usergroups_users_update_error_schema_exception.py +66 -0
- slackwebapi/exceptions/users_conversations_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_counts_error_schema_exception.py +55 -0
- slackwebapi/exceptions/users_delete_photo_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_identity_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_info_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_list_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_lookup_by_email_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_profile_get_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_profile_set_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_set_active_error_schema_exception.py +65 -0
- slackwebapi/exceptions/users_set_photo_error_schema_exception.py +95 -0
- slackwebapi/exceptions/users_set_presence_error_schema_exception.py +65 -0
- slackwebapi/http/__init__.py +11 -0
- slackwebapi/http/api_response.py +67 -0
- slackwebapi/http/auth/__init__.py +5 -0
- slackwebapi/http/auth/oauth_2.py +333 -0
- slackwebapi/http/http_call_back.py +20 -0
- slackwebapi/http/http_client_provider.py +23 -0
- slackwebapi/http/http_method_enum.py +25 -0
- slackwebapi/http/http_request.py +55 -0
- slackwebapi/http/http_response.py +45 -0
- slackwebapi/http/proxy_settings.py +50 -0
- slackwebapi/logging/__init__.py +6 -0
- slackwebapi/logging/configuration/__init__.py +5 -0
- slackwebapi/logging/configuration/api_logging_configuration.py +398 -0
- slackwebapi/logging/sdk_logger.py +28 -0
- slackwebapi/models/__init__.py +248 -0
- slackwebapi/models/admin_conversations_archive_schema.py +86 -0
- slackwebapi/models/admin_conversations_convert_to_private_schema.py +86 -0
- slackwebapi/models/admin_conversations_create_schema.py +112 -0
- slackwebapi/models/admin_conversations_delete_schema.py +86 -0
- slackwebapi/models/admin_conversations_get_conversation_prefs_schema.py +114 -0
- slackwebapi/models/admin_conversations_get_teams_schema.py +130 -0
- slackwebapi/models/admin_conversations_invite_schema.py +86 -0
- slackwebapi/models/admin_conversations_rename_schema.py +86 -0
- slackwebapi/models/admin_conversations_rename_schema_1.py +86 -0
- slackwebapi/models/admin_conversations_search_schema.py +111 -0
- slackwebapi/models/admin_conversations_set_conversation_prefs_schema.py +86 -0
- slackwebapi/models/admin_conversations_unarchive_schema.py +86 -0
- slackwebapi/models/api_method_users_get_presence.py +218 -0
- slackwebapi/models/api_permissions_scopes_list_success_schema.py +100 -0
- slackwebapi/models/api_test_success_schema.py +86 -0
- slackwebapi/models/app_home.py +131 -0
- slackwebapi/models/apps_permissions_info_schema.py +100 -0
- slackwebapi/models/apps_permissions_request_schema.py +86 -0
- slackwebapi/models/apps_permissions_resources_list_success_schema.py +133 -0
- slackwebapi/models/apps_uninstall_schema.py +86 -0
- slackwebapi/models/attachment.py +208 -0
- slackwebapi/models/auth_revoke_schema.py +99 -0
- slackwebapi/models/auth_test_success_schema.py +200 -0
- slackwebapi/models/block_kit_block.py +90 -0
- slackwebapi/models/bot.py +182 -0
- slackwebapi/models/bot_profile_object.py +169 -0
- slackwebapi/models/bots_info_schema.py +100 -0
- slackwebapi/models/can_thread.py +126 -0
- slackwebapi/models/channel.py +131 -0
- slackwebapi/models/channel_object.py +688 -0
- slackwebapi/models/chat_delete_scheduled_message_schema.py +86 -0
- slackwebapi/models/chat_delete_success_schema.py +112 -0
- slackwebapi/models/chat_get_permalink_success_schema.py +112 -0
- slackwebapi/models/chat_me_message_schema.py +135 -0
- slackwebapi/models/chat_post_ephemeral_success_schema.py +99 -0
- slackwebapi/models/chat_post_message_success_schema.py +128 -0
- slackwebapi/models/chat_schedule_message_success_schema.py +139 -0
- slackwebapi/models/chat_scheduled_messages_list_schema.py +122 -0
- slackwebapi/models/chat_unfurl_success_schema.py +86 -0
- slackwebapi/models/chat_update_success_schema.py +141 -0
- slackwebapi/models/conversations_archive_success_schema.py +86 -0
- slackwebapi/models/conversations_close_success_schema.py +135 -0
- slackwebapi/models/conversations_create_success_schema.py +99 -0
- slackwebapi/models/conversations_history_success_schema.py +157 -0
- slackwebapi/models/conversations_info_success_schema.py +99 -0
- slackwebapi/models/conversations_invite_error_schema.py +99 -0
- slackwebapi/models/conversations_join_success_schema.py +153 -0
- slackwebapi/models/conversations_kick_success_schema.py +86 -0
- slackwebapi/models/conversations_leave_success_schema.py +112 -0
- slackwebapi/models/conversations_list_success_schema.py +130 -0
- slackwebapi/models/conversations_mark_success_schema.py +86 -0
- slackwebapi/models/conversations_members_success_schema.py +116 -0
- slackwebapi/models/conversations_open_success_schema.py +149 -0
- slackwebapi/models/conversations_rename_success_schema.py +99 -0
- slackwebapi/models/conversations_replies_success_schema.py +125 -0
- slackwebapi/models/conversations_set_purpose_success_schema.py +99 -0
- slackwebapi/models/conversations_set_topic_success_schema.py +99 -0
- slackwebapi/models/conversations_unarchive_success_schema.py +86 -0
- slackwebapi/models/current.py +103 -0
- slackwebapi/models/default_success_template.py +87 -0
- slackwebapi/models/dialog_open_schema.py +86 -0
- slackwebapi/models/dnd_end_dnd_schema.py +86 -0
- slackwebapi/models/dnd_end_snooze_schema.py +138 -0
- slackwebapi/models/dnd_info_schema.py +197 -0
- slackwebapi/models/dnd_set_snooze_schema.py +125 -0
- slackwebapi/models/error.py +61 -0
- slackwebapi/models/error_1.py +64 -0
- slackwebapi/models/error_10.py +61 -0
- slackwebapi/models/error_11.py +61 -0
- slackwebapi/models/error_12.py +94 -0
- slackwebapi/models/error_13.py +106 -0
- slackwebapi/models/error_14.py +97 -0
- slackwebapi/models/error_16.py +103 -0
- slackwebapi/models/error_17.py +91 -0
- slackwebapi/models/error_18.py +79 -0
- slackwebapi/models/error_19.py +94 -0
- slackwebapi/models/error_2.py +61 -0
- slackwebapi/models/error_20.py +100 -0
- slackwebapi/models/error_21.py +106 -0
- slackwebapi/models/error_22.py +97 -0
- slackwebapi/models/error_23.py +109 -0
- slackwebapi/models/error_24.py +112 -0
- slackwebapi/models/error_25.py +85 -0
- slackwebapi/models/error_26.py +139 -0
- slackwebapi/models/error_27.py +100 -0
- slackwebapi/models/error_28.py +106 -0
- slackwebapi/models/error_29.py +112 -0
- slackwebapi/models/error_3.py +61 -0
- slackwebapi/models/error_30.py +115 -0
- slackwebapi/models/error_31.py +91 -0
- slackwebapi/models/error_32.py +115 -0
- slackwebapi/models/error_33.py +88 -0
- slackwebapi/models/error_34.py +85 -0
- slackwebapi/models/error_35.py +130 -0
- slackwebapi/models/error_37.py +106 -0
- slackwebapi/models/error_38.py +106 -0
- slackwebapi/models/error_39.py +112 -0
- slackwebapi/models/error_4.py +76 -0
- slackwebapi/models/error_40.py +79 -0
- slackwebapi/models/error_41.py +94 -0
- slackwebapi/models/error_42.py +91 -0
- slackwebapi/models/error_43.py +106 -0
- slackwebapi/models/error_44.py +112 -0
- slackwebapi/models/error_45.py +88 -0
- slackwebapi/models/error_46.py +100 -0
- slackwebapi/models/error_48.py +106 -0
- slackwebapi/models/error_49.py +118 -0
- slackwebapi/models/error_5.py +61 -0
- slackwebapi/models/error_50.py +97 -0
- slackwebapi/models/error_51.py +100 -0
- slackwebapi/models/error_52.py +94 -0
- slackwebapi/models/error_53.py +103 -0
- slackwebapi/models/error_54.py +85 -0
- slackwebapi/models/error_55.py +91 -0
- slackwebapi/models/error_56.py +91 -0
- slackwebapi/models/error_57.py +91 -0
- slackwebapi/models/error_58.py +100 -0
- slackwebapi/models/error_59.py +103 -0
- slackwebapi/models/error_6.py +61 -0
- slackwebapi/models/error_60.py +97 -0
- slackwebapi/models/error_61.py +97 -0
- slackwebapi/models/error_62.py +106 -0
- slackwebapi/models/error_63.py +85 -0
- slackwebapi/models/error_64.py +103 -0
- slackwebapi/models/error_65.py +103 -0
- slackwebapi/models/error_66.py +94 -0
- slackwebapi/models/error_67.py +88 -0
- slackwebapi/models/error_68.py +106 -0
- slackwebapi/models/error_69.py +112 -0
- slackwebapi/models/error_7.py +58 -0
- slackwebapi/models/error_70.py +103 -0
- slackwebapi/models/error_71.py +97 -0
- slackwebapi/models/error_74.py +88 -0
- slackwebapi/models/error_75.py +112 -0
- slackwebapi/models/error_77.py +112 -0
- slackwebapi/models/error_78.py +100 -0
- slackwebapi/models/error_8.py +58 -0
- slackwebapi/models/error_81.py +85 -0
- slackwebapi/models/error_82.py +100 -0
- slackwebapi/models/error_84.py +103 -0
- slackwebapi/models/error_86.py +106 -0
- slackwebapi/models/error_89.py +103 -0
- slackwebapi/models/error_9.py +67 -0
- slackwebapi/models/error_92.py +85 -0
- slackwebapi/models/error_93.py +91 -0
- slackwebapi/models/error_94.py +91 -0
- slackwebapi/models/error_95.py +97 -0
- slackwebapi/models/error_96.py +112 -0
- slackwebapi/models/error_97.py +91 -0
- slackwebapi/models/error_98.py +106 -0
- slackwebapi/models/error_99.py +94 -0
- slackwebapi/models/errors_is_returned_when_an_error_associates_an_user.py +124 -0
- slackwebapi/models/external_org_migrations.py +106 -0
- slackwebapi/models/file_comment_object.py +281 -0
- slackwebapi/models/file_object.py +1700 -0
- slackwebapi/models/files_comments_delete_schema.py +86 -0
- slackwebapi/models/files_delete_schema.py +86 -0
- slackwebapi/models/files_info_schema.py +216 -0
- slackwebapi/models/files_list_schema.py +118 -0
- slackwebapi/models/files_revoke_public_url_schema.py +100 -0
- slackwebapi/models/files_shared_public_url_schema.py +100 -0
- slackwebapi/models/files_upload_schema.py +100 -0
- slackwebapi/models/group.py +131 -0
- slackwebapi/models/icons.py +116 -0
- slackwebapi/models/icons_1.py +126 -0
- slackwebapi/models/im.py +131 -0
- slackwebapi/models/info.py +161 -0
- slackwebapi/models/log.py +263 -0
- slackwebapi/models/login.py +214 -0
- slackwebapi/models/message.py +195 -0
- slackwebapi/models/message_object.py +1035 -0
- slackwebapi/models/message_object_1.py +139 -0
- slackwebapi/models/migration_exchange_success_schema.py +161 -0
- slackwebapi/models/mpim.py +131 -0
- slackwebapi/models/mself.py +103 -0
- slackwebapi/models/mtype.py +55 -0
- slackwebapi/models/oauth_provider_error.py +67 -0
- slackwebapi/models/oauth_scope.py +240 -0
- slackwebapi/models/oauth_token.py +113 -0
- slackwebapi/models/objs_enterprise_user.py +155 -0
- slackwebapi/models/objs_icon.py +264 -0
- slackwebapi/models/objs_primary_owner.py +103 -0
- slackwebapi/models/objs_reminder.py +191 -0
- slackwebapi/models/objs_team_profile_field.py +242 -0
- slackwebapi/models/objs_team_profile_field_option.py +179 -0
- slackwebapi/models/objs_user_profile_short.py +247 -0
- slackwebapi/models/paging_object.py +198 -0
- slackwebapi/models/pins_add_schema.py +86 -0
- slackwebapi/models/pins_remove_schema.py +86 -0
- slackwebapi/models/plan.py +49 -0
- slackwebapi/models/prefs.py +103 -0
- slackwebapi/models/prefs_1.py +132 -0
- slackwebapi/models/profile.py +96 -0
- slackwebapi/models/profile_1.py +194 -0
- slackwebapi/models/purpose.py +116 -0
- slackwebapi/models/reaction_object.py +116 -0
- slackwebapi/models/reactions_add_schema.py +86 -0
- slackwebapi/models/reactions_list_schema.py +152 -0
- slackwebapi/models/reactions_remove_schema.py +86 -0
- slackwebapi/models/reminders_add_schema.py +102 -0
- slackwebapi/models/reminders_complete_schema.py +86 -0
- slackwebapi/models/reminders_delete_schema.py +86 -0
- slackwebapi/models/reminders_info_schema.py +102 -0
- slackwebapi/models/reminders_list_schema.py +104 -0
- slackwebapi/models/resource.py +126 -0
- slackwebapi/models/resources_in_info_from_apps_permissions_info.py +139 -0
- slackwebapi/models/response_metadata.py +90 -0
- slackwebapi/models/response_metadata_3.py +103 -0
- slackwebapi/models/rtm_connect_schema.py +127 -0
- slackwebapi/models/scheduled_message.py +155 -0
- slackwebapi/models/scopes.py +241 -0
- slackwebapi/models/shares.py +126 -0
- slackwebapi/models/sso_provider.py +149 -0
- slackwebapi/models/stars_add_schema.py +86 -0
- slackwebapi/models/stars_list_schema.py +129 -0
- slackwebapi/models/stars_remove_schema.py +86 -0
- slackwebapi/models/subteam_usergroup_object.py +384 -0
- slackwebapi/models/team.py +107 -0
- slackwebapi/models/team_1.py +116 -0
- slackwebapi/models/team_access_logs_schema.py +118 -0
- slackwebapi/models/team_info_schema.py +100 -0
- slackwebapi/models/team_integration_logs_schema.py +118 -0
- slackwebapi/models/team_object.py +715 -0
- slackwebapi/models/team_profile_get_success_schema.py +100 -0
- slackwebapi/models/topic.py +116 -0
- slackwebapi/models/user_profile_object.py +1005 -0
- slackwebapi/models/usergroups_create_schema.py +103 -0
- slackwebapi/models/usergroups_disable_schema.py +103 -0
- slackwebapi/models/usergroups_enable_schema.py +103 -0
- slackwebapi/models/usergroups_list_schema.py +105 -0
- slackwebapi/models/usergroups_update_schema.py +103 -0
- slackwebapi/models/usergroups_users_list_schema.py +99 -0
- slackwebapi/models/usergroups_users_update_schema.py +103 -0
- slackwebapi/models/users_conversations_success_schema.py +131 -0
- slackwebapi/models/users_delete_photo_schema.py +86 -0
- slackwebapi/models/users_info_success_schema.py +99 -0
- slackwebapi/models/users_list_schema.py +138 -0
- slackwebapi/models/users_lookup_by_email_success_schema.py +99 -0
- slackwebapi/models/users_profile_get_schema.py +102 -0
- slackwebapi/models/users_profile_set_schema.py +141 -0
- slackwebapi/models/users_set_active_schema.py +86 -0
- slackwebapi/models/users_set_photo_schema.py +100 -0
- slackwebapi/models/users_set_presence_schema.py +86 -0
- slackwebapi/models/who_can_post.py +126 -0
- slackwebapi/slackwebapi_client.py +522 -0
- slackwebapi/utilities/__init__.py +6 -0
- slackwebapi/utilities/file_wrapper.py +45 -0
|
@@ -0,0 +1,896 @@
|
|
|
1
|
+
"""slackwebapi.
|
|
2
|
+
|
|
3
|
+
This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
# ruff: noqa: D410, E501, E101, D206
|
|
7
|
+
from apimatic_core.authentication.multiple.single_auth import (
|
|
8
|
+
Single,
|
|
9
|
+
)
|
|
10
|
+
from apimatic_core.request_builder import RequestBuilder
|
|
11
|
+
from apimatic_core.response_handler import ResponseHandler
|
|
12
|
+
from apimatic_core.types.parameter import Parameter
|
|
13
|
+
|
|
14
|
+
from slackwebapi.api_helper import APIHelper
|
|
15
|
+
from slackwebapi.configuration import Server
|
|
16
|
+
from slackwebapi.controllers.base_controller import (
|
|
17
|
+
BaseController,
|
|
18
|
+
)
|
|
19
|
+
from slackwebapi.exceptions.chat_delete_error_schema_exception import (
|
|
20
|
+
ChatDeleteErrorSchemaException,
|
|
21
|
+
)
|
|
22
|
+
from slackwebapi.exceptions.chat_delete_scheduled_message_error_schema_exception import ( # noqa: E501
|
|
23
|
+
ChatDeleteScheduledMessageErrorSchemaException,
|
|
24
|
+
)
|
|
25
|
+
from slackwebapi.exceptions.chat_get_permalink_error_schema_exception import (
|
|
26
|
+
ChatGetPermalinkErrorSchemaException,
|
|
27
|
+
)
|
|
28
|
+
from slackwebapi.exceptions.chat_me_message_error_schema_exception import (
|
|
29
|
+
ChatMeMessageErrorSchemaException,
|
|
30
|
+
)
|
|
31
|
+
from slackwebapi.exceptions.chat_post_ephemeral_error_schema_exception import (
|
|
32
|
+
ChatPostEphemeralErrorSchemaException,
|
|
33
|
+
)
|
|
34
|
+
from slackwebapi.exceptions.chat_post_message_error_schema_exception import (
|
|
35
|
+
ChatPostMessageErrorSchemaException,
|
|
36
|
+
)
|
|
37
|
+
from slackwebapi.exceptions.chat_schedule_message_error_schema_exception import (
|
|
38
|
+
ChatScheduleMessageErrorSchemaException,
|
|
39
|
+
)
|
|
40
|
+
from slackwebapi.exceptions.chat_unfurl_error_schema_exception import (
|
|
41
|
+
ChatUnfurlErrorSchemaException,
|
|
42
|
+
)
|
|
43
|
+
from slackwebapi.exceptions.chat_update_error_schema_exception import (
|
|
44
|
+
ChatUpdateErrorSchemaException,
|
|
45
|
+
)
|
|
46
|
+
from slackwebapi.http.http_method_enum import (
|
|
47
|
+
HttpMethodEnum,
|
|
48
|
+
)
|
|
49
|
+
from slackwebapi.models.chat_delete_scheduled_message_schema import (
|
|
50
|
+
ChatDeleteScheduledMessageSchema,
|
|
51
|
+
)
|
|
52
|
+
from slackwebapi.models.chat_delete_success_schema import (
|
|
53
|
+
ChatDeleteSuccessSchema,
|
|
54
|
+
)
|
|
55
|
+
from slackwebapi.models.chat_get_permalink_success_schema import (
|
|
56
|
+
ChatGetPermalinkSuccessSchema,
|
|
57
|
+
)
|
|
58
|
+
from slackwebapi.models.chat_me_message_schema import (
|
|
59
|
+
ChatMeMessageSchema,
|
|
60
|
+
)
|
|
61
|
+
from slackwebapi.models.chat_post_ephemeral_success_schema import (
|
|
62
|
+
ChatPostEphemeralSuccessSchema,
|
|
63
|
+
)
|
|
64
|
+
from slackwebapi.models.chat_post_message_success_schema import (
|
|
65
|
+
ChatPostMessageSuccessSchema,
|
|
66
|
+
)
|
|
67
|
+
from slackwebapi.models.chat_schedule_message_success_schema import (
|
|
68
|
+
ChatScheduleMessageSuccessSchema,
|
|
69
|
+
)
|
|
70
|
+
from slackwebapi.models.chat_unfurl_success_schema import (
|
|
71
|
+
ChatUnfurlSuccessSchema,
|
|
72
|
+
)
|
|
73
|
+
from slackwebapi.models.chat_update_success_schema import (
|
|
74
|
+
ChatUpdateSuccessSchema,
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
class ChatController(BaseController):
|
|
79
|
+
"""A Controller to access Endpoints in the slackwebapi API."""
|
|
80
|
+
|
|
81
|
+
def __init__(self, config):
|
|
82
|
+
"""Initialize ChatController object."""
|
|
83
|
+
super(ChatController, self).__init__(config)
|
|
84
|
+
|
|
85
|
+
def chat_delete(self,
|
|
86
|
+
token=None,
|
|
87
|
+
ts=None,
|
|
88
|
+
channel=None,
|
|
89
|
+
as_user=None):
|
|
90
|
+
"""Perform a POST request to /chat.delete.
|
|
91
|
+
|
|
92
|
+
Deletes a message.
|
|
93
|
+
|
|
94
|
+
Args:
|
|
95
|
+
token (str, optional): Authentication token. Requires scope: `chat:write`
|
|
96
|
+
ts (float, optional): Timestamp of the message to be deleted.
|
|
97
|
+
channel (str, optional): Channel containing the message to be deleted.
|
|
98
|
+
as_user (bool, optional): Pass true to delete the message as the authed
|
|
99
|
+
user with `chat:write:user` scope. [Bot users](/bot-users) in this
|
|
100
|
+
context are considered authed users. If unused or false, the message
|
|
101
|
+
will be deleted with `chat:write:bot` scope.
|
|
102
|
+
|
|
103
|
+
Returns:
|
|
104
|
+
ApiResponse: An object with the response value as well as other useful
|
|
105
|
+
information such as status codes and headers. Typical success response
|
|
106
|
+
|
|
107
|
+
Raises:
|
|
108
|
+
ApiException: When an error occurs while fetching the data from the
|
|
109
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
110
|
+
message, and the HTTP body that was received in the request.
|
|
111
|
+
|
|
112
|
+
"""
|
|
113
|
+
return super().new_api_call_builder.request(
|
|
114
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
115
|
+
.path("/chat.delete")
|
|
116
|
+
.http_method(HttpMethodEnum.POST)
|
|
117
|
+
.header_param(Parameter()
|
|
118
|
+
.key("token")
|
|
119
|
+
.value(token))
|
|
120
|
+
.form_param(Parameter()
|
|
121
|
+
.key("ts")
|
|
122
|
+
.value(ts))
|
|
123
|
+
.form_param(Parameter()
|
|
124
|
+
.key("channel")
|
|
125
|
+
.value(channel))
|
|
126
|
+
.form_param(Parameter()
|
|
127
|
+
.key("as_user")
|
|
128
|
+
.value(as_user))
|
|
129
|
+
.header_param(Parameter()
|
|
130
|
+
.key("content-type")
|
|
131
|
+
.value("application/x-www-form-urlencoded"))
|
|
132
|
+
.header_param(Parameter()
|
|
133
|
+
.key("accept")
|
|
134
|
+
.value("application/json"))
|
|
135
|
+
.auth(Single("slackAuth")),
|
|
136
|
+
).response(
|
|
137
|
+
ResponseHandler()
|
|
138
|
+
.deserializer(APIHelper.json_deserialize)
|
|
139
|
+
.deserialize_into(ChatDeleteSuccessSchema.from_dictionary)
|
|
140
|
+
.is_api_response(True)
|
|
141
|
+
.local_error("default",
|
|
142
|
+
"Typical error response",
|
|
143
|
+
ChatDeleteErrorSchemaException),
|
|
144
|
+
).execute()
|
|
145
|
+
|
|
146
|
+
def chat_delete_scheduled_message(self,
|
|
147
|
+
token,
|
|
148
|
+
channel,
|
|
149
|
+
scheduled_message_id,
|
|
150
|
+
as_user=None):
|
|
151
|
+
"""Perform a POST request to /chat.deleteScheduledMessage.
|
|
152
|
+
|
|
153
|
+
Deletes a pending scheduled message from the queue.
|
|
154
|
+
|
|
155
|
+
Args:
|
|
156
|
+
token (str): Authentication token. Requires scope: `chat:write`
|
|
157
|
+
channel (str): The channel the scheduled_message is posting to
|
|
158
|
+
scheduled_message_id (str): `scheduled_message_id` returned from call to
|
|
159
|
+
chat.scheduleMessage
|
|
160
|
+
as_user (bool, optional): Pass true to delete the message as the authed
|
|
161
|
+
user with `chat:write:user` scope. [Bot users](/bot-users) in this
|
|
162
|
+
context are considered authed users. If unused or false, the message
|
|
163
|
+
will be deleted with `chat:write:bot` scope.
|
|
164
|
+
|
|
165
|
+
Returns:
|
|
166
|
+
ApiResponse: An object with the response value as well as other useful
|
|
167
|
+
information such as status codes and headers. Typical success response
|
|
168
|
+
|
|
169
|
+
Raises:
|
|
170
|
+
ApiException: When an error occurs while fetching the data from the
|
|
171
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
172
|
+
message, and the HTTP body that was received in the request.
|
|
173
|
+
|
|
174
|
+
"""
|
|
175
|
+
return super().new_api_call_builder.request(
|
|
176
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
177
|
+
.path("/chat.deleteScheduledMessage")
|
|
178
|
+
.http_method(HttpMethodEnum.POST)
|
|
179
|
+
.header_param(Parameter()
|
|
180
|
+
.key("token")
|
|
181
|
+
.value(token)
|
|
182
|
+
.is_required(True))
|
|
183
|
+
.form_param(Parameter()
|
|
184
|
+
.key("channel")
|
|
185
|
+
.value(channel)
|
|
186
|
+
.is_required(True))
|
|
187
|
+
.form_param(Parameter()
|
|
188
|
+
.key("scheduled_message_id")
|
|
189
|
+
.value(scheduled_message_id)
|
|
190
|
+
.is_required(True))
|
|
191
|
+
.form_param(Parameter()
|
|
192
|
+
.key("as_user")
|
|
193
|
+
.value(as_user))
|
|
194
|
+
.header_param(Parameter()
|
|
195
|
+
.key("content-type")
|
|
196
|
+
.value("application/x-www-form-urlencoded"))
|
|
197
|
+
.header_param(Parameter()
|
|
198
|
+
.key("accept")
|
|
199
|
+
.value("application/json"))
|
|
200
|
+
.auth(Single("slackAuth")),
|
|
201
|
+
).response(
|
|
202
|
+
ResponseHandler()
|
|
203
|
+
.deserializer(APIHelper.json_deserialize)
|
|
204
|
+
.deserialize_into(ChatDeleteScheduledMessageSchema.from_dictionary)
|
|
205
|
+
.is_api_response(True)
|
|
206
|
+
.local_error("default",
|
|
207
|
+
"Typical error response if no message is found",
|
|
208
|
+
ChatDeleteScheduledMessageErrorSchemaException),
|
|
209
|
+
).execute()
|
|
210
|
+
|
|
211
|
+
def chat_get_permalink(self,
|
|
212
|
+
token,
|
|
213
|
+
channel,
|
|
214
|
+
message_ts):
|
|
215
|
+
"""Perform a GET request to /chat.getPermalink.
|
|
216
|
+
|
|
217
|
+
Retrieve a permalink URL for a specific extant message
|
|
218
|
+
|
|
219
|
+
Args:
|
|
220
|
+
token (str): Authentication token. Requires scope: `none`
|
|
221
|
+
channel (str): The ID of the conversation or channel containing the
|
|
222
|
+
message
|
|
223
|
+
message_ts (str): A message's `ts` value, uniquely identifying it within
|
|
224
|
+
a channel
|
|
225
|
+
|
|
226
|
+
Returns:
|
|
227
|
+
ApiResponse: An object with the response value as well as other useful
|
|
228
|
+
information such as status codes and headers. Standard success
|
|
229
|
+
response
|
|
230
|
+
|
|
231
|
+
Raises:
|
|
232
|
+
ApiException: When an error occurs while fetching the data from the
|
|
233
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
234
|
+
message, and the HTTP body that was received in the request.
|
|
235
|
+
|
|
236
|
+
"""
|
|
237
|
+
return super().new_api_call_builder.request(
|
|
238
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
239
|
+
.path("/chat.getPermalink")
|
|
240
|
+
.http_method(HttpMethodEnum.GET)
|
|
241
|
+
.query_param(Parameter()
|
|
242
|
+
.key("token")
|
|
243
|
+
.value(token)
|
|
244
|
+
.is_required(True))
|
|
245
|
+
.query_param(Parameter()
|
|
246
|
+
.key("channel")
|
|
247
|
+
.value(channel)
|
|
248
|
+
.is_required(True))
|
|
249
|
+
.query_param(Parameter()
|
|
250
|
+
.key("message_ts")
|
|
251
|
+
.value(message_ts)
|
|
252
|
+
.is_required(True))
|
|
253
|
+
.header_param(Parameter()
|
|
254
|
+
.key("Content-Type")
|
|
255
|
+
.value("application/x-www-form-urlencoded"))
|
|
256
|
+
.header_param(Parameter()
|
|
257
|
+
.key("accept")
|
|
258
|
+
.value("application/json"))
|
|
259
|
+
.auth(Single("slackAuth")),
|
|
260
|
+
).response(
|
|
261
|
+
ResponseHandler()
|
|
262
|
+
.deserializer(APIHelper.json_deserialize)
|
|
263
|
+
.deserialize_into(ChatGetPermalinkSuccessSchema.from_dictionary)
|
|
264
|
+
.is_api_response(True)
|
|
265
|
+
.local_error("default",
|
|
266
|
+
"Error response when channel cannot be found",
|
|
267
|
+
ChatGetPermalinkErrorSchemaException),
|
|
268
|
+
).execute()
|
|
269
|
+
|
|
270
|
+
def chat_me_message(self,
|
|
271
|
+
token=None,
|
|
272
|
+
channel=None,
|
|
273
|
+
text=None):
|
|
274
|
+
"""Perform a POST request to /chat.meMessage.
|
|
275
|
+
|
|
276
|
+
Share a me message into a channel.
|
|
277
|
+
|
|
278
|
+
Args:
|
|
279
|
+
token (str, optional): Authentication token. Requires scope: `chat:write`
|
|
280
|
+
channel (str, optional): Channel to send message to. Can be a public
|
|
281
|
+
channel, private group or IM channel. Can be an encoded ID, or a name.
|
|
282
|
+
text (str, optional): Text of the message to send.
|
|
283
|
+
|
|
284
|
+
Returns:
|
|
285
|
+
ApiResponse: An object with the response value as well as other useful
|
|
286
|
+
information such as status codes and headers. Typical success response
|
|
287
|
+
|
|
288
|
+
Raises:
|
|
289
|
+
ApiException: When an error occurs while fetching the data from the
|
|
290
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
291
|
+
message, and the HTTP body that was received in the request.
|
|
292
|
+
|
|
293
|
+
"""
|
|
294
|
+
return super().new_api_call_builder.request(
|
|
295
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
296
|
+
.path("/chat.meMessage")
|
|
297
|
+
.http_method(HttpMethodEnum.POST)
|
|
298
|
+
.header_param(Parameter()
|
|
299
|
+
.key("token")
|
|
300
|
+
.value(token))
|
|
301
|
+
.form_param(Parameter()
|
|
302
|
+
.key("channel")
|
|
303
|
+
.value(channel))
|
|
304
|
+
.form_param(Parameter()
|
|
305
|
+
.key("text")
|
|
306
|
+
.value(text))
|
|
307
|
+
.header_param(Parameter()
|
|
308
|
+
.key("content-type")
|
|
309
|
+
.value("application/x-www-form-urlencoded"))
|
|
310
|
+
.header_param(Parameter()
|
|
311
|
+
.key("accept")
|
|
312
|
+
.value("application/json"))
|
|
313
|
+
.auth(Single("slackAuth")),
|
|
314
|
+
).response(
|
|
315
|
+
ResponseHandler()
|
|
316
|
+
.deserializer(APIHelper.json_deserialize)
|
|
317
|
+
.deserialize_into(ChatMeMessageSchema.from_dictionary)
|
|
318
|
+
.is_api_response(True)
|
|
319
|
+
.local_error("default",
|
|
320
|
+
"Typical error response",
|
|
321
|
+
ChatMeMessageErrorSchemaException),
|
|
322
|
+
).execute()
|
|
323
|
+
|
|
324
|
+
def chat_post_ephemeral(self,
|
|
325
|
+
token,
|
|
326
|
+
channel,
|
|
327
|
+
user,
|
|
328
|
+
as_user=None,
|
|
329
|
+
attachments=None,
|
|
330
|
+
blocks=None,
|
|
331
|
+
icon_emoji=None,
|
|
332
|
+
icon_url=None,
|
|
333
|
+
link_names=None,
|
|
334
|
+
parse=None,
|
|
335
|
+
text=None,
|
|
336
|
+
thread_ts=None,
|
|
337
|
+
username=None):
|
|
338
|
+
"""Perform a POST request to /chat.postEphemeral.
|
|
339
|
+
|
|
340
|
+
Sends an ephemeral message to a user in a channel.
|
|
341
|
+
|
|
342
|
+
Args:
|
|
343
|
+
token (str): Authentication token. Requires scope: `chat:write`
|
|
344
|
+
channel (str): Channel, private group, or IM channel to send message to.
|
|
345
|
+
Can be an encoded ID, or a name.
|
|
346
|
+
user (str): `id` of the user who will receive the ephemeral message. The
|
|
347
|
+
user should be in the channel specified by the `channel` argument.
|
|
348
|
+
as_user (bool, optional): Pass true to post the message as the authed
|
|
349
|
+
user. Defaults to true if the chat:write:bot scope is not included.
|
|
350
|
+
Otherwise, defaults to false.
|
|
351
|
+
attachments (str, optional): A JSON-based array of structured
|
|
352
|
+
attachments, presented as a URL-encoded string.
|
|
353
|
+
blocks (str, optional): A JSON-based array of structured blocks,
|
|
354
|
+
presented as a URL-encoded string.
|
|
355
|
+
icon_emoji (str, optional): Emoji to use as the icon for this message.
|
|
356
|
+
Overrides `icon_url`. Must be used in conjunction with `as_user` set
|
|
357
|
+
to `false`, otherwise ignored. See [authorship](#authorship) below.
|
|
358
|
+
icon_url (str, optional): URL to an image to use as the icon for this
|
|
359
|
+
message. Must be used in conjunction with `as_user` set to false,
|
|
360
|
+
otherwise ignored. See [authorship](#authorship) below.
|
|
361
|
+
link_names (bool, optional): Find and link channel names and usernames.
|
|
362
|
+
parse (str, optional): Change how messages are treated. Defaults to
|
|
363
|
+
`none`. See [below](#formatting).
|
|
364
|
+
text (str, optional): How this field works and whether it is required
|
|
365
|
+
depends on other fields you use in your API call. [See
|
|
366
|
+
below](#text_usage) for more detail.
|
|
367
|
+
thread_ts (str, optional): Provide another message's `ts` value to post
|
|
368
|
+
this message in a thread. Avoid using a reply's `ts` value; use its
|
|
369
|
+
parent's value instead. Ephemeral messages in threads are only shown
|
|
370
|
+
if there is already an active thread.
|
|
371
|
+
username (str, optional): Set your bot's user name. Must be used in
|
|
372
|
+
conjunction with `as_user` set to false, otherwise ignored. See
|
|
373
|
+
[authorship](#authorship) below.
|
|
374
|
+
|
|
375
|
+
Returns:
|
|
376
|
+
ApiResponse: An object with the response value as well as other useful
|
|
377
|
+
information such as status codes and headers. Typical success response
|
|
378
|
+
|
|
379
|
+
Raises:
|
|
380
|
+
ApiException: When an error occurs while fetching the data from the
|
|
381
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
382
|
+
message, and the HTTP body that was received in the request.
|
|
383
|
+
|
|
384
|
+
"""
|
|
385
|
+
return super().new_api_call_builder.request(
|
|
386
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
387
|
+
.path("/chat.postEphemeral")
|
|
388
|
+
.http_method(HttpMethodEnum.POST)
|
|
389
|
+
.header_param(Parameter()
|
|
390
|
+
.key("token")
|
|
391
|
+
.value(token)
|
|
392
|
+
.is_required(True))
|
|
393
|
+
.form_param(Parameter()
|
|
394
|
+
.key("channel")
|
|
395
|
+
.value(channel)
|
|
396
|
+
.is_required(True))
|
|
397
|
+
.form_param(Parameter()
|
|
398
|
+
.key("user")
|
|
399
|
+
.value(user)
|
|
400
|
+
.is_required(True))
|
|
401
|
+
.form_param(Parameter()
|
|
402
|
+
.key("as_user")
|
|
403
|
+
.value(as_user))
|
|
404
|
+
.form_param(Parameter()
|
|
405
|
+
.key("attachments")
|
|
406
|
+
.value(attachments))
|
|
407
|
+
.form_param(Parameter()
|
|
408
|
+
.key("blocks")
|
|
409
|
+
.value(blocks))
|
|
410
|
+
.form_param(Parameter()
|
|
411
|
+
.key("icon_emoji")
|
|
412
|
+
.value(icon_emoji))
|
|
413
|
+
.form_param(Parameter()
|
|
414
|
+
.key("icon_url")
|
|
415
|
+
.value(icon_url))
|
|
416
|
+
.form_param(Parameter()
|
|
417
|
+
.key("link_names")
|
|
418
|
+
.value(link_names))
|
|
419
|
+
.form_param(Parameter()
|
|
420
|
+
.key("parse")
|
|
421
|
+
.value(parse))
|
|
422
|
+
.form_param(Parameter()
|
|
423
|
+
.key("text")
|
|
424
|
+
.value(text))
|
|
425
|
+
.form_param(Parameter()
|
|
426
|
+
.key("thread_ts")
|
|
427
|
+
.value(thread_ts))
|
|
428
|
+
.form_param(Parameter()
|
|
429
|
+
.key("username")
|
|
430
|
+
.value(username))
|
|
431
|
+
.header_param(Parameter()
|
|
432
|
+
.key("content-type")
|
|
433
|
+
.value("application/x-www-form-urlencoded"))
|
|
434
|
+
.header_param(Parameter()
|
|
435
|
+
.key("accept")
|
|
436
|
+
.value("application/json"))
|
|
437
|
+
.auth(Single("slackAuth")),
|
|
438
|
+
).response(
|
|
439
|
+
ResponseHandler()
|
|
440
|
+
.deserializer(APIHelper.json_deserialize)
|
|
441
|
+
.deserialize_into(ChatPostEphemeralSuccessSchema.from_dictionary)
|
|
442
|
+
.is_api_response(True)
|
|
443
|
+
.local_error("default",
|
|
444
|
+
"Typical error response",
|
|
445
|
+
ChatPostEphemeralErrorSchemaException),
|
|
446
|
+
).execute()
|
|
447
|
+
|
|
448
|
+
def chat_post_message(self,
|
|
449
|
+
token,
|
|
450
|
+
channel,
|
|
451
|
+
as_user=None,
|
|
452
|
+
attachments=None,
|
|
453
|
+
blocks=None,
|
|
454
|
+
icon_emoji=None,
|
|
455
|
+
icon_url=None,
|
|
456
|
+
link_names=None,
|
|
457
|
+
mrkdwn=None,
|
|
458
|
+
parse=None,
|
|
459
|
+
reply_broadcast=None,
|
|
460
|
+
text=None,
|
|
461
|
+
thread_ts=None,
|
|
462
|
+
unfurl_links=None,
|
|
463
|
+
unfurl_media=None,
|
|
464
|
+
username=None):
|
|
465
|
+
"""Perform a POST request to /chat.postMessage.
|
|
466
|
+
|
|
467
|
+
Sends a message to a channel.
|
|
468
|
+
|
|
469
|
+
Args:
|
|
470
|
+
token (str): Authentication token. Requires scope: `chat:write`
|
|
471
|
+
channel (str): Channel, private group, or IM channel to send message to.
|
|
472
|
+
Can be an encoded ID, or a name. See [below](#channels) for more
|
|
473
|
+
details.
|
|
474
|
+
as_user (str, optional): Pass true to post the message as the authed
|
|
475
|
+
user, instead of as a bot. Defaults to false. See
|
|
476
|
+
[authorship](#authorship) below.
|
|
477
|
+
attachments (str, optional): A JSON-based array of structured
|
|
478
|
+
attachments, presented as a URL-encoded string.
|
|
479
|
+
blocks (str, optional): A JSON-based array of structured blocks,
|
|
480
|
+
presented as a URL-encoded string.
|
|
481
|
+
icon_emoji (str, optional): Emoji to use as the icon for this message.
|
|
482
|
+
Overrides `icon_url`. Must be used in conjunction with `as_user` set
|
|
483
|
+
to `false`, otherwise ignored. See [authorship](#authorship) below.
|
|
484
|
+
icon_url (str, optional): URL to an image to use as the icon for this
|
|
485
|
+
message. Must be used in conjunction with `as_user` set to false,
|
|
486
|
+
otherwise ignored. See [authorship](#authorship) below.
|
|
487
|
+
link_names (bool, optional): Find and link channel names and usernames.
|
|
488
|
+
mrkdwn (bool, optional): Disable Slack markup parsing by setting to
|
|
489
|
+
`false`. Enabled by default.
|
|
490
|
+
parse (str, optional): Change how messages are treated. Defaults to
|
|
491
|
+
`none`. See [below](#formatting).
|
|
492
|
+
reply_broadcast (bool, optional): Used in conjunction with `thread_ts`
|
|
493
|
+
and indicates whether reply should be made visible to everyone in the
|
|
494
|
+
channel or conversation. Defaults to `false`.
|
|
495
|
+
text (str, optional): How this field works and whether it is required
|
|
496
|
+
depends on other fields you use in your API call. [See
|
|
497
|
+
below](#text_usage) for more detail.
|
|
498
|
+
thread_ts (str, optional): Provide another message's `ts` value to make
|
|
499
|
+
this message a reply. Avoid using a reply's `ts` value; use its
|
|
500
|
+
parent instead.
|
|
501
|
+
unfurl_links (bool, optional): Pass true to enable unfurling of primarily
|
|
502
|
+
text-based content.
|
|
503
|
+
unfurl_media (bool, optional): Pass false to disable unfurling of media
|
|
504
|
+
content.
|
|
505
|
+
username (str, optional): Set your bot's user name. Must be used in
|
|
506
|
+
conjunction with `as_user` set to false, otherwise ignored. See
|
|
507
|
+
[authorship](#authorship) below.
|
|
508
|
+
|
|
509
|
+
Returns:
|
|
510
|
+
ApiResponse: An object with the response value as well as other useful
|
|
511
|
+
information such as status codes and headers. Typical success response
|
|
512
|
+
|
|
513
|
+
Raises:
|
|
514
|
+
ApiException: When an error occurs while fetching the data from the
|
|
515
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
516
|
+
message, and the HTTP body that was received in the request.
|
|
517
|
+
|
|
518
|
+
"""
|
|
519
|
+
return super().new_api_call_builder.request(
|
|
520
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
521
|
+
.path("/chat.postMessage")
|
|
522
|
+
.http_method(HttpMethodEnum.POST)
|
|
523
|
+
.header_param(Parameter()
|
|
524
|
+
.key("token")
|
|
525
|
+
.value(token)
|
|
526
|
+
.is_required(True))
|
|
527
|
+
.form_param(Parameter()
|
|
528
|
+
.key("channel")
|
|
529
|
+
.value(channel)
|
|
530
|
+
.is_required(True))
|
|
531
|
+
.form_param(Parameter()
|
|
532
|
+
.key("as_user")
|
|
533
|
+
.value(as_user))
|
|
534
|
+
.form_param(Parameter()
|
|
535
|
+
.key("attachments")
|
|
536
|
+
.value(attachments))
|
|
537
|
+
.form_param(Parameter()
|
|
538
|
+
.key("blocks")
|
|
539
|
+
.value(blocks))
|
|
540
|
+
.form_param(Parameter()
|
|
541
|
+
.key("icon_emoji")
|
|
542
|
+
.value(icon_emoji))
|
|
543
|
+
.form_param(Parameter()
|
|
544
|
+
.key("icon_url")
|
|
545
|
+
.value(icon_url))
|
|
546
|
+
.form_param(Parameter()
|
|
547
|
+
.key("link_names")
|
|
548
|
+
.value(link_names))
|
|
549
|
+
.form_param(Parameter()
|
|
550
|
+
.key("mrkdwn")
|
|
551
|
+
.value(mrkdwn))
|
|
552
|
+
.form_param(Parameter()
|
|
553
|
+
.key("parse")
|
|
554
|
+
.value(parse))
|
|
555
|
+
.form_param(Parameter()
|
|
556
|
+
.key("reply_broadcast")
|
|
557
|
+
.value(reply_broadcast))
|
|
558
|
+
.form_param(Parameter()
|
|
559
|
+
.key("text")
|
|
560
|
+
.value(text))
|
|
561
|
+
.form_param(Parameter()
|
|
562
|
+
.key("thread_ts")
|
|
563
|
+
.value(thread_ts))
|
|
564
|
+
.form_param(Parameter()
|
|
565
|
+
.key("unfurl_links")
|
|
566
|
+
.value(unfurl_links))
|
|
567
|
+
.form_param(Parameter()
|
|
568
|
+
.key("unfurl_media")
|
|
569
|
+
.value(unfurl_media))
|
|
570
|
+
.form_param(Parameter()
|
|
571
|
+
.key("username")
|
|
572
|
+
.value(username))
|
|
573
|
+
.header_param(Parameter()
|
|
574
|
+
.key("content-type")
|
|
575
|
+
.value("application/x-www-form-urlencoded"))
|
|
576
|
+
.header_param(Parameter()
|
|
577
|
+
.key("accept")
|
|
578
|
+
.value("application/json"))
|
|
579
|
+
.auth(Single("slackAuth")),
|
|
580
|
+
).response(
|
|
581
|
+
ResponseHandler()
|
|
582
|
+
.deserializer(APIHelper.json_deserialize)
|
|
583
|
+
.deserialize_into(ChatPostMessageSuccessSchema.from_dictionary)
|
|
584
|
+
.is_api_response(True)
|
|
585
|
+
.local_error("default",
|
|
586
|
+
"Typical error response if too many attachments are included",
|
|
587
|
+
ChatPostMessageErrorSchemaException),
|
|
588
|
+
).execute()
|
|
589
|
+
|
|
590
|
+
def chat_schedule_message(self,
|
|
591
|
+
token=None,
|
|
592
|
+
channel=None,
|
|
593
|
+
text=None,
|
|
594
|
+
post_at=None,
|
|
595
|
+
parse=None,
|
|
596
|
+
as_user=None,
|
|
597
|
+
link_names=None,
|
|
598
|
+
attachments=None,
|
|
599
|
+
blocks=None,
|
|
600
|
+
unfurl_links=None,
|
|
601
|
+
unfurl_media=None,
|
|
602
|
+
thread_ts=None,
|
|
603
|
+
reply_broadcast=None):
|
|
604
|
+
"""Perform a POST request to /chat.scheduleMessage.
|
|
605
|
+
|
|
606
|
+
Schedules a message to be sent to a channel.
|
|
607
|
+
|
|
608
|
+
Args:
|
|
609
|
+
token (str, optional): Authentication token. Requires scope: `chat:write`
|
|
610
|
+
channel (str, optional): Channel, private group, or DM channel to send
|
|
611
|
+
message to. Can be an encoded ID, or a name. See [below](#channels)
|
|
612
|
+
for more details.
|
|
613
|
+
text (str, optional): How this field works and whether it is required
|
|
614
|
+
depends on other fields you use in your API call. [See
|
|
615
|
+
below](#text_usage) for more detail.
|
|
616
|
+
post_at (str, optional): Unix EPOCH timestamp of time in future to send
|
|
617
|
+
the message.
|
|
618
|
+
parse (str, optional): Change how messages are treated. Defaults to
|
|
619
|
+
`none`. See [chat.postMessage](chat.postMessage#formatting).
|
|
620
|
+
as_user (bool, optional): Pass true to post the message as the authed
|
|
621
|
+
user, instead of as a bot. Defaults to false. See
|
|
622
|
+
[chat.postMessage](chat.postMessage#authorship).
|
|
623
|
+
link_names (bool, optional): Find and link channel names and usernames.
|
|
624
|
+
attachments (str, optional): A JSON-based array of structured
|
|
625
|
+
attachments, presented as a URL-encoded string.
|
|
626
|
+
blocks (str, optional): A JSON-based array of structured blocks,
|
|
627
|
+
presented as a URL-encoded string.
|
|
628
|
+
unfurl_links (bool, optional): Pass true to enable unfurling of primarily
|
|
629
|
+
text-based content.
|
|
630
|
+
unfurl_media (bool, optional): Pass false to disable unfurling of media
|
|
631
|
+
content.
|
|
632
|
+
thread_ts (float, optional): Provide another message's `ts` value to make
|
|
633
|
+
this message a reply. Avoid using a reply's `ts` value; use its
|
|
634
|
+
parent instead.
|
|
635
|
+
reply_broadcast (bool, optional): Used in conjunction with `thread_ts`
|
|
636
|
+
and indicates whether reply should be made visible to everyone in the
|
|
637
|
+
channel or conversation. Defaults to `false`.
|
|
638
|
+
|
|
639
|
+
Returns:
|
|
640
|
+
ApiResponse: An object with the response value as well as other useful
|
|
641
|
+
information such as status codes and headers. Typical success response
|
|
642
|
+
|
|
643
|
+
Raises:
|
|
644
|
+
ApiException: When an error occurs while fetching the data from the
|
|
645
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
646
|
+
message, and the HTTP body that was received in the request.
|
|
647
|
+
|
|
648
|
+
"""
|
|
649
|
+
return super().new_api_call_builder.request(
|
|
650
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
651
|
+
.path("/chat.scheduleMessage")
|
|
652
|
+
.http_method(HttpMethodEnum.POST)
|
|
653
|
+
.header_param(Parameter()
|
|
654
|
+
.key("token")
|
|
655
|
+
.value(token))
|
|
656
|
+
.form_param(Parameter()
|
|
657
|
+
.key("channel")
|
|
658
|
+
.value(channel))
|
|
659
|
+
.form_param(Parameter()
|
|
660
|
+
.key("text")
|
|
661
|
+
.value(text))
|
|
662
|
+
.form_param(Parameter()
|
|
663
|
+
.key("post_at")
|
|
664
|
+
.value(post_at))
|
|
665
|
+
.form_param(Parameter()
|
|
666
|
+
.key("parse")
|
|
667
|
+
.value(parse))
|
|
668
|
+
.form_param(Parameter()
|
|
669
|
+
.key("as_user")
|
|
670
|
+
.value(as_user))
|
|
671
|
+
.form_param(Parameter()
|
|
672
|
+
.key("link_names")
|
|
673
|
+
.value(link_names))
|
|
674
|
+
.form_param(Parameter()
|
|
675
|
+
.key("attachments")
|
|
676
|
+
.value(attachments))
|
|
677
|
+
.form_param(Parameter()
|
|
678
|
+
.key("blocks")
|
|
679
|
+
.value(blocks))
|
|
680
|
+
.form_param(Parameter()
|
|
681
|
+
.key("unfurl_links")
|
|
682
|
+
.value(unfurl_links))
|
|
683
|
+
.form_param(Parameter()
|
|
684
|
+
.key("unfurl_media")
|
|
685
|
+
.value(unfurl_media))
|
|
686
|
+
.form_param(Parameter()
|
|
687
|
+
.key("thread_ts")
|
|
688
|
+
.value(thread_ts))
|
|
689
|
+
.form_param(Parameter()
|
|
690
|
+
.key("reply_broadcast")
|
|
691
|
+
.value(reply_broadcast))
|
|
692
|
+
.header_param(Parameter()
|
|
693
|
+
.key("content-type")
|
|
694
|
+
.value("application/x-www-form-urlencoded"))
|
|
695
|
+
.header_param(Parameter()
|
|
696
|
+
.key("accept")
|
|
697
|
+
.value("application/json"))
|
|
698
|
+
.auth(Single("slackAuth")),
|
|
699
|
+
).response(
|
|
700
|
+
ResponseHandler()
|
|
701
|
+
.deserializer(APIHelper.json_deserialize)
|
|
702
|
+
.deserialize_into(ChatScheduleMessageSuccessSchema.from_dictionary)
|
|
703
|
+
.is_api_response(True)
|
|
704
|
+
.local_error("default",
|
|
705
|
+
"Typical error response if the `post_at` is invalid (ex. in the past "
|
|
706
|
+
"or too far into the future)",
|
|
707
|
+
ChatScheduleMessageErrorSchemaException),
|
|
708
|
+
).execute()
|
|
709
|
+
|
|
710
|
+
def chat_unfurl(self,
|
|
711
|
+
token,
|
|
712
|
+
channel,
|
|
713
|
+
ts,
|
|
714
|
+
unfurls=None,
|
|
715
|
+
user_auth_message=None,
|
|
716
|
+
user_auth_required=None,
|
|
717
|
+
user_auth_url=None):
|
|
718
|
+
"""Perform a POST request to /chat.unfurl.
|
|
719
|
+
|
|
720
|
+
Provide custom unfurl behavior for user-posted URLs
|
|
721
|
+
|
|
722
|
+
Args:
|
|
723
|
+
token (str): Authentication token. Requires scope: `links:write`
|
|
724
|
+
channel (str): Channel ID of the message
|
|
725
|
+
ts (str): Timestamp of the message to add unfurl behavior to.
|
|
726
|
+
unfurls (str, optional): URL-encoded JSON map with keys set to URLs
|
|
727
|
+
featured in the the message, pointing to their unfurl blocks or
|
|
728
|
+
message attachments.
|
|
729
|
+
user_auth_message (str, optional): Provide a simply-formatted string to
|
|
730
|
+
send as an ephemeral message to the user as invitation to
|
|
731
|
+
authenticate further and enable full unfurling behavior
|
|
732
|
+
user_auth_required (bool, optional): Set to `true` or `1` to indicate the
|
|
733
|
+
user must install your Slack app to trigger unfurls for this domain
|
|
734
|
+
user_auth_url (str, optional): Send users to this custom URL where they
|
|
735
|
+
will complete authentication in your app to fully trigger unfurling.
|
|
736
|
+
Value should be properly URL-encoded.
|
|
737
|
+
|
|
738
|
+
Returns:
|
|
739
|
+
ApiResponse: An object with the response value as well as other useful
|
|
740
|
+
information such as status codes and headers. Typical, minimal
|
|
741
|
+
success response
|
|
742
|
+
|
|
743
|
+
Raises:
|
|
744
|
+
ApiException: When an error occurs while fetching the data from the
|
|
745
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
746
|
+
message, and the HTTP body that was received in the request.
|
|
747
|
+
|
|
748
|
+
"""
|
|
749
|
+
return super().new_api_call_builder.request(
|
|
750
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
751
|
+
.path("/chat.unfurl")
|
|
752
|
+
.http_method(HttpMethodEnum.POST)
|
|
753
|
+
.header_param(Parameter()
|
|
754
|
+
.key("token")
|
|
755
|
+
.value(token)
|
|
756
|
+
.is_required(True))
|
|
757
|
+
.form_param(Parameter()
|
|
758
|
+
.key("channel")
|
|
759
|
+
.value(channel)
|
|
760
|
+
.is_required(True))
|
|
761
|
+
.form_param(Parameter()
|
|
762
|
+
.key("ts")
|
|
763
|
+
.value(ts)
|
|
764
|
+
.is_required(True))
|
|
765
|
+
.form_param(Parameter()
|
|
766
|
+
.key("unfurls")
|
|
767
|
+
.value(unfurls))
|
|
768
|
+
.form_param(Parameter()
|
|
769
|
+
.key("user_auth_message")
|
|
770
|
+
.value(user_auth_message))
|
|
771
|
+
.form_param(Parameter()
|
|
772
|
+
.key("user_auth_required")
|
|
773
|
+
.value(user_auth_required))
|
|
774
|
+
.form_param(Parameter()
|
|
775
|
+
.key("user_auth_url")
|
|
776
|
+
.value(user_auth_url))
|
|
777
|
+
.header_param(Parameter()
|
|
778
|
+
.key("content-type")
|
|
779
|
+
.value("application/x-www-form-urlencoded"))
|
|
780
|
+
.header_param(Parameter()
|
|
781
|
+
.key("accept")
|
|
782
|
+
.value("application/json"))
|
|
783
|
+
.auth(Single("slackAuth")),
|
|
784
|
+
).response(
|
|
785
|
+
ResponseHandler()
|
|
786
|
+
.deserializer(APIHelper.json_deserialize)
|
|
787
|
+
.deserialize_into(ChatUnfurlSuccessSchema.from_dictionary)
|
|
788
|
+
.is_api_response(True)
|
|
789
|
+
.local_error("default",
|
|
790
|
+
"Typical error response",
|
|
791
|
+
ChatUnfurlErrorSchemaException),
|
|
792
|
+
).execute()
|
|
793
|
+
|
|
794
|
+
def chat_update(self,
|
|
795
|
+
token,
|
|
796
|
+
channel,
|
|
797
|
+
ts,
|
|
798
|
+
as_user=None,
|
|
799
|
+
attachments=None,
|
|
800
|
+
blocks=None,
|
|
801
|
+
link_names=None,
|
|
802
|
+
parse=None,
|
|
803
|
+
text=None):
|
|
804
|
+
"""Perform a POST request to /chat.update.
|
|
805
|
+
|
|
806
|
+
Updates a message.
|
|
807
|
+
|
|
808
|
+
Args:
|
|
809
|
+
token (str): Authentication token. Requires scope: `chat:write`
|
|
810
|
+
channel (str): Channel containing the message to be updated.
|
|
811
|
+
ts (str): Timestamp of the message to be updated.
|
|
812
|
+
as_user (str, optional): Pass true to update the message as the authed
|
|
813
|
+
user. [Bot users](/bot-users) in this context are considered authed
|
|
814
|
+
users.
|
|
815
|
+
attachments (str, optional): A JSON-based array of structured
|
|
816
|
+
attachments, presented as a URL-encoded string. This field is
|
|
817
|
+
required when not presenting `text`. If you don't include this field,
|
|
818
|
+
the message's previous `attachments` will be retained. To remove
|
|
819
|
+
previous `attachments`, include an empty array for this field.
|
|
820
|
+
blocks (str, optional): A JSON-based array of [structured
|
|
821
|
+
blocks](/block-kit/building), presented as a URL-encoded string. If
|
|
822
|
+
you don't include this field, the message's previous `blocks` will be
|
|
823
|
+
retained. To remove previous `blocks`, include an empty array for
|
|
824
|
+
this field.
|
|
825
|
+
link_names (str, optional): Find and link channel names and usernames.
|
|
826
|
+
Defaults to `none`. If you do not specify a value for this field, the
|
|
827
|
+
original value set for the message will be overwritten with the
|
|
828
|
+
default, `none`.
|
|
829
|
+
parse (str, optional): Change how messages are treated. Defaults to
|
|
830
|
+
`client`, unlike `chat.postMessage`. Accepts either `none` or `full`.
|
|
831
|
+
If you do not specify a value for this field, the original value set
|
|
832
|
+
for the message will be overwritten with the default, `client`.
|
|
833
|
+
text (str, optional): New text for the message, using the [default
|
|
834
|
+
formatting rules](/reference/surfaces/formatting). It's not required
|
|
835
|
+
when presenting `blocks` or `attachments`.
|
|
836
|
+
|
|
837
|
+
Returns:
|
|
838
|
+
ApiResponse: An object with the response value as well as other useful
|
|
839
|
+
information such as status codes and headers. Typical success response
|
|
840
|
+
|
|
841
|
+
Raises:
|
|
842
|
+
ApiException: When an error occurs while fetching the data from the
|
|
843
|
+
remote API. This exception includes the HTTP Response code, an error
|
|
844
|
+
message, and the HTTP body that was received in the request.
|
|
845
|
+
|
|
846
|
+
"""
|
|
847
|
+
return super().new_api_call_builder.request(
|
|
848
|
+
RequestBuilder().server(Server.DEFAULT)
|
|
849
|
+
.path("/chat.update")
|
|
850
|
+
.http_method(HttpMethodEnum.POST)
|
|
851
|
+
.header_param(Parameter()
|
|
852
|
+
.key("token")
|
|
853
|
+
.value(token)
|
|
854
|
+
.is_required(True))
|
|
855
|
+
.form_param(Parameter()
|
|
856
|
+
.key("channel")
|
|
857
|
+
.value(channel)
|
|
858
|
+
.is_required(True))
|
|
859
|
+
.form_param(Parameter()
|
|
860
|
+
.key("ts")
|
|
861
|
+
.value(ts)
|
|
862
|
+
.is_required(True))
|
|
863
|
+
.form_param(Parameter()
|
|
864
|
+
.key("as_user")
|
|
865
|
+
.value(as_user))
|
|
866
|
+
.form_param(Parameter()
|
|
867
|
+
.key("attachments")
|
|
868
|
+
.value(attachments))
|
|
869
|
+
.form_param(Parameter()
|
|
870
|
+
.key("blocks")
|
|
871
|
+
.value(blocks))
|
|
872
|
+
.form_param(Parameter()
|
|
873
|
+
.key("link_names")
|
|
874
|
+
.value(link_names))
|
|
875
|
+
.form_param(Parameter()
|
|
876
|
+
.key("parse")
|
|
877
|
+
.value(parse))
|
|
878
|
+
.form_param(Parameter()
|
|
879
|
+
.key("text")
|
|
880
|
+
.value(text))
|
|
881
|
+
.header_param(Parameter()
|
|
882
|
+
.key("content-type")
|
|
883
|
+
.value("application/x-www-form-urlencoded"))
|
|
884
|
+
.header_param(Parameter()
|
|
885
|
+
.key("accept")
|
|
886
|
+
.value("application/json"))
|
|
887
|
+
.auth(Single("slackAuth")),
|
|
888
|
+
).response(
|
|
889
|
+
ResponseHandler()
|
|
890
|
+
.deserializer(APIHelper.json_deserialize)
|
|
891
|
+
.deserialize_into(ChatUpdateSuccessSchema.from_dictionary)
|
|
892
|
+
.is_api_response(True)
|
|
893
|
+
.local_error("default",
|
|
894
|
+
"Typical error response",
|
|
895
|
+
ChatUpdateErrorSchemaException),
|
|
896
|
+
).execute()
|