module EbanqApi::ApiPaths
Forms endpoints
Constants
- ACCOUNT_API_PATH
- AUTH_API_PATH
- CARDS_API_PATH
- MESSAGES_API_PATH
- NEWS_API_PATH
- PROFILE_API_PATH
- REPORTS_API_PATH
- REQUESTS_API_PATH
- SETTINGS_API_PATH
- TEMPLATES_API_PATH
- TRANSACTIONS_API_PATH
Public Instance Methods
account_path(action = '')
click to toggle source
Return /api/v1/accounts path
# File lib/ebanq_api/api_paths.rb, line 31 def account_path(action = '') "#{ACCOUNT_API_PATH}/#{action}" end
auth_path(action = '')
click to toggle source
Return /api/v1/auth path
# File lib/ebanq_api/api_paths.rb, line 21 def auth_path(action = '') "#{AUTH_API_PATH}/#{action}" end
cards_path(action = '')
click to toggle source
Return /api/v1/cards path
# File lib/ebanq_api/api_paths.rb, line 46 def cards_path(action = '') "#{CARDS_API_PATH}/#{action}" end
messages_path(action = '')
click to toggle source
Return /api/v1/messages path
# File lib/ebanq_api/api_paths.rb, line 41 def messages_path(action = '') "#{MESSAGES_API_PATH}/#{action}" end
news_path(action = '')
click to toggle source
Return /api/v1/news path
# File lib/ebanq_api/api_paths.rb, line 36 def news_path(action = '') "#{NEWS_API_PATH}/#{action}" end
profile_path(action = '')
click to toggle source
Return /api/v1/profile path
# File lib/ebanq_api/api_paths.rb, line 26 def profile_path(action = '') "#{PROFILE_API_PATH}/#{action}" end
reports_path(action = '')
click to toggle source
Return /api/v1/reports path
# File lib/ebanq_api/api_paths.rb, line 56 def reports_path(action = '') "#{REPORTS_API_PATH}/#{action}" end
requests_path(action = '')
click to toggle source
Return /api/v1/requests path
# File lib/ebanq_api/api_paths.rb, line 51 def requests_path(action = '') "#{REQUESTS_API_PATH}/#{action}" end
settings_path(action = '')
click to toggle source
Return /api/v1/settings path
# File lib/ebanq_api/api_paths.rb, line 61 def settings_path(action = '') "#{SETTINGS_API_PATH}/#{action}" end
templates_path(action = '')
click to toggle source
Return /api/v1/templates path
# File lib/ebanq_api/api_paths.rb, line 66 def templates_path(action = '') "#{TEMPLATES_API_PATH}/#{action}" end
transactions_path(action = '')
click to toggle source
Return /api/v1/transactions path
# File lib/ebanq_api/api_paths.rb, line 71 def transactions_path(action = '') "#{TRANSACTIONS_API_PATH}/#{action}" end