Class: Verizon::BillingController
- Inherits:
-
BaseController
- Object
- BaseController
- Verizon::BillingController
- Defined in:
- lib/verizon/controllers/billing_controller.rb
Overview
BillingController
Constant Summary
Constants inherited from BaseController
Verizon::BaseController::GLOBAL_ERRORS
Instance Attribute Summary
Attributes inherited from BaseController
Instance Method Summary collapse
-
#add_account(body) ⇒ ManagedAccountsAddResponse
This endpoint allows user to add managed accounts to a primary account.
-
#cancel_managed_account_action(body) ⇒ ManagedAccountCancelResponse
Deactivates a managed billing service relationship between a managed account and the primary account.
-
#list_managed_account(account_name, service_name) ⇒ ManagedAccountsGetAllResponse
This endpoint allows user to retrieve the list of all accounts managed by a primary account.
-
#managed_account_action(body) ⇒ ManagedAccountsProvisionResponse
Activates a managed billing service relationship between a managed account and the primary account.
Methods inherited from BaseController
#initialize, #new_api_call_builder, #new_parameter, #new_request_builder, #new_response_handler, user_agent
Constructor Details
This class inherits a constructor from Verizon::BaseController
Instance Method Details
#add_account(body) ⇒ ManagedAccountsAddResponse
This endpoint allows user to add managed accounts to a primary account. and list of accounts to add
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/verizon/controllers/billing_controller.rb', line 13 def add_account(body) new_api_call_builder .request(new_request_builder(HttpMethodEnum::POST, '/managedaccounts/actions/add', Server::SUBSCRIPTION_SERVER) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(Single.new('oAuth2'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(ManagedAccountsAddResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Unexpected error', DeviceLocationResultException)) .execute end |
#cancel_managed_account_action(body) ⇒ ManagedAccountCancelResponse
Deactivates a managed billing service relationship between a managed account and the primary account. and list of accounts to add
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/verizon/controllers/billing_controller.rb', line 63 def cancel_managed_account_action(body) new_api_call_builder .request(new_request_builder(HttpMethodEnum::POST, '/managedaccounts/actions/cancel', Server::SUBSCRIPTION_SERVER) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(Single.new('oAuth2'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(ManagedAccountCancelResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Unexpected error', DeviceLocationResultException)) .execute end |
#list_managed_account(account_name, service_name) ⇒ ManagedAccountsGetAllResponse
This endpoint allows user to retrieve the list of all accounts managed by a primary account. identifier
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/verizon/controllers/billing_controller.rb', line 89 def list_managed_account(account_name, service_name) new_api_call_builder .request(new_request_builder(HttpMethodEnum::GET, '/managedaccounts/{accountName}/service/{serviceName}', Server::SUBSCRIPTION_SERVER) .template_param(new_parameter(account_name, key: 'accountName') .should_encode(true)) .template_param(new_parameter(service_name, key: 'serviceName') .should_encode(true)) .header_param(new_parameter('application/json', key: 'accept')) .auth(Single.new('oAuth2'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(ManagedAccountsGetAllResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Unexpected error', DeviceLocationResultException)) .execute end |
#managed_account_action(body) ⇒ ManagedAccountsProvisionResponse
Activates a managed billing service relationship between a managed account and the primary account. name and list of accounts to add
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/verizon/controllers/billing_controller.rb', line 38 def managed_account_action(body) new_api_call_builder .request(new_request_builder(HttpMethodEnum::POST, '/managedaccounts/actions/provision', Server::SUBSCRIPTION_SERVER) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end) .auth(Single.new('oAuth2'))) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(ManagedAccountsProvisionResponse.method(:from_hash)) .is_api_response(true) .local_error('400', 'Unexpected error', DeviceLocationResultException)) .execute end |