idx int64 0 165k | question stringlengths 73 4.15k | target stringlengths 5 918 | len_question int64 21 890 | len_target int64 3 255 |
|---|---|---|---|---|
13,200 | public OvhTask packName_emailPro_services_POST ( String packName , String email , String password ) throws IOException { String qPath = "/pack/xdsl/{packName}/emailPro/services" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "email" , email ) ; addBody ( o , "password" , password ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Activate an Email Pro service | 144 | 6 |
13,201 | public OvhVoIPLineOrder packName_voipLine_services_POST ( String packName , String [ ] hardwareNames , String mondialRelayId , String shippingId ) throws IOException { String qPath = "/pack/xdsl/{packName}/voipLine/services" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "hardwareNames" , hardwareNames ) ; addBody ( o , "mondialRelayId" , mondialRelayId ) ; addBody ( o , "shippingId" , shippingId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhVoIPLineOrder . class ) ; } | Activate a voip line service | 191 | 7 |
13,202 | public ArrayList < OvhShippingAddress > packName_voipLine_options_shippingAddresses_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/voipLine/options/shippingAddresses" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; } | Get available shipping addresses | 108 | 4 |
13,203 | public ArrayList < OvhVoIPHardware > packName_voipLine_options_hardwares_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/voipLine/options/hardwares" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t5 ) ; } | Get available hardwares | 107 | 5 |
13,204 | public Long packName_voipLine_options_customShippingAddress_POST ( String packName , String address , String cityName , String firstName , String lastName , String zipCode ) throws IOException { String qPath = "/pack/xdsl/{packName}/voipLine/options/customShippingAddress" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "address" , address ) ; addBody ( o , "cityName" , cityName ) ; addBody ( o , "firstName" , firstName ) ; addBody ( o , "lastName" , lastName ) ; addBody ( o , "zipCode" , zipCode ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , Long . class ) ; } | Create a new shippingId to be used for voipLine service creation | 207 | 14 |
13,205 | public OvhAsyncTask < OvhEligibility > packName_addressMove_eligibility_POST ( String packName , OvhAddress address , String lineNumber ) throws IOException { String qPath = "/pack/xdsl/{packName}/addressMove/eligibility" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "address" , address ) ; addBody ( o , "lineNumber" , lineNumber ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t6 ) ; } | Eligibility to move the access | 158 | 7 |
13,206 | public OvhAsyncTask < Long > packName_addressMove_move_POST ( String packName , OvhCreation creation , Boolean keepCurrentNumber , OvhLandline landline , Date moveOutDate , String offerCode , OvhProviderEnum provider ) throws IOException { String qPath = "/pack/xdsl/{packName}/addressMove/move" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "creation" , creation ) ; addBody ( o , "keepCurrentNumber" , keepCurrentNumber ) ; addBody ( o , "landline" , landline ) ; addBody ( o , "moveOutDate" , moveOutDate ) ; addBody ( o , "offerCode" , offerCode ) ; addBody ( o , "provider" , provider ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t7 ) ; } | Move the access to another address | 234 | 6 |
13,207 | public ArrayList < OvhSiteBuilderDomain > packName_siteBuilderStart_options_domains_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/siteBuilderStart/options/domains" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t9 ) ; } | Get the available domains | 105 | 4 |
13,208 | public ArrayList < OvhSiteBuilderTemplate > packName_siteBuilderFull_options_templates_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/siteBuilderFull/options/templates" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t8 ) ; } | Get the available templates | 105 | 4 |
13,209 | public OvhTask packName_siteBuilderFull_services_POST ( String packName , String domain , String subdomain , Long templateId ) throws IOException { String qPath = "/pack/xdsl/{packName}/siteBuilderFull/services" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "domain" , domain ) ; addBody ( o , "subdomain" , subdomain ) ; addBody ( o , "templateId" , templateId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Activate a sitebuilder full service | 167 | 7 |
13,210 | public OvhResiliationFollowUpDetail packName_resiliate_POST ( String packName , Date resiliationDate , OvhResiliationSurvey resiliationSurvey , Double [ ] servicesToKeep ) throws IOException { String qPath = "/pack/xdsl/{packName}/resiliate" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "resiliationDate" , resiliationDate ) ; addBody ( o , "resiliationSurvey" , resiliationSurvey ) ; addBody ( o , "servicesToKeep" , servicesToKeep ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhResiliationFollowUpDetail . class ) ; } | Resiliate the pack | 193 | 4 |
13,211 | public Boolean packName_exchangeLite_options_isEmailAvailable_GET ( String packName , String email ) throws IOException { String qPath = "/pack/xdsl/{packName}/exchangeLite/options/isEmailAvailable" ; StringBuilder sb = path ( qPath , packName ) ; query ( sb , "email" , email ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , Boolean . class ) ; } | Check if the email address is available for service creation | 117 | 10 |
13,212 | public OvhTask packName_exchangeLite_services_POST ( String packName , Boolean antispam , String displayName , String email , String firstName , String initials , String lastName , String password ) throws IOException { String qPath = "/pack/xdsl/{packName}/exchangeLite/services" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "antispam" , antispam ) ; addBody ( o , "displayName" , displayName ) ; addBody ( o , "email" , email ) ; addBody ( o , "firstName" , firstName ) ; addBody ( o , "initials" , initials ) ; addBody ( o , "lastName" , lastName ) ; addBody ( o , "password" , password ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Activate a exchange lite service | 239 | 7 |
13,213 | public OvhUnpackTerms packName_subServices_domain_keepServiceTerms_GET ( String packName , String domain ) throws IOException { String qPath = "/pack/xdsl/{packName}/subServices/{domain}/keepServiceTerms" ; StringBuilder sb = path ( qPath , packName , domain ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhUnpackTerms . class ) ; } | Give the condition to unpack service from pack | 117 | 9 |
13,214 | public ArrayList < Long > packName_tasks_GET ( String packName , String function , OvhTaskStatusEnum status ) throws IOException { String qPath = "/pack/xdsl/{packName}/tasks" ; StringBuilder sb = path ( qPath , packName ) ; query ( sb , "function" , function ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t3 ) ; } | Tasks scheduled for this pack | 124 | 6 |
13,215 | public OvhCapabilities packName_promotionCode_capabilities_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/promotionCode/capabilities" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhCapabilities . class ) ; } | Get informations about the promotion code generation | 100 | 8 |
13,216 | public OvhTask packName_promotionCode_generate_POST ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/promotionCode/generate" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; } | Creates a task to generate a new promotion code | 98 | 10 |
13,217 | public OvhTask packName_migration_migrate_POST ( String packName , Boolean acceptContracts , String buildingReference , Long engageMonths , String floor , Long mondialRelayId , String nicShipping , String offerName , OvhOfferOption [ ] options , Boolean otp , String otpReference , String stair , OvhOfferServiceToDelete [ ] subServicesToDelete ) throws IOException { String qPath = "/pack/xdsl/{packName}/migration/migrate" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "acceptContracts" , acceptContracts ) ; addBody ( o , "buildingReference" , buildingReference ) ; addBody ( o , "engageMonths" , engageMonths ) ; addBody ( o , "floor" , floor ) ; addBody ( o , "mondialRelayId" , mondialRelayId ) ; addBody ( o , "nicShipping" , nicShipping ) ; addBody ( o , "offerName" , offerName ) ; addBody ( o , "options" , options ) ; addBody ( o , "otp" , otp ) ; addBody ( o , "otpReference" , otpReference ) ; addBody ( o , "stair" , stair ) ; addBody ( o , "subServicesToDelete" , subServicesToDelete ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Migrate to the selected offer | 365 | 6 |
13,218 | public ArrayList < OvhSubServiceToDelete > packName_migration_servicesToDelete_POST ( String packName , String offerName , OvhOfferOption [ ] options ) throws IOException { String qPath = "/pack/xdsl/{packName}/migration/servicesToDelete" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "offerName" , offerName ) ; addBody ( o , "options" , options ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t10 ) ; } | Calculate services to delete with new offer and options | 161 | 11 |
13,219 | public OvhAsyncTask < OvhMigrationOfferResponse > packName_migration_offers_POST ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/migration/offers" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , null ) ; return convertTo ( resp , t11 ) ; } | Get the possibilities of migration offers available | 103 | 7 |
13,220 | public void packName_cancelResiliation_POST ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/cancelResiliation" ; StringBuilder sb = path ( qPath , packName ) ; exec ( qPath , "POST" , sb . toString ( ) , null ) ; } | Cancel the ongoing resiliation | 76 | 6 |
13,221 | public ArrayList < OvhShippingAddress > packName_shippingAddresses_GET ( String packName , OvhShippingAddressContextEnum context ) throws IOException { String qPath = "/pack/xdsl/{packName}/shippingAddresses" ; StringBuilder sb = path ( qPath , packName ) ; query ( sb , "context" , context ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; } | Allowed shipping addresses given a context | 117 | 7 |
13,222 | public OvhAsyncTask < OvhHubicDetailsResponse > packName_hubic_services_domain_details_GET ( String packName , String domain ) throws IOException { String qPath = "/pack/xdsl/{packName}/hubic/services/{domain}/details" ; StringBuilder sb = path ( qPath , packName , domain ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t12 ) ; } | Details associated to a voucher | 115 | 5 |
13,223 | public OvhPortabilityDocument billingAccount_portability_id_document_POST ( String billingAccount , Long id , String description , String name ) throws IOException { String qPath = "/telephony/{billingAccount}/portability/{id}/document" ; StringBuilder sb = path ( qPath , billingAccount , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "description" , description ) ; addBody ( o , "name" , name ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhPortabilityDocument . class ) ; } | Create a portability document | 158 | 5 |
13,224 | public void billingAccount_portability_id_relaunch_POST ( String billingAccount , Long id , OvhSafeKeyValue < String > [ ] parameters ) throws IOException { String qPath = "/telephony/{billingAccount}/portability/{id}/relaunch" ; StringBuilder sb = path ( qPath , billingAccount , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "parameters" , parameters ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Fix error and relaunch portability | 133 | 7 |
13,225 | public OvhPortabilityFixErrorPossibleParameters billingAccount_portability_id_relaunch_GET ( String billingAccount , Long id ) throws IOException { String qPath = "/telephony/{billingAccount}/portability/{id}/relaunch" ; StringBuilder sb = path ( qPath , billingAccount , id ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPortabilityFixErrorPossibleParameters . class ) ; } | Indicates whether or not error can be fixed and portability can be relaunched | 118 | 17 |
13,226 | public void billingAccount_portability_id_cancel_POST ( String billingAccount , Long id , String reason ) throws IOException { String qPath = "/telephony/{billingAccount}/portability/{id}/cancel" ; StringBuilder sb = path ( qPath , billingAccount , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "reason" , reason ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Ask to cancel the portability | 123 | 6 |
13,227 | public void billingAccount_portability_id_changeDate_POST ( String billingAccount , Long id , Date date ) throws IOException { String qPath = "/telephony/{billingAccount}/portability/{id}/changeDate" ; StringBuilder sb = path ( qPath , billingAccount , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "date" , date ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Ask to change the portability date | 123 | 7 |
13,228 | public ArrayList < OvhPortabilityStep > billingAccount_portability_id_status_GET ( String billingAccount , Long id ) throws IOException { String qPath = "/telephony/{billingAccount}/portability/{id}/status" ; StringBuilder sb = path ( qPath , billingAccount , id ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t3 ) ; } | Indicates the current status of the portability with a list of steps | 107 | 14 |
13,229 | public Boolean billingAccount_canTransferSecurityDeposit_POST ( String billingAccount , String billingAccountDestination ) throws IOException { String qPath = "/telephony/{billingAccount}/canTransferSecurityDeposit" ; StringBuilder sb = path ( qPath , billingAccount ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "billingAccountDestination" , billingAccountDestination ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , Boolean . class ) ; } | Check if security deposit transfer is possible between two billing accounts | 136 | 11 |
13,230 | public ArrayList < String > billingAccount_scheduler_serviceName_events_GET ( String billingAccount , String serviceName , OvhSchedulerCategoryEnum categories , Date dateEnd_from , Date dateEnd_to , Date dateStart_from , Date dateStart_to ) throws IOException { String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "categories" , categories ) ; query ( sb , "dateEnd.from" , dateEnd_from ) ; query ( sb , "dateEnd.to" , dateEnd_to ) ; query ( sb , "dateStart.from" , dateStart_from ) ; query ( sb , "dateStart.to" , dateStart_to ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; } | Custom events scheduled | 228 | 3 |
13,231 | public void billingAccount_scheduler_serviceName_events_POST ( String billingAccount , String serviceName , OvhSchedulerCategoryEnum category , Date dateEnd , Date dateStart , String description , String title , String uid ) throws IOException { String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "category" , category ) ; addBody ( o , "dateEnd" , dateEnd ) ; addBody ( o , "dateStart" , dateStart ) ; addBody ( o , "description" , description ) ; addBody ( o , "title" , title ) ; addBody ( o , "uid" , uid ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Add a scheduler event | 217 | 5 |
13,232 | public void billingAccount_scheduler_serviceName_events_uid_DELETE ( String billingAccount , String serviceName , String uid ) throws IOException { String qPath = "/telephony/{billingAccount}/scheduler/{serviceName}/events/{uid}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , uid ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given scheduler event | 108 | 6 |
13,233 | public OvhPcsFile billingAccount_historyConsumption_date_file_GET ( String billingAccount , java . util . Date date , OvhBillDocument extension ) throws IOException { String qPath = "/telephony/{billingAccount}/historyConsumption/{date}/file" ; StringBuilder sb = path ( qPath , billingAccount , date ) ; query ( sb , "extension" , extension ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhPcsFile . class ) ; } | Previous billed consumption files | 133 | 4 |
13,234 | public void billingAccount_cancelTermination_POST ( String billingAccount ) throws IOException { String qPath = "/telephony/{billingAccount}/cancelTermination" ; StringBuilder sb = path ( qPath , billingAccount ) ; exec ( qPath , "POST" , sb . toString ( ) , null ) ; } | Cancel the billing account termination | 75 | 6 |
13,235 | public ArrayList < OvhLinePhoneAssociable > billingAccount_line_serviceName_listAssociablePhones_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/listAssociablePhones" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t6 ) ; } | List phones with available slots where this line can be attached | 119 | 11 |
13,236 | public OvhTrafficExtract billingAccount_line_serviceName_trafficExtracts_POST ( String billingAccount , String serviceName , Date dateEnd , Date dateStart ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/trafficExtracts" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "dateEnd" , dateEnd ) ; addBody ( o , "dateStart" , dateStart ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTrafficExtract . class ) ; } | Launch a traffic extract on your line | 176 | 7 |
13,237 | public void billingAccount_line_serviceName_click2CallUser_id_changePassword_POST ( String billingAccount , String serviceName , Long id , String password ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/click2CallUser/{id}/changePassword" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "password" , password ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Change the password of the click2call user | 146 | 9 |
13,238 | public OvhRmaReturn billingAccount_line_serviceName_phone_rma_POST ( String billingAccount , String serviceName , String mondialRelayId , String newMerchandise , Long shippingContactId , OvhRmaPublicTypeEnum type ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/rma" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "mondialRelayId" , mondialRelayId ) ; addBody ( o , "newMerchandise" , newMerchandise ) ; addBody ( o , "shippingContactId" , shippingContactId ) ; addBody ( o , "type" , type ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhRmaReturn . class ) ; } | Create a specific rma | 233 | 5 |
13,239 | public ArrayList < String > billingAccount_line_serviceName_phone_functionKey_keyNum_availableFunction_GET ( String billingAccount , String serviceName , Long keyNum ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/functionKey/{keyNum}/availableFunction" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , keyNum ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; } | List the available functions for the key | 132 | 7 |
13,240 | public ArrayList < OvhHardwareOffer > billingAccount_line_serviceName_phone_merchandiseAvailable_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/merchandiseAvailable" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t7 ) ; } | List of available exchange merchandise brand | 119 | 6 |
13,241 | public void billingAccount_line_serviceName_phone_changePhoneConfiguration_POST ( String billingAccount , String serviceName , Boolean autoReboot , OvhSafeKeyValue < String > [ ] newConfigurations ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/changePhoneConfiguration" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "autoReboot" , autoReboot ) ; addBody ( o , "newConfigurations" , newConfigurations ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Edit configuration of the phone remotely by provisioning | 167 | 9 |
13,242 | public OvhResetPhoneInfo billingAccount_line_serviceName_phone_resetConfig_POST ( String billingAccount , String serviceName , String ip ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/phone/resetConfig" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "ip" , ip ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhResetPhoneInfo . class ) ; } | Reinitialize the phone configuration | 153 | 6 |
13,243 | public ArrayList < OvhLinePhone > billingAccount_line_serviceName_phoneCanBeAssociable_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/phoneCanBeAssociable" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t8 ) ; } | List the phones with Sip slot available | 118 | 8 |
13,244 | public void billingAccount_line_serviceName_antihack_POST ( String billingAccount , String serviceName , OvhAntihackActionEnum action , String restricted ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/antihack" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "action" , action ) ; addBody ( o , "restricted" , restricted ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Clean the antihack or add it on active filter screen list | 149 | 12 |
13,245 | public ArrayList < OvhDatetimeAndIpvalue > billingAccount_line_serviceName_ips_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/ips" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t9 ) ; } | Listing of last ips registry | 112 | 7 |
13,246 | public String billingAccount_line_serviceName_automaticCall_POST ( String billingAccount , String serviceName , String bridgeNumberDialplan , String calledNumber , String callingNumber , OvhCallsGeneratorDialplanEnum dialplan , Boolean isAnonymous , String playbackAudioFileDialplan , Long timeout , String ttsTextDialplan ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/automaticCall" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "bridgeNumberDialplan" , bridgeNumberDialplan ) ; addBody ( o , "calledNumber" , calledNumber ) ; addBody ( o , "callingNumber" , callingNumber ) ; addBody ( o , "dialplan" , dialplan ) ; addBody ( o , "isAnonymous" , isAnonymous ) ; addBody ( o , "playbackAudioFileDialplan" , playbackAudioFileDialplan ) ; addBody ( o , "timeout" , timeout ) ; addBody ( o , "ttsTextDialplan" , ttsTextDialplan ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , String . class ) ; } | Make an automatic phone call . Return generated call identifier | 299 | 10 |
13,247 | public OvhTask billingAccount_line_serviceName_calls_id_eavesdrop_POST ( String billingAccount , String serviceName , Long id , String number ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/calls/{id}/eavesdrop" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , id ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "number" , number ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Eavesdrop on a call | 162 | 6 |
13,248 | public OvhUnitAndValues < OvhTimestampAndValue > billingAccount_line_serviceName_statistics_GET ( String billingAccount , String serviceName , OvhStatisticsTimeframeEnum timeframe , OvhLineStatisticsTypeEnum type ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/statistics" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "timeframe" , timeframe ) ; query ( sb , "type" , type ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t10 ) ; } | Get statistics of the current line | 158 | 6 |
13,249 | public void billingAccount_line_serviceName_removeSimultaneousLines_POST ( String billingAccount , String serviceName , Long quantityRemove ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/removeSimultaneousLines" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "quantityRemove" , quantityRemove ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Remove extra simultaneous lines | 137 | 4 |
13,250 | public void billingAccount_line_serviceName_dissociateDevice_POST ( String billingAccount , String serviceName , String ipAddress , String macAddress ) throws IOException { String qPath = "/telephony/{billingAccount}/line/{serviceName}/dissociateDevice" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "ipAddress" , ipAddress ) ; addBody ( o , "macAddress" , macAddress ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Dissociate a device from the current line with the device mac address | 150 | 14 |
13,251 | public void billingAccount_easyHunting_serviceName_sound_soundId_DELETE ( String billingAccount , String serviceName , Long soundId ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/sound/{soundId}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , soundId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given sound | 110 | 4 |
13,252 | public String billingAccount_easyHunting_serviceName_hunting_eventToken_POST ( String billingAccount , String serviceName , OvhTokenExpirationEnum expiration ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/eventToken" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "expiration" , expiration ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , String . class ) ; } | Create a new token | 156 | 4 |
13,253 | public void billingAccount_easyHunting_serviceName_hunting_agent_agentId_DELETE ( String billingAccount , String serviceName , Long agentId ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/agent/{agentId}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , agentId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given agent | 116 | 4 |
13,254 | public OvhOvhPabxHuntingQueue billingAccount_easyHunting_serviceName_hunting_queue_POST ( String billingAccount , String serviceName , OvhOvhPabxQueueActionEnum actionOnClosure , String actionOnClosureParam , OvhOvhPabxQueueActionEnum actionOnOverflow , String actionOnOverflowParam , Boolean askForRecordDisabling , String description , Long maxMember , Long maxWaitTime , Boolean record , OvhOvhPabxHuntingQueueRecordDisablingDigitEnum recordDisablingDigit , OvhOvhPabxHuntingQueueRecordDisablingLanguageEnum recordDisablingLanguage , Long soundOnHold , OvhOvhPabxHuntingQueueStrategyEnum strategy ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/hunting/queue" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "actionOnClosure" , actionOnClosure ) ; addBody ( o , "actionOnClosureParam" , actionOnClosureParam ) ; addBody ( o , "actionOnOverflow" , actionOnOverflow ) ; addBody ( o , "actionOnOverflowParam" , actionOnOverflowParam ) ; addBody ( o , "askForRecordDisabling" , askForRecordDisabling ) ; addBody ( o , "description" , description ) ; addBody ( o , "maxMember" , maxMember ) ; addBody ( o , "maxWaitTime" , maxWaitTime ) ; addBody ( o , "record" , record ) ; addBody ( o , "recordDisablingDigit" , recordDisablingDigit ) ; addBody ( o , "recordDisablingLanguage" , recordDisablingLanguage ) ; addBody ( o , "soundOnHold" , soundOnHold ) ; addBody ( o , "strategy" , strategy ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxHuntingQueue . class ) ; } | Create a new queue | 501 | 4 |
13,255 | public ArrayList < Long > billingAccount_easyHunting_serviceName_screenListConditions_conditions_GET ( String billingAccount , String serviceName , OvhOvhPabxDialplanExtensionConditionScreenListTypeEnum screenListType ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/screenListConditions/conditions" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "screenListType" , screenListType ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; } | Screen lists conditions checked when a call is received | 159 | 9 |
13,256 | public void billingAccount_easyHunting_serviceName_timeConditions_conditions_conditionId_DELETE ( String billingAccount , String serviceName , Long conditionId ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions/{conditionId}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , conditionId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given condition | 120 | 4 |
13,257 | public ArrayList < Long > billingAccount_easyHunting_serviceName_timeConditions_conditions_GET ( String billingAccount , String serviceName , OvhTimeConditionsPolicyEnum policy ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "policy" , policy ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; } | Time conditions checked when a call is received | 141 | 8 |
13,258 | public OvhEasyHuntingTimeConditions billingAccount_easyHunting_serviceName_timeConditions_conditions_POST ( String billingAccount , String serviceName , OvhTimeConditionsPolicyEnum policy , Date timeFrom , Date timeTo , OvhOvhPabxDialplanExtensionConditionTimeWeekDayEnum weekDay ) throws IOException { String qPath = "/telephony/{billingAccount}/easyHunting/{serviceName}/timeConditions/conditions" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "policy" , policy ) ; addBody ( o , "timeFrom" , timeFrom ) ; addBody ( o , "timeTo" , timeTo ) ; addBody ( o , "weekDay" , weekDay ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhEasyHuntingTimeConditions . class ) ; } | Create a new time condition | 243 | 5 |
13,259 | public void billingAccount_easyPabx_serviceName_hunting_agent_agentNumber_DELETE ( String billingAccount , String serviceName , String agentNumber ) throws IOException { String qPath = "/telephony/{billingAccount}/easyPabx/{serviceName}/hunting/agent/{agentNumber}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , agentNumber ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the agent | 118 | 3 |
13,260 | public OvhTask billingAccount_easyPabx_serviceName_hunting_tones_toneUpload_POST ( String billingAccount , String serviceName , String documentId , OvhTonesTypeEnum type , String url ) throws IOException { String qPath = "/telephony/{billingAccount}/easyPabx/{serviceName}/hunting/tones/toneUpload" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "documentId" , documentId ) ; addBody ( o , "type" , type ) ; addBody ( o , "url" , url ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Upload new tone file | 198 | 4 |
13,261 | public void billingAccount_DELETE ( String billingAccount , String details , OvhTerminationReasonEnum reason ) throws IOException { String qPath = "/telephony/{billingAccount}" ; StringBuilder sb = path ( qPath , billingAccount ) ; query ( sb , "details" , details ) ; query ( sb , "reason" , reason ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Ask for a billing account termination . | 104 | 7 |
13,262 | public void billingAccount_service_serviceName_changeOfBillingAccount_POST ( String billingAccount , String serviceName , String billingAccountDestination ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/changeOfBillingAccount" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "billingAccountDestination" , billingAccountDestination ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Move a service of billing account . Source and destination nics should be the same . | 141 | 17 |
13,263 | public ArrayList < Long > billingAccount_service_serviceName_previousVoiceConsumption_GET ( String billingAccount , String serviceName , Date creationDatetime_from , Date creationDatetime_to , OvhVoiceConsumptionDestinationTypeEnum destinationType , OvhVoiceConsumptionPlanTypeEnum planType , OvhVoiceConsumptionWayTypeEnum wayType ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/previousVoiceConsumption" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "creationDatetime.from" , creationDatetime_from ) ; query ( sb , "creationDatetime.to" , creationDatetime_to ) ; query ( sb , "destinationType" , destinationType ) ; query ( sb , "planType" , planType ) ; query ( sb , "wayType" , wayType ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; } | Call delivery records of the previous month . | 247 | 8 |
13,264 | public ArrayList < Long > billingAccount_service_serviceName_task_GET ( String billingAccount , String serviceName , String action , String serviceType , OvhTaskStatusEnum status ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/task" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "action" , action ) ; query ( sb , "serviceType" , serviceType ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; } | Operations on a telephony service | 158 | 7 |
13,265 | public OvhEntrepriseNumberInformationsTask billingAccount_service_serviceName_directory_fetchEntrepriseInformations_POST ( String billingAccount , String serviceName , String entrepriseNumber ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/directory/fetchEntrepriseInformations" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "entrepriseNumber" , entrepriseNumber ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhEntrepriseNumberInformationsTask . class ) ; } | Get company entreprise informations by providing entreprise number | 182 | 13 |
13,266 | public ArrayList < OvhDirectoryWayType > billingAccount_service_serviceName_directory_getWayTypes_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/directory/getWayTypes" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t14 ) ; } | Get all the way types availables | 117 | 7 |
13,267 | public ArrayList < OvhLineOffer > billingAccount_service_serviceName_offerChanges_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/offerChanges" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t15 ) ; } | List all available offer changes compatibilities | 111 | 7 |
13,268 | public ArrayList < Long > billingAccount_service_serviceName_repaymentConsumption_GET ( String billingAccount , String serviceName , Date creationDatetime_from , Date creationDatetime_to ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/repaymentConsumption" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; query ( sb , "creationDatetime.from" , creationDatetime_from ) ; query ( sb , "creationDatetime.to" , creationDatetime_to ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; } | Call which could be repayable | 167 | 6 |
13,269 | public void billingAccount_service_serviceName_offerChange_POST ( String billingAccount , String serviceName , String offer ) throws IOException { String qPath = "/telephony/{billingAccount}/service/{serviceName}/offerChange" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "offer" , offer ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Add a new offer change | 125 | 5 |
13,270 | public OvhFaxCampaign billingAccount_fax_serviceName_campaigns_POST ( String billingAccount , String serviceName , String documentId , OvhFaxQualityEnum faxQuality , String name , String recipientsDocId , String [ ] recipientsList , OvhFaxCampaignRecipientsTypeEnum recipientsType , Date sendDate , OvhFaxCampaignSendTypeEnum sendType ) throws IOException { String qPath = "/telephony/{billingAccount}/fax/{serviceName}/campaigns" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "documentId" , documentId ) ; addBody ( o , "faxQuality" , faxQuality ) ; addBody ( o , "name" , name ) ; addBody ( o , "recipientsDocId" , recipientsDocId ) ; addBody ( o , "recipientsList" , recipientsList ) ; addBody ( o , "recipientsType" , recipientsType ) ; addBody ( o , "sendDate" , sendDate ) ; addBody ( o , "sendType" , sendType ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhFaxCampaign . class ) ; } | Create a new fax campaign | 303 | 5 |
13,271 | public OvhFaxCampaignDetail billingAccount_fax_serviceName_campaigns_id_detail_GET ( String billingAccount , String serviceName , Long id ) throws IOException { String qPath = "/telephony/{billingAccount}/fax/{serviceName}/campaigns/{id}/detail" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , id ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhFaxCampaignDetail . class ) ; } | Detail of the fax recipients by status | 129 | 8 |
13,272 | public OvhTask billingAccount_fax_serviceName_settings_sendFax_POST ( String billingAccount , String serviceName , Date dateSchedule , String pdfUrl , String [ ] recipients ) throws IOException { String qPath = "/telephony/{billingAccount}/fax/{serviceName}/settings/sendFax" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "dateSchedule" , dateSchedule ) ; addBody ( o , "pdfUrl" , pdfUrl ) ; addBody ( o , "recipients" , recipients ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Send a fax | 190 | 3 |
13,273 | public OvhFaxScreen billingAccount_fax_serviceName_screenLists_POST ( String billingAccount , String serviceName , String [ ] blacklistedNumbers , String [ ] blacklistedTSI , OvhFaxScreenListTypeEnum filteringList , String [ ] whitelistedNumbers , String [ ] whitelistedTSI ) throws IOException { String qPath = "/telephony/{billingAccount}/fax/{serviceName}/screenLists" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "blacklistedNumbers" , blacklistedNumbers ) ; addBody ( o , "blacklistedTSI" , blacklistedTSI ) ; addBody ( o , "filteringList" , filteringList ) ; addBody ( o , "whitelistedNumbers" , whitelistedNumbers ) ; addBody ( o , "whitelistedTSI" , whitelistedTSI ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhFaxScreen . class ) ; } | Create a new fax ScreenLists | 264 | 7 |
13,274 | public void billingAccount_fax_serviceName_screenLists_reset_POST ( String billingAccount , String serviceName , Boolean blacklistedNumbers , Boolean blacklistedTSI , Boolean whitelistedNumbers , Boolean whitelistedTSI ) throws IOException { String qPath = "/telephony/{billingAccount}/fax/{serviceName}/screenLists/reset" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "blacklistedNumbers" , blacklistedNumbers ) ; addBody ( o , "blacklistedTSI" , blacklistedTSI ) ; addBody ( o , "whitelistedNumbers" , whitelistedNumbers ) ; addBody ( o , "whitelistedTSI" , whitelistedTSI ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Reset a specifical fax screenList | 214 | 9 |
13,275 | public void billingAccount_abbreviatedNumber_abbreviatedNumber_DELETE ( String billingAccount , Long abbreviatedNumber ) throws IOException { String qPath = "/telephony/{billingAccount}/abbreviatedNumber/{abbreviatedNumber}" ; StringBuilder sb = path ( qPath , billingAccount , abbreviatedNumber ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given abbreviated number | 103 | 6 |
13,276 | public OvhAbbreviatedNumberGroup billingAccount_abbreviatedNumber_POST ( String billingAccount , Long abbreviatedNumber , String destinationNumber , String name , String surname ) throws IOException { String qPath = "/telephony/{billingAccount}/abbreviatedNumber" ; StringBuilder sb = path ( qPath , billingAccount ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "abbreviatedNumber" , abbreviatedNumber ) ; addBody ( o , "destinationNumber" , destinationNumber ) ; addBody ( o , "name" , name ) ; addBody ( o , "surname" , surname ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhAbbreviatedNumberGroup . class ) ; } | Create a new abbreviated number for the billing account | 199 | 10 |
13,277 | public ArrayList < Date > billingAccount_historyTollfreeConsumption_GET ( String billingAccount ) throws IOException { String qPath = "/telephony/{billingAccount}/historyTollfreeConsumption" ; StringBuilder sb = path ( qPath , billingAccount ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t5 ) ; } | Previous tollfree bill | 96 | 4 |
13,278 | public OvhConferenceWebAccess billingAccount_conference_serviceName_webAccess_POST ( String billingAccount , String serviceName , OvhConferenceWebAccessTypeEnum type ) throws IOException { String qPath = "/telephony/{billingAccount}/conference/{serviceName}/webAccess" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "type" , type ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhConferenceWebAccess . class ) ; } | Add a public web access to your conference | 157 | 8 |
13,279 | public ArrayList < OvhPhone > billingAccount_oldPhone_GET ( String billingAccount ) throws IOException { String qPath = "/telephony/{billingAccount}/oldPhone" ; StringBuilder sb = path ( qPath , billingAccount ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t16 ) ; } | List old phones archived as they were not returned after an RMA | 90 | 13 |
13,280 | public void billingAccount_billingAccountSite_POST ( String billingAccount , String billingAccountSite ) throws IOException { String qPath = "/telephony/{billingAccount}/billingAccountSite" ; StringBuilder sb = path ( qPath , billingAccount ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "billingAccountSite" , billingAccountSite ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Used to overwrite current billing account feature by the billing account site | 117 | 12 |
13,281 | public ArrayList < OvhPrice > billingAccount_allowedCreditThreshold_GET ( String billingAccount ) throws IOException { String qPath = "/telephony/{billingAccount}/allowedCreditThreshold" ; StringBuilder sb = path ( qPath , billingAccount ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t17 ) ; } | Get the allowed creditThreshold for this billing account | 94 | 10 |
13,282 | public void billingAccount_screen_serviceName_screenLists_POST ( String billingAccount , String serviceName , String callNumber , OvhScreenListNatureEnum nature , OvhScreenListTypeEnum type ) throws IOException { String qPath = "/telephony/{billingAccount}/screen/{serviceName}/screenLists" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "callNumber" , callNumber ) ; addBody ( o , "nature" , nature ) ; addBody ( o , "type" , type ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Create a new screen list rule | 172 | 6 |
13,283 | public OvhOfferTask billingAccount_number_serviceName_convertToLine_POST ( String billingAccount , String serviceName , String offer ) throws IOException { String qPath = "/telephony/{billingAccount}/number/{serviceName}/convertToLine" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "offer" , offer ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOfferTask . class ) ; } | Schedule a conversion to line | 151 | 6 |
13,284 | public OvhTask billingAccount_number_serviceName_changeFeatureType_POST ( String billingAccount , String serviceName , OvhTypeEnum featureType ) throws IOException { String qPath = "/telephony/{billingAccount}/number/{serviceName}/changeFeatureType" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "featureType" , featureType ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Change the feature type of the phone number | 152 | 8 |
13,285 | public OvhTimeCondition billingAccount_timeCondition_serviceName_condition_POST ( String billingAccount , String serviceName , OvhTimeConditionsDayEnum day , String hourBegin , String hourEnd , OvhTimeConditionsPolicyEnum policy ) throws IOException { String qPath = "/telephony/{billingAccount}/timeCondition/{serviceName}/condition" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "day" , day ) ; addBody ( o , "hourBegin" , hourBegin ) ; addBody ( o , "hourEnd" , hourEnd ) ; addBody ( o , "policy" , policy ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTimeCondition . class ) ; } | Create a new time condition rule | 210 | 6 |
13,286 | public void billingAccount_timeCondition_serviceName_condition_id_DELETE ( String billingAccount , String serviceName , Long id ) throws IOException { String qPath = "/telephony/{billingAccount}/timeCondition/{serviceName}/condition/{id}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , id ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given screen list | 104 | 5 |
13,287 | public OvhDetailedRateCodeInformation billingAccount_rsva_serviceName_scheduleRateCode_POST ( String billingAccount , String serviceName , String rateCode ) throws IOException { String qPath = "/telephony/{billingAccount}/rsva/{serviceName}/scheduleRateCode" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "rateCode" , rateCode ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhDetailedRateCodeInformation . class ) ; } | Schedule a new rate code for this sva | 158 | 10 |
13,288 | public ArrayList < OvhRateCodeInformation > billingAccount_rsva_serviceName_allowedRateCodes_GET ( String billingAccount , String serviceName ) throws IOException { String qPath = "/telephony/{billingAccount}/rsva/{serviceName}/allowedRateCodes" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t18 ) ; } | Compatible rate codes related to this value added service | 117 | 10 |
13,289 | public OvhOvhPabxCustomStatus billingAccount_ovhPabx_serviceName_hunting_customStatus_POST ( String billingAccount , String serviceName , String color , String description , String name ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/hunting/customStatus" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "color" , color ) ; addBody ( o , "description" , description ) ; addBody ( o , "name" , name ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxCustomStatus . class ) ; } | Create a new custom status | 201 | 5 |
13,290 | public OvhOvhPabxDialplanExtensionConditionTime billingAccount_ovhPabx_serviceName_dialplan_dialplanId_extension_extensionId_conditionTime_POST ( String billingAccount , String serviceName , Long dialplanId , Long extensionId , Date timeFrom , Date timeTo , OvhOvhPabxDialplanExtensionConditionTimeWeekDayEnum weekDay ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/dialplan/{dialplanId}/extension/{extensionId}/conditionTime" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , dialplanId , extensionId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "timeFrom" , timeFrom ) ; addBody ( o , "timeTo" , timeTo ) ; addBody ( o , "weekDay" , weekDay ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxDialplanExtensionConditionTime . class ) ; } | Create a new time condition for an extension | 277 | 8 |
13,291 | public OvhOvhPabxDialplanExtensionRule billingAccount_ovhPabx_serviceName_dialplan_dialplanId_extension_extensionId_rule_POST ( String billingAccount , String serviceName , Long dialplanId , Long extensionId , OvhOvhPabxDialplanExtensionRuleActionEnum action , String actionParam , Boolean negativeAction , Long position ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/dialplan/{dialplanId}/extension/{extensionId}/rule" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , dialplanId , extensionId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "action" , action ) ; addBody ( o , "actionParam" , actionParam ) ; addBody ( o , "negativeAction" , negativeAction ) ; addBody ( o , "position" , position ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxDialplanExtensionRule . class ) ; } | Create a new rule for an extension | 283 | 7 |
13,292 | public OvhOvhPabxDialplanExtension billingAccount_ovhPabx_serviceName_dialplan_dialplanId_extension_POST ( String billingAccount , String serviceName , Long dialplanId , Boolean enable , Long position , OvhSchedulerCategoryEnum schedulerCategory , OvhOvhPabxDialplanExtensionConditionScreenListTypeEnum screenListType ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/dialplan/{dialplanId}/extension" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , dialplanId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "enable" , enable ) ; addBody ( o , "position" , position ) ; addBody ( o , "schedulerCategory" , schedulerCategory ) ; addBody ( o , "screenListType" , screenListType ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxDialplanExtension . class ) ; } | Create a new extension for a dialplan | 276 | 8 |
13,293 | public void billingAccount_ovhPabx_serviceName_dialplan_dialplanId_DELETE ( String billingAccount , String serviceName , Long dialplanId ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/dialplan/{dialplanId}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , dialplanId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given dialplan | 120 | 5 |
13,294 | public OvhOvhPabxDialplan billingAccount_ovhPabx_serviceName_dialplan_POST ( String billingAccount , String serviceName , Boolean anonymousRejection , String name , OvhOvhPabxDialplanNumberPresentationEnum showCallerNumber , Long transferTimeout ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/dialplan" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "anonymousRejection" , anonymousRejection ) ; addBody ( o , "name" , name ) ; addBody ( o , "showCallerNumber" , showCallerNumber ) ; addBody ( o , "transferTimeout" , transferTimeout ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxDialplan . class ) ; } | Create a new dialplan | 243 | 5 |
13,295 | public OvhOvhPabxMenuEntry billingAccount_ovhPabx_serviceName_menu_menuId_entry_POST ( String billingAccount , String serviceName , Long menuId , OvhOvhPabxIvrMenuEntryActionEnum action , String actionParam , String dtmf , Long position ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/menu/{menuId}/entry" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , menuId ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "action" , action ) ; addBody ( o , "actionParam" , actionParam ) ; addBody ( o , "dtmf" , dtmf ) ; addBody ( o , "position" , position ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxMenuEntry . class ) ; } | Create a new menu entry | 250 | 5 |
13,296 | public void billingAccount_ovhPabx_serviceName_menu_menuId_entry_entryId_DELETE ( String billingAccount , String serviceName , Long menuId , Long entryId ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/menu/{menuId}/entry/{entryId}" ; StringBuilder sb = path ( qPath , billingAccount , serviceName , menuId , entryId ) ; exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; } | Delete the given menu entry | 133 | 5 |
13,297 | public OvhOvhPabxMenu billingAccount_ovhPabx_serviceName_menu_POST ( String billingAccount , String serviceName , Long greetSound , Long greetSoundTts , Long invalidSound , Long invalidSoundTts , String name ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/menu" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "greetSound" , greetSound ) ; addBody ( o , "greetSoundTts" , greetSoundTts ) ; addBody ( o , "invalidSound" , invalidSound ) ; addBody ( o , "invalidSoundTts" , invalidSoundTts ) ; addBody ( o , "name" , name ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhOvhPabxMenu . class ) ; } | Create a new menu | 249 | 4 |
13,298 | public void billingAccount_ovhPabx_serviceName_tts_POST ( String billingAccount , String serviceName , String text , OvhOvhPabxTtsVoiceEnum voice ) throws IOException { String qPath = "/telephony/{billingAccount}/ovhPabx/{serviceName}/tts" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "text" , text ) ; addBody ( o , "voice" , voice ) ; exec ( qPath , "POST" , sb . toString ( ) , o ) ; } | Create a new text to speech | 160 | 6 |
13,299 | public Long billingAccount_voicemail_serviceName_greetings_POST ( String billingAccount , String serviceName , OvhVoicemailMessageFolderGreetingEnum dir , String documentId ) throws IOException { String qPath = "/telephony/{billingAccount}/voicemail/{serviceName}/greetings" ; StringBuilder sb = path ( qPath , billingAccount , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "dir" , dir ) ; addBody ( o , "documentId" , documentId ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , Long . class ) ; } | Upload a new sound for a specific greeting . Return a task id . | 172 | 14 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.