idx int64 0 165k | question stringlengths 73 5.81k | target stringlengths 5 918 |
|---|---|---|
13,200 | public OvhTask serviceName_changeVersion_POST ( String serviceName , OvhAvailableVersionEnum version ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/changeVersion" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "version" , version ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Change the private database engine version |
13,201 | public OvhTask serviceName_user_userName_grant_databaseName_update_POST ( String serviceName , String userName , String databaseName , OvhGrantEnum grant ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/user/{userName}/grant/{databaseName}/update" ; StringBuilder sb = path ( qPath , serviceName , userName , databaseName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "grant" , grant ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Update user grant |
13,202 | public ArrayList < String > serviceName_database_databaseName_extension_GET ( String serviceName , String databaseName , String extensionName , OvhStatus status ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/database/{databaseName}/extension" ; StringBuilder sb = path ( qPath , serviceName , databaseName ) ; query ( sb , "extensionName" , extensionName ) ; query ( sb , "status" , status ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; } | Extensions linked to your database |
13,203 | public ArrayList < Long > serviceName_dump_GET ( String serviceName , String databaseName , Boolean orphan ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/dump" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "databaseName" , databaseName ) ; query ( sb , "orphan" , orphan ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t3 ) ; } | Dumps available for your private database service |
13,204 | public OvhTask serviceName_dump_dumpId_DELETE ( String serviceName , Long dumpId ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/dump/{dumpId}" ; StringBuilder sb = path ( qPath , serviceName , dumpId ) ; String resp = exec ( qPath , "DELETE" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhTask . class ) ; } | Delete dump before expiration date |
13,205 | public OvhConfiguration serviceName_config_update_POST ( String serviceName , OvhSafeKeyValue < String > [ ] parameters ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/config/update" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "parameters" , parameters ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhConfiguration . class ) ; } | Update the configuration |
13,206 | public ArrayList < String > serviceName_whitelist_GET ( String serviceName , String ip , Boolean service , Boolean sftp ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/whitelist" ; StringBuilder sb = path ( qPath , serviceName ) ; query ( sb , "ip" , ip ) ; query ( sb , "service" , service ) ; query ( sb , "sftp" , sftp ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; } | Whitelist allowed on your privatesql |
13,207 | public OvhTask serviceName_whitelist_POST ( String serviceName , String ip , String name , Boolean service , Boolean sftp ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/whitelist" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "ip" , ip ) ; addBody ( o , "name" , name ) ; addBody ( o , "service" , service ) ; addBody ( o , "sftp" , sftp ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Create a new IP whitelist |
13,208 | public ArrayList < OvhAvailableVersionEnum > serviceName_availableVersions_GET ( String serviceName ) throws IOException { String qPath = "/hosting/privateDatabase/{serviceName}/availableVersions" ; StringBuilder sb = path ( qPath , serviceName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t4 ) ; } | Get the availables versions for this private database |
13,209 | public OvhAvailableOrderCapacities availableOrderCapacities_GET ( OvhOfferEnum offer ) throws IOException { String qPath = "/hosting/privateDatabase/availableOrderCapacities" ; StringBuilder sb = path ( qPath ) ; query ( sb , "offer" , offer ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhAvailableOrderCapacities . class ) ; } | Get available order capacitie |
13,210 | public ArrayList < OvhDirectAdminOrderConfiguration > orderableVersions_GET ( String ip ) throws IOException { String qPath = "/license/directadmin/orderableVersions" ; StringBuilder sb = path ( qPath ) ; query ( sb , "ip" , ip ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t1 ) ; } | Get the orderable DirectAdmin versions |
13,211 | public String serviceName_confirmTermination_POST ( String serviceName , String commentary , OvhTerminationFutureUseEnum futureUse , OvhTerminationReasonEnum reason , String token ) throws IOException { String qPath = "/license/directadmin/{serviceName}/confirmTermination" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "commentary" , commentary ) ; addBody ( o , "futureUse" , futureUse ) ; addBody ( o , "reason" , reason ) ; addBody ( o , "token" , token ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , String . class ) ; } | Confirm termination of your service |
13,212 | public OvhTask serviceName_changeOs_POST ( String serviceName , OvhDirectAdminOsEnum os ) throws IOException { String qPath = "/license/directadmin/{serviceName}/changeOs" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "os" , os ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Change the Operating System for a license |
13,213 | public OvhAsyncTaskArray < OvhBuilding > eligibility_search_buildings_POST ( String streetCode , String streetNumber ) throws IOException { String qPath = "/connectivity/eligibility/search/buildings" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "streetCode" , streetCode ) ; addBody ( o , "streetNumber" , streetNumber ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t1 ) ; } | Get all buildings for a specific address |
13,214 | public OvhAsyncTaskArray < OvhLine > eligibility_search_lines_POST ( String ownerName , String streetCode , String streetNumber ) throws IOException { String qPath = "/connectivity/eligibility/search/lines" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "ownerName" , ownerName ) ; addBody ( o , "streetCode" , streetCode ) ; addBody ( o , "streetNumber" , streetNumber ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t2 ) ; } | Search for active and inactive lines at an address . It will search for active lines only if the owner name is specified |
13,215 | public OvhAsyncTaskArray < OvhCity > eligibility_search_cities_POST ( String zipCode ) throws IOException { String qPath = "/connectivity/eligibility/search/cities" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "zipCode" , zipCode ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t4 ) ; } | Get all localities linked to a zip code |
13,216 | public OvhAsyncTask < OvhBuilding > eligibility_search_buildingDetails_POST ( String building ) throws IOException { String qPath = "/connectivity/eligibility/search/buildingDetails" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "building" , building ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t5 ) ; } | Get the details for a building |
13,217 | public OvhAsyncTask < OvhMeetings > eligibility_search_meetings_POST ( String eligibilityReference , String productCode ) throws IOException { String qPath = "/connectivity/eligibility/search/meetings" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "eligibilityReference" , eligibilityReference ) ; addBody ( o , "productCode" , productCode ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t6 ) ; } | Search for available line creation meeting time slots for copper only |
13,218 | public OvhAsyncTaskArray < OvhBuilding > eligibility_search_buildingsByLine_POST ( String lineNumber , OvhLineStatusEnum status ) throws IOException { String qPath = "/connectivity/eligibility/search/buildingsByLine" ; StringBuilder sb = path ( qPath ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "lineNumber" , lineNumber ) ; addBody ( o , "status" , status ) ; String resp = execN ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , t1 ) ; } | Get building references from a given line number |
13,219 | public OvhDomain serviceName_zone_domains_POST ( String serviceName , String domain ) throws IOException { String qPath = "/cdn/website/{serviceName}/zone/domains" ; StringBuilder sb = path ( qPath , serviceName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "domain" , domain ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhDomain . class ) ; } | Configure a domain on CDN |
13,220 | public OvhResiliationFollowUpDetail packName_resiliationFollowUp_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/resiliationFollowUp" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , OvhResiliationFollowUpDetail . class ) ; } | Get information about the ongoing resiliation |
13,221 | public OvhTask packName_domain_services_POST ( String packName , OvhDomainActionEnum action , String authInfo , String domain , String tld ) throws IOException { String qPath = "/pack/xdsl/{packName}/domain/services" ; StringBuilder sb = path ( qPath , packName ) ; HashMap < String , Object > o = new HashMap < String , Object > ( ) ; addBody ( o , "action" , action ) ; addBody ( o , "authInfo" , authInfo ) ; addBody ( o , "domain" , domain ) ; addBody ( o , "tld" , tld ) ; String resp = exec ( qPath , "POST" , sb . toString ( ) , o ) ; return convertTo ( resp , OvhTask . class ) ; } | Activate a domain service |
13,222 | public ArrayList < OvhServiceInformation > packName_services_GET ( String packName ) throws IOException { String qPath = "/pack/xdsl/{packName}/services" ; StringBuilder sb = path ( qPath , packName ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t2 ) ; } | Informations about the services included in the pack |
13,223 | 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 |
13,224 | 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 |
13,225 | 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 |
13,226 | 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 |
13,227 | 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 |
13,228 | 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 |
13,229 | 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 |
13,230 | 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 |
13,231 | 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 |
13,232 | 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 |
13,233 | 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 |
13,234 | 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 |
13,235 | 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 |
13,236 | 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 |
13,237 | 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 |
13,238 | 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 |
13,239 | 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 |
13,240 | 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 |
13,241 | 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 |
13,242 | 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 |
13,243 | 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 |
13,244 | 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 |
13,245 | 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 |
13,246 | 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 |
13,247 | 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 |
13,248 | 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 |
13,249 | 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 |
13,250 | 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 |
13,251 | 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 |
13,252 | 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 |
13,253 | 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 |
13,254 | 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 |
13,255 | 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 |
13,256 | 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 |
13,257 | 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 |
13,258 | 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 |
13,259 | 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 |
13,260 | 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 |
13,261 | 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 |
13,262 | 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 |
13,263 | 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 |
13,264 | 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 |
13,265 | 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 |
13,266 | 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 |
13,267 | 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 |
13,268 | 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 |
13,269 | 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 |
13,270 | 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 |
13,271 | 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 |
13,272 | 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 |
13,273 | 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 |
13,274 | 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 |
13,275 | 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 |
13,276 | 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 |
13,277 | 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 |
13,278 | 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 |
13,279 | 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 |
13,280 | 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 |
13,281 | 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 |
13,282 | 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 |
13,283 | 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 |
13,284 | 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 . |
13,285 | 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 . |
13,286 | 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 . |
13,287 | 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 |
13,288 | 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 |
13,289 | 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 |
13,290 | 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 |
13,291 | 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 |
13,292 | 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 |
13,293 | 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 |
13,294 | 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 |
13,295 | 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 |
13,296 | 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 |
13,297 | 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 |
13,298 | 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 |
13,299 | 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.