class Sendbird::ApplicationApi

Constants

ENDPOINT

Public Class Methods

apns_push_configuration() click to toggle source
# File lib/sendbird/application_api.rb, line 52
def apns_push_configuration
  get(path: build_url('push', 'apns'))
end
ccu() click to toggle source
# File lib/sendbird/application_api.rb, line 32
def ccu
  get(path: build_url('ccu'))
end
create(body) click to toggle source
# File lib/sendbird/application_api.rb, line 7
def create(body)
  post_http_basic(path: build_url, body: body)
end
daily_message_count(params={}) click to toggle source
# File lib/sendbird/application_api.rb, line 44
def daily_message_count(params={})
  get(path: build_url('daily_count'), params: params)
end
dau(params={}) click to toggle source
# File lib/sendbird/application_api.rb, line 40
def dau(params={})
  get(path: build_url('dau'), params: params)
end
destroy() click to toggle source
# File lib/sendbird/application_api.rb, line 24
def destroy
  delete(path: build_url)
end
destroy_all() click to toggle source

Right now this endpoint is failing in there site def view

get(path: build_url)

end

# File lib/sendbird/application_api.rb, line 20
def destroy_all
  delete_http_basic(path: build_url)
end
gcm_push_configuration() click to toggle source
# File lib/sendbird/application_api.rb, line 48
def gcm_push_configuration
  get(path: build_url('push', 'gcm'))
end
list(params={}) click to toggle source
# File lib/sendbird/application_api.rb, line 11
def list(params={})
  get_http_basic(path: build_url, params: params)
end
mau(params={}) click to toggle source
# File lib/sendbird/application_api.rb, line 36
def mau(params={})
  get(path: build_url('mau'), params: params)
end
profanaty(body={}) click to toggle source
# File lib/sendbird/application_api.rb, line 28
def profanaty(body={})
  put(path: build_url('profanity'), body: body)
end