Class: SunshineConversationsClient::ParticipantsApi
- Inherits:
-
Object
- Object
- SunshineConversationsClient::ParticipantsApi
- Defined in:
- lib/sunshine-conversations-client/api/participants_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#initialize(api_client = ApiClient.default) ⇒ ParticipantsApi
constructor
A new instance of ParticipantsApi.
-
#join_conversation(app_id, conversation_id, participant_join_body, opts = {}) ⇒ ParticipantResponse
Join Conversation Adds a user to a conversation using either their userId or userExternalId.
-
#join_conversation_with_http_info(app_id, conversation_id, participant_join_body, opts = {}) ⇒ Array<(ParticipantResponse, Integer, Hash)>
Join Conversation Adds a user to a conversation using either their userId or userExternalId.
-
#leave_conversation(app_id, conversation_id, participant_leave_body, opts = {}) ⇒ Object
Leave Conversation Removes a user from a conversation using either their userId, userExternalId, or participantId.
-
#leave_conversation_with_http_info(app_id, conversation_id, participant_leave_body, opts = {}) ⇒ Array<(Object, Integer, Hash)>
Leave Conversation Removes a user from a conversation using either their userId, userExternalId, or participantId.
-
#list_participants(app_id, conversation_id, opts = {}) ⇒ ParticipantListResponse
List Participants Lists all the participants of a particular conversation.
-
#list_participants_with_http_info(app_id, conversation_id, opts = {}) ⇒ Array<(ParticipantListResponse, Integer, Hash)>
List Participants Lists all the participants of a particular conversation.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ ParticipantsApi
Returns a new instance of ParticipantsApi.
16 17 18 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 16 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
14 15 16 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 14 def api_client @api_client end |
Instance Method Details
#join_conversation(app_id, conversation_id, participant_join_body, opts = {}) ⇒ ParticipantResponse
Join Conversation Adds a user to a conversation using either their userId or userExternalId. The endpoint only supports adding a participant to a sdkGroup conversation.
26 27 28 29 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 26 def join_conversation(app_id, conversation_id, participant_join_body, opts = {}) data, _status_code, _headers = join_conversation_with_http_info(app_id, conversation_id, participant_join_body, opts) data end |
#join_conversation_with_http_info(app_id, conversation_id, participant_join_body, opts = {}) ⇒ Array<(ParticipantResponse, Integer, Hash)>
Join Conversation Adds a user to a conversation using either their userId or userExternalId. The endpoint only supports adding a participant to a sdkGroup conversation.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 38 def join_conversation_with_http_info(app_id, conversation_id, participant_join_body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ParticipantsApi.join_conversation ...' end # verify the required parameter 'app_id' is set if @api_client.config.client_side_validation && app_id.nil? fail ArgumentError, "Missing the required parameter 'app_id' when calling ParticipantsApi.join_conversation" end # verify the required parameter 'conversation_id' is set if @api_client.config.client_side_validation && conversation_id.nil? fail ArgumentError, "Missing the required parameter 'conversation_id' when calling ParticipantsApi.join_conversation" end # verify the required parameter 'participant_join_body' is set if @api_client.config.client_side_validation && participant_join_body.nil? fail ArgumentError, "Missing the required parameter 'participant_join_body' when calling ParticipantsApi.join_conversation" end # resource path local_var_path = '/v2/apps/{appId}/conversations/{conversationId}/join'.sub('{' + 'appId' + '}', CGI.escape(app_id.to_s)).sub('{' + 'conversationId' + '}', CGI.escape(conversation_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(participant_join_body) # return_type return_type = opts[:return_type] || 'ParticipantResponse' # auth_names auth_names = opts[:auth_names] || ['basicAuth', 'bearerAuth'] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: ParticipantsApi#join_conversation\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#leave_conversation(app_id, conversation_id, participant_leave_body, opts = {}) ⇒ Object
Leave Conversation Removes a user from a conversation using either their userId, userExternalId, or participantId.
102 103 104 105 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 102 def leave_conversation(app_id, conversation_id, participant_leave_body, opts = {}) data, _status_code, _headers = leave_conversation_with_http_info(app_id, conversation_id, participant_leave_body, opts) data end |
#leave_conversation_with_http_info(app_id, conversation_id, participant_leave_body, opts = {}) ⇒ Array<(Object, Integer, Hash)>
Leave Conversation Removes a user from a conversation using either their userId, userExternalId, or participantId.
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 114 def leave_conversation_with_http_info(app_id, conversation_id, participant_leave_body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ParticipantsApi.leave_conversation ...' end # verify the required parameter 'app_id' is set if @api_client.config.client_side_validation && app_id.nil? fail ArgumentError, "Missing the required parameter 'app_id' when calling ParticipantsApi.leave_conversation" end # verify the required parameter 'conversation_id' is set if @api_client.config.client_side_validation && conversation_id.nil? fail ArgumentError, "Missing the required parameter 'conversation_id' when calling ParticipantsApi.leave_conversation" end # verify the required parameter 'participant_leave_body' is set if @api_client.config.client_side_validation && participant_leave_body.nil? fail ArgumentError, "Missing the required parameter 'participant_leave_body' when calling ParticipantsApi.leave_conversation" end # resource path local_var_path = '/v2/apps/{appId}/conversations/{conversationId}/leave'.sub('{' + 'appId' + '}', CGI.escape(app_id.to_s)).sub('{' + 'conversationId' + '}', CGI.escape(conversation_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(participant_leave_body) # return_type return_type = opts[:return_type] || 'Object' # auth_names auth_names = opts[:auth_names] || ['basicAuth', 'bearerAuth'] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: ParticipantsApi#leave_conversation\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_participants(app_id, conversation_id, opts = {}) ⇒ ParticipantListResponse
List Participants Lists all the participants of a particular conversation. This API is paginated through [cursor pagination](#section/Introduction/API-pagination-and-records-limits). “‘shell /v2/apps/:appId/conversations/:conversationId/participants?page=26508c10541a4b0ff472e5e2 “`
178 179 180 181 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 178 def list_participants(app_id, conversation_id, opts = {}) data, _status_code, _headers = list_participants_with_http_info(app_id, conversation_id, opts) data end |
#list_participants_with_http_info(app_id, conversation_id, opts = {}) ⇒ Array<(ParticipantListResponse, Integer, Hash)>
List Participants Lists all the participants of a particular conversation. This API is paginated through [cursor pagination](#section/Introduction/API-pagination-and-records-limits). ```shell /v2/apps/:appId/conversations/:conversationId/participants?page=26508c10541a4b0ff472e5e2 ```
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'lib/sunshine-conversations-client/api/participants_api.rb', line 190 def list_participants_with_http_info(app_id, conversation_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ParticipantsApi.list_participants ...' end # verify the required parameter 'app_id' is set if @api_client.config.client_side_validation && app_id.nil? fail ArgumentError, "Missing the required parameter 'app_id' when calling ParticipantsApi.list_participants" end # verify the required parameter 'conversation_id' is set if @api_client.config.client_side_validation && conversation_id.nil? fail ArgumentError, "Missing the required parameter 'conversation_id' when calling ParticipantsApi.list_participants" end # resource path local_var_path = '/v2/apps/{appId}/conversations/{conversationId}/participants'.sub('{' + 'appId' + '}', CGI.escape(app_id.to_s)).sub('{' + 'conversationId' + '}', CGI.escape(conversation_id.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'ParticipantListResponse' # auth_names auth_names = opts[:auth_names] || ['basicAuth', 'bearerAuth'] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: ParticipantsApi#list_participants\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |