diff --git a/bin/generateSLDN.py b/bin/generateSLDN.py index ef2d540591..0c16d50616 100755 --- a/bin/generateSLDN.py +++ b/bin/generateSLDN.py @@ -43,7 +43,7 @@ mainService : "$mainService" --- -### Curl Example +# [REST Example](#$service-example) {#$service-example .anchor-link} ```bash $curlExample ``` @@ -250,7 +250,7 @@ def writeMethodMarkdown(self, serviceJson, serviceName): def generateCurlExample(self, methodJson, serviceName): """Creates the CURL examples on each of the method pages""" methodName = methodJson.get('name') - base = "curl -u $SL_USER:$SL_APIKEY" + base = "curl -g -u $SL_USER:$SL_APIKEY" initParam = '' if not methodJson.get('static', False): initParam = f"{{{serviceName}ID}}/" diff --git a/content/article/rest.md b/content/article/rest.md index daa656697c..4cebf4e182 100644 --- a/content/article/rest.md +++ b/content/article/rest.md @@ -13,10 +13,10 @@ tags: SoftLayer provides a RESTful API in addition to RPC-style API services. Use the REST API in cases where your programming language may not have good SOAP or XML-RPC support but can perform simple HTTP protocol actions and can interpret XML or JSON data. -## REST URLs +# [REST URLs](#rest-urls){#rest-urls .anchor-link} REST API URLs are structured to easily traverse SoftLayer's object hierarchy. A basic REST request is structured as follows: -``` +```bash curl -u [username]:[apiKey] -d '{"parameters": ["first", "second"]}' https://api.[service.]softlayer.com/rest/v3.1/[serviceName]/[initializationParameter]/[methodName].[json|xml|txt]? objectMask=mask[]&objectFilter={}&resultLimit=[offsetValue],[limitValue] @@ -32,7 +32,7 @@ objectMask=mask[]&objectFilter={}&resultLimit=[offsetValue],[limitValue] A request like this calls the getObject() method of the API service you're trying to call. [SoftLayer_Account::getObject](/reference/services/SoftLayer_Account/getObject) doesn't require an initialization parameter, so its REST URL looks like this -``` +```bash https://username:apiKey@api.softlayer.com/rest/v3/SoftLayer_Account.json ``` @@ -40,7 +40,7 @@ https://username:apiKey@api.softlayer.com/rest/v3/SoftLayer_Account.json To call the [getObject()](/reference/services/SoftLayer_Hardware_Server/getObject) method for a specific [SoftLayer_Hardware_Server](/reference/services/SoftLayer_Hardware_Server/) record use the following URL, assuming "1234" is the id of the server you wish to retrieve: -``` +```bash https://api.softlayer.com/rest/v3/SoftLayer_Hardware_Server/1234.json ``` @@ -55,7 +55,7 @@ When building a REST API call, you can drill down into the various relational pr For example: -``` +```bash https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getHardware ``` @@ -68,13 +68,13 @@ If you wanted a specific hardware object, you could do And you can go deeper, if you wanted to get just the hardware [networkComponents](/reference/datatypes/SoftLayer_Hardware_Server/#networkComponents) you can do this: -``` +```bash https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getHardware/365112/getNetworkComponents ``` A specific network component? -``` +```bash https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getHardware/365112/getNetworkComponents/22222 ``` @@ -82,14 +82,14 @@ https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getHardware/365112/getNetw In the url, you will see `v3.1` or `v3`. Both versions are basically the same, `v3.1` is the "newer" version, and the only real difference is it handles objectFilters a little faster. -## HTTP Request Types +# [HTTP Request Types](#rest-request-types) {#rest-request-types .anchor-link} It is important to understand that the REST endpoint is mostly just a wrapper for the SOAP endpoint, and as such might not work exactly like other REST services. As a general rule, you can use a `GET` request UNLESS you need to send in optional parameters, then you should use a `POST` request. ### DELETE A `DELETE` request assume you want to use the `deleteObject()` method. -``` +```bash curl -X DELETE https://api.softlayer.com/rest/v3/SoftLayer_Dns_Domain/1234.json ``` @@ -98,7 +98,7 @@ curl -X DELETE https://api.softlayer.com/rest/v3/SoftLayer_Dns_Domain/1234.json ### GET Use a `GET` request for method that doesn't have optional parameters that need to be sent in. a `GET` request will assume `getObject` if you don't specify a method. -``` +```bash https://api.softlayer.com/rest/v3/SoftLayer_Dns_Domain/1234.json ``` @@ -107,13 +107,13 @@ https://api.softlayer.com/rest/v3/SoftLayer_Dns_Domain/1234.json A `POST` request is needed for optional parameters. `POST` assums the `createObject` method if you don't specify one. This method takes in a single Boolean parameter. -``` +```bash curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": ["1"]} 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/12345/toggleManagementInterface.json'` ``` This method takes in a single SoftLayer_Dns_Domain object. -``` +```bash curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters" : [ {"name" : "example.org", "resourceRecords" : [{"type" : "a","host" : "@","data" : "127.0.0.1" }]} ]}' 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain.json' @@ -126,12 +126,12 @@ curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters" : [ ### PUT Use an HTTP PUT request to edit an object instead of a service's `editObject() `method. PUT a single JSON or XML structure containing a single element called "parameters" containing your object's skeleton structure and any other parameters required by your API service's `editObject()` method. For instance, pass an HTTP PUT request with the following data to the following URL in order to edit domain resource record 5678 within domain record 1234 on SoftLayer's DNS servers, changing its `data` to "10.0.0.1". -``` +```bash curl -u $SL_USER:$SL_APIKEY -X PUT -d '{"parameters": [{"data": "10.0.0.1",}]}' https://api.softlayer.com/rest/v3/SoftLayer_Dns_Domain/1234/ResourceRecords/5678.json ``` -## Passing Method Parameters +# [Passing Method Parameters](#rest-params) {#rest-params .anchor-link} The order (top to bottom) you send in parameters needs to match the order they are listed in the documentation. For example, [SoftLayer_Account::createUser()](/reference/services/SoftLayer_Account/createUser/) takes in 4 parameters, first would be the `templateObject`, then `password`, then `vpnPassword`, then `silentlyCreateFlag`. The data passed in the parameters are treated like an array, so you don't need to include the parameter name anywhere. @@ -139,20 +139,20 @@ There are 2 main ways to pass in parameters. The most consistent, and what I rec For example [SoftLayer_Monitoring_Agent::setActiveAlarmSubscriber](/reference/services/SoftLayer_Monitoring_Agent/setActiveAlarmSubscriber) requires the userRecordId parameter: -``` +```bash curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [5678]}' 'https://api.softlayer.com/rest/v3.1/SoftLayer_Monitoring_Agent/1234/setActiveAlarmSubscriber/' ``` Alternatively, you can put the parameters in the URL for simple types like string, int, and bool. -``` +```bash curl -u $SL_USER:$SL_APIKEY https://api.softlayer.com/rest/v3/SoftLayer_Monitoring_Agent/1234/setActiveAlarmSubscriber/5678.json ``` Some methods will request a single parameter which is an array such as [SoftLayer_Dns_Domain_ResourceRecord::createObjects](/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObjects) -``` +```json { "parameters": [ @@ -166,26 +166,26 @@ Some methods will request a single parameter which is an array such as [SoftLaye ``` -## Using Object Masks +# [Using Object Masks](#rest-objectmask) {#rest-objectmask .anchor-link} Create an [object mask](/article/object-masks) in your API call URL by adding an `objectMask` variable to your query string. Object masks are a nested array of relational or local properties. The following URL creates an object mask that retrieves an account's hardware records along with the datacenters that hardware is located in. Note that the object mask only contains the relational property we want to retrieve related to hardware, not our account. -``` +```bash https://api.softlayer.com/rest/v3/SoftLayer_Account/getHardware.json?objectMask=mask[datacenter] ``` This URL gets an account's hardware records along with that hardware's associated datacenter, operating system, and network component records. Note that these relational items are separate by semicolons. -``` +```bash https://api.softlayer.com/rest/v3/SoftLayer_Account/getHardware.json?objectMask=mask[datacenter,operatingSystem,networkComponents] ``` This URL gets an account's hardware records along with that hardware's associated datacenter, operating system, operating system password, and network component records. -``` +```bash https://api.softlayer.com/rest/v3/SoftLayer_Account/Hardware.json?objectMask=mask[datacenter,operatingSystem[passwords],networkComponents] ``` @@ -193,11 +193,11 @@ https://api.softlayer.com/rest/v3/SoftLayer_Account/Hardware.json?objectMask=mas Selecting a `local` property in your objectMask will remove all other local properties on that level of your objectMask. -## Using Result Limits +# [Using Result Limits](#rest-resultlimit) {#rest-resultlimit .anchor-link} Any method that returns an array of values can make use of a [resultLimit](/article/using-result-limits-softlayer-api/) to page through the results. This is useful if not including the resultLimit makes an API call timeout. For example, [SoftLayer_Account::getOpenTickets](/reference/services/SoftLayer_Account/getOpenTickets) returns an array of SoftLayer_Ticket[] (if the return type ends with [] the method is returning an array). The following URL creates a `resultLimit` with "0" as an `offset` value, and "2" as a `limit` value, retrieving only 2 items starting at item 0 of the result set. -``` +```bash https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getOpenTickets.json?resultLimit=0,2 ``` **Note:** In the example the offset is 0 and the limit is 2, and in this case we can remove the offset to get the same response (resultLimit=2). @@ -226,11 +226,11 @@ curl -v -u $SL_USER:$SL_APIKEY https://api.softlayer.com/rest/v3.1/SoftLayer_Acc ``` -## Error Handling +# [Error Handling](#rest-errors) {#rest-errors .anchor-link} The SoftLayer REST API returns XML or JSON output with a single error node containing any error messages returned by your API call. For instance, the URL to the nonexistent service: -``` +```bash https://api.softlayer.com/rest/v3/Nonexistent.xml ``` @@ -256,3 +256,23 @@ returns the error: ### Authentication Errors The SoftLayer REST API returns an HTTP 401 Unauthorized error if an invalid username / API key combination is used when requesting a REST URL. + + +# [REST Examples](#rest-examples) {#rest-examples .anchor-link} + +In a method's documentation you will see a REST example at the bottom, these will use [CURL](https://curl.se) to make the API call. + +To explain the example a bit, I will use the [SoftLayer_User_Customer::createUser](/reference/services/SoftLayer_Account/createUser) Method as an example + +```bash +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer, string, string, boolean]}' \ +'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/createUser' +``` + +* `-g` Tells CURL to to turn off ["URL globbing parser"](https://curl.se/docs/manpage.html#-g) basically allowing you to use `[]` and `{}` in your url without having to escape them. +* `-u $SL_USER:$SL_APIKEY` is your authentication information. Ideally you would set a SL_USER and SL_APIKEY environment variable so you don't put your credentials directly on the command line. +* `-X POST` is because this method requires parameters be sent in, and this specifically forces curl to send this data in as a POST request. The SoftLayer API will ignore data sent in as a GET request. +* `-d '{"parameters": [` tells CURL what data you want to send in. This is a JSON formatted string, and should start with the 'parameters' object. The parameters are in an array, in the order they appear in the documentation. +* `SoftLayer_User_Customer` This method takes in as its first parameter a user object. This is marked in the documentation as the base class that the API expects. You would replace this with a JSON object that fills out all the User_Customer data you want for this new user +* `string, string, boolean` this is the rest of the parameters, they are simple types so just fill out the information as required. +* `'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/createUser'` The API url to send the request to. \ No newline at end of file diff --git a/content/reference/datatypes/SoftLayer_Container_Network_Media_Information.md b/content/reference/datatypes/SoftLayer_Container_Network_Media_Information.md deleted file mode 100644 index 029bf4d20c..0000000000 --- a/content/reference/datatypes/SoftLayer_Container_Network_Media_Information.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Container_Network_Media_Information" -description: "This container class holds information on a media file such as file name, codec, frame rate and so on " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Container" -classes: - - "SoftLayer_Container_Network_Media_Information" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Container_Network_Media_Information" ---- diff --git a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Job_Watermark.md b/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Job_Watermark.md deleted file mode 100644 index 117cbdef17..0000000000 --- a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Job_Watermark.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Container_Network_Media_Transcode_Job_Watermark" -description: "" -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Container" -classes: - - "SoftLayer_Container_Network_Media_Transcode_Job_Watermark" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Container_Network_Media_Transcode_Job_Watermark" ---- diff --git a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position.md b/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position.md deleted file mode 100644 index efc0885b62..0000000000 --- a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position" -description: "" -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Container" -classes: - - "SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position" ---- diff --git a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset.md b/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset.md deleted file mode 100644 index e4c4afc8c9..0000000000 --- a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Container_Network_Media_Transcode_Preset" -description: "Transcode preset is a set of configuration parameters that defines a Transcode output format. SoftLayer_Container_Network_Media_Transcode_Preset contains a preset information defined on a Transcode server " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Container" -classes: - - "SoftLayer_Container_Network_Media_Transcode_Preset" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Container_Network_Media_Transcode_Preset" ---- diff --git a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element.md b/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element.md deleted file mode 100644 index 7bd1d14663..0000000000 --- a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Container_Network_Media_Transcode_Preset_Element" -description: "Transcode preset element " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Container" -classes: - - "SoftLayer_Container_Network_Media_Transcode_Preset_Element" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Container_Network_Media_Transcode_Preset_Element" ---- diff --git a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option.md b/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option.md deleted file mode 100644 index f8f17c0030..0000000000 --- a/content/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option" -description: "Transcode preset element " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Container" -classes: - - "SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option" ---- diff --git a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Account.md b/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Account.md deleted file mode 100644 index 83fb118c8a..0000000000 --- a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Account.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Account" -description: "The SoftLayer_Network_Media_Transcode_Account contains information regarding a transcode account. " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- diff --git a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job.md b/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job.md deleted file mode 100644 index 4d78ee71f8..0000000000 --- a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Job" -description: "The SoftLayer_Network_Media_Transcode_Job contains information regarding a transcode job such as input file, output format, user id and so on. " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- diff --git a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job_History.md b/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job_History.md deleted file mode 100644 index 49115fa834..0000000000 --- a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job_History.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Job_History" -description: "" -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job_History" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Network_Media_Transcode_Job_History" ---- diff --git a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job_Status.md b/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job_Status.md deleted file mode 100644 index 4b12d7cb2d..0000000000 --- a/content/reference/datatypes/SoftLayer_Network_Media_Transcode_Job_Status.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Job_Status" -description: "The SoftLayer_Network_Media_Transcode_Job_Status contains information on a transcode job status. " -date: "2018-02-12" -tags: - - "datatype" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job_Status" -type: "reference" -layout: "datatype" -mainService : "SoftLayer_Network_Media_Transcode_Job_Status" ---- diff --git a/content/reference/services/BluePages_Search/findBluePagesProfile.md b/content/reference/services/BluePages_Search/findBluePagesProfile.md index ad67b3dd65..3b34f523a2 100644 --- a/content/reference/services/BluePages_Search/findBluePagesProfile.md +++ b/content/reference/services/BluePages_Search/findBluePagesProfile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "BluePages_Search" --- -### Curl Example +# [REST Example](#findBluePagesProfile-example) {#findBluePagesProfile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/BluePages_Search/findBluePagesProfile' ``` diff --git a/content/reference/services/IntegratedOfferingTeam_Region/getAllObjects.md b/content/reference/services/IntegratedOfferingTeam_Region/getAllObjects.md index 8b0e18a975..61e0649e97 100644 --- a/content/reference/services/IntegratedOfferingTeam_Region/getAllObjects.md +++ b/content/reference/services/IntegratedOfferingTeam_Region/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "IntegratedOfferingTeam_Region" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/IntegratedOfferingTeam_Region/getAllObjects' ``` diff --git a/content/reference/services/IntegratedOfferingTeam_Region/getRegionLeads.md b/content/reference/services/IntegratedOfferingTeam_Region/getRegionLeads.md index 0b0727fcad..31a3b36917 100644 --- a/content/reference/services/IntegratedOfferingTeam_Region/getRegionLeads.md +++ b/content/reference/services/IntegratedOfferingTeam_Region/getRegionLeads.md @@ -13,8 +13,8 @@ layout: "method" mainService : "IntegratedOfferingTeam_Region" --- -### Curl Example +# [REST Example](#getRegionLeads-example) {#getRegionLeads-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/IntegratedOfferingTeam_Region/getRegionLeads' ``` diff --git a/content/reference/services/SoftLayer_Account/activatePartner.md b/content/reference/services/SoftLayer_Account/activatePartner.md index 2c36cd9291..d74ee25eca 100644 --- a/content/reference/services/SoftLayer_Account/activatePartner.md +++ b/content/reference/services/SoftLayer_Account/activatePartner.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#activatePartner-example) {#activatePartner-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/activatePartner' ``` diff --git a/content/reference/services/SoftLayer_Account/addAchInformation.md b/content/reference/services/SoftLayer_Account/addAchInformation.md index 4e0180fd0b..e7fd6883ff 100644 --- a/content/reference/services/SoftLayer_Account/addAchInformation.md +++ b/content/reference/services/SoftLayer_Account/addAchInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#addAchInformation-example) {#addAchInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Billing_Info_Ach]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Billing_Info_Ach]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/addAchInformation' ``` diff --git a/content/reference/services/SoftLayer_Account/addReferralPartnerPaymentOption.md b/content/reference/services/SoftLayer_Account/addReferralPartnerPaymentOption.md index 6133591b51..bf17d84b6e 100644 --- a/content/reference/services/SoftLayer_Account/addReferralPartnerPaymentOption.md +++ b/content/reference/services/SoftLayer_Account/addReferralPartnerPaymentOption.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#addReferralPartnerPaymentOption-example) {#addReferralPartnerPaymentOption-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Referral_Partner_Payment_Option]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Referral_Partner_Payment_Option]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/addReferralPartnerPaymentOption' ``` diff --git a/content/reference/services/SoftLayer_Account/areVdrUpdatesBlockedForBilling.md b/content/reference/services/SoftLayer_Account/areVdrUpdatesBlockedForBilling.md index 5953ea6b28..ad813e86f4 100644 --- a/content/reference/services/SoftLayer_Account/areVdrUpdatesBlockedForBilling.md +++ b/content/reference/services/SoftLayer_Account/areVdrUpdatesBlockedForBilling.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#areVdrUpdatesBlockedForBilling-example) {#areVdrUpdatesBlockedForBilling-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/areVdrUpdatesBlockedForBilling' ``` diff --git a/content/reference/services/SoftLayer_Account/cancelPayPalTransaction.md b/content/reference/services/SoftLayer_Account/cancelPayPalTransaction.md index c0df31a658..dbe0524f9c 100644 --- a/content/reference/services/SoftLayer_Account/cancelPayPalTransaction.md +++ b/content/reference/services/SoftLayer_Account/cancelPayPalTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#cancelPayPalTransaction-example) {#cancelPayPalTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/cancelPayPalTransaction' ``` diff --git a/content/reference/services/SoftLayer_Account/completePayPalTransaction.md b/content/reference/services/SoftLayer_Account/completePayPalTransaction.md index 836db71e62..ad54dc0d67 100644 --- a/content/reference/services/SoftLayer_Account/completePayPalTransaction.md +++ b/content/reference/services/SoftLayer_Account/completePayPalTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#completePayPalTransaction-example) {#completePayPalTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/completePayPalTransaction' ``` diff --git a/content/reference/services/SoftLayer_Account/countHourlyInstances.md b/content/reference/services/SoftLayer_Account/countHourlyInstances.md index 59007f1132..a3f0938644 100644 --- a/content/reference/services/SoftLayer_Account/countHourlyInstances.md +++ b/content/reference/services/SoftLayer_Account/countHourlyInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#countHourlyInstances-example) {#countHourlyInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/countHourlyInstances' ``` diff --git a/content/reference/services/SoftLayer_Account/createUser.md b/content/reference/services/SoftLayer_Account/createUser.md index c07efa5098..f2e1401350 100644 --- a/content/reference/services/SoftLayer_Account/createUser.md +++ b/content/reference/services/SoftLayer_Account/createUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#createUser-example) {#createUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer, string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer, string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/createUser' ``` diff --git a/content/reference/services/SoftLayer_Account/disableEuSupport.md b/content/reference/services/SoftLayer_Account/disableEuSupport.md index 7680c8d1be..b7c0431574 100644 --- a/content/reference/services/SoftLayer_Account/disableEuSupport.md +++ b/content/reference/services/SoftLayer_Account/disableEuSupport.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#disableEuSupport-example) {#disableEuSupport-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/disableEuSupport' ``` diff --git a/content/reference/services/SoftLayer_Account/disableVpnConfigRequiresVpnManageAttribute.md b/content/reference/services/SoftLayer_Account/disableVpnConfigRequiresVpnManageAttribute.md index 6dea4c3eb4..0e19cbe44f 100644 --- a/content/reference/services/SoftLayer_Account/disableVpnConfigRequiresVpnManageAttribute.md +++ b/content/reference/services/SoftLayer_Account/disableVpnConfigRequiresVpnManageAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#disableVpnConfigRequiresVpnManageAttribute-example) {#disableVpnConfigRequiresVpnManageAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/disableVpnConfigRequiresVpnManageAttribute' ``` diff --git a/content/reference/services/SoftLayer_Account/editAccount.md b/content/reference/services/SoftLayer_Account/editAccount.md index d1f5b43455..c2d6d3b525 100644 --- a/content/reference/services/SoftLayer_Account/editAccount.md +++ b/content/reference/services/SoftLayer_Account/editAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#editAccount-example) {#editAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/editAccount' ``` diff --git a/content/reference/services/SoftLayer_Account/enableEuSupport.md b/content/reference/services/SoftLayer_Account/enableEuSupport.md index c6fff7701c..c346da9aa5 100644 --- a/content/reference/services/SoftLayer_Account/enableEuSupport.md +++ b/content/reference/services/SoftLayer_Account/enableEuSupport.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#enableEuSupport-example) {#enableEuSupport-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/enableEuSupport' ``` diff --git a/content/reference/services/SoftLayer_Account/enableVpnConfigRequiresVpnManageAttribute.md b/content/reference/services/SoftLayer_Account/enableVpnConfigRequiresVpnManageAttribute.md index d5c0f57a67..3401199d37 100644 --- a/content/reference/services/SoftLayer_Account/enableVpnConfigRequiresVpnManageAttribute.md +++ b/content/reference/services/SoftLayer_Account/enableVpnConfigRequiresVpnManageAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#enableVpnConfigRequiresVpnManageAttribute-example) {#enableVpnConfigRequiresVpnManageAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/enableVpnConfigRequiresVpnManageAttribute' ``` diff --git a/content/reference/services/SoftLayer_Account/getAbuseEmail.md b/content/reference/services/SoftLayer_Account/getAbuseEmail.md index bc817b07c3..a95dcf598a 100644 --- a/content/reference/services/SoftLayer_Account/getAbuseEmail.md +++ b/content/reference/services/SoftLayer_Account/getAbuseEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAbuseEmail-example) {#getAbuseEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAbuseEmail' ``` diff --git a/content/reference/services/SoftLayer_Account/getAbuseEmails.md b/content/reference/services/SoftLayer_Account/getAbuseEmails.md index b9470ad353..4e9c6d63ff 100644 --- a/content/reference/services/SoftLayer_Account/getAbuseEmails.md +++ b/content/reference/services/SoftLayer_Account/getAbuseEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAbuseEmails-example) {#getAbuseEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAbuseEmails' ``` diff --git a/content/reference/services/SoftLayer_Account/getAccountBackupHistory.md b/content/reference/services/SoftLayer_Account/getAccountBackupHistory.md index 109de09905..0e1c55b81b 100644 --- a/content/reference/services/SoftLayer_Account/getAccountBackupHistory.md +++ b/content/reference/services/SoftLayer_Account/getAccountBackupHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAccountBackupHistory-example) {#getAccountBackupHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAccountBackupHistory' ``` diff --git a/content/reference/services/SoftLayer_Account/getAccountContacts.md b/content/reference/services/SoftLayer_Account/getAccountContacts.md index f3622de048..99595de2e1 100644 --- a/content/reference/services/SoftLayer_Account/getAccountContacts.md +++ b/content/reference/services/SoftLayer_Account/getAccountContacts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAccountContacts-example) {#getAccountContacts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAccountContacts' ``` diff --git a/content/reference/services/SoftLayer_Account/getAccountLicenses.md b/content/reference/services/SoftLayer_Account/getAccountLicenses.md index 33a12153d4..06b5ec0245 100644 --- a/content/reference/services/SoftLayer_Account/getAccountLicenses.md +++ b/content/reference/services/SoftLayer_Account/getAccountLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAccountLicenses-example) {#getAccountLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAccountLicenses' ``` diff --git a/content/reference/services/SoftLayer_Account/getAccountLinks.md b/content/reference/services/SoftLayer_Account/getAccountLinks.md index a776e327e6..cf317233be 100644 --- a/content/reference/services/SoftLayer_Account/getAccountLinks.md +++ b/content/reference/services/SoftLayer_Account/getAccountLinks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAccountLinks-example) {#getAccountLinks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAccountLinks' ``` diff --git a/content/reference/services/SoftLayer_Account/getAccountStatus.md b/content/reference/services/SoftLayer_Account/getAccountStatus.md index 61e091bb8e..30f82ab6ec 100644 --- a/content/reference/services/SoftLayer_Account/getAccountStatus.md +++ b/content/reference/services/SoftLayer_Account/getAccountStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAccountStatus-example) {#getAccountStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAccountStatus' ``` diff --git a/content/reference/services/SoftLayer_Account/getAccountTraitValue.md b/content/reference/services/SoftLayer_Account/getAccountTraitValue.md index 474335b030..26ec9ec6bc 100644 --- a/content/reference/services/SoftLayer_Account/getAccountTraitValue.md +++ b/content/reference/services/SoftLayer_Account/getAccountTraitValue.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAccountTraitValue-example) {#getAccountTraitValue-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAccountTraitValue' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveAccountDiscountBillingItem.md b/content/reference/services/SoftLayer_Account/getActiveAccountDiscountBillingItem.md index 1243b49098..2455a110f4 100644 --- a/content/reference/services/SoftLayer_Account/getActiveAccountDiscountBillingItem.md +++ b/content/reference/services/SoftLayer_Account/getActiveAccountDiscountBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveAccountDiscountBillingItem-example) {#getActiveAccountDiscountBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveAccountDiscountBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveAccountLicenses.md b/content/reference/services/SoftLayer_Account/getActiveAccountLicenses.md index 93afb22f00..767cfcd5fb 100644 --- a/content/reference/services/SoftLayer_Account/getActiveAccountLicenses.md +++ b/content/reference/services/SoftLayer_Account/getActiveAccountLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveAccountLicenses-example) {#getActiveAccountLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveAccountLicenses' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveAddresses.md b/content/reference/services/SoftLayer_Account/getActiveAddresses.md index 156090c863..53b3b29dfa 100644 --- a/content/reference/services/SoftLayer_Account/getActiveAddresses.md +++ b/content/reference/services/SoftLayer_Account/getActiveAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveAddresses-example) {#getActiveAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveAddresses' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveAgreements.md b/content/reference/services/SoftLayer_Account/getActiveAgreements.md index 5cd64ac671..7b57cab1c8 100644 --- a/content/reference/services/SoftLayer_Account/getActiveAgreements.md +++ b/content/reference/services/SoftLayer_Account/getActiveAgreements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveAgreements-example) {#getActiveAgreements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveAgreements' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveBillingAgreements.md b/content/reference/services/SoftLayer_Account/getActiveBillingAgreements.md index f7e0dd2184..a51b8b06aa 100644 --- a/content/reference/services/SoftLayer_Account/getActiveBillingAgreements.md +++ b/content/reference/services/SoftLayer_Account/getActiveBillingAgreements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveBillingAgreements-example) {#getActiveBillingAgreements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveBillingAgreements' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveCatalystEnrollment.md b/content/reference/services/SoftLayer_Account/getActiveCatalystEnrollment.md index f281151c4e..6bb3ba1d49 100644 --- a/content/reference/services/SoftLayer_Account/getActiveCatalystEnrollment.md +++ b/content/reference/services/SoftLayer_Account/getActiveCatalystEnrollment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveCatalystEnrollment-example) {#getActiveCatalystEnrollment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveCatalystEnrollment' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveColocationContainers.md b/content/reference/services/SoftLayer_Account/getActiveColocationContainers.md index 6d189347b6..d37474df7d 100644 --- a/content/reference/services/SoftLayer_Account/getActiveColocationContainers.md +++ b/content/reference/services/SoftLayer_Account/getActiveColocationContainers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveColocationContainers-example) {#getActiveColocationContainers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveColocationContainers' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollment.md b/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollment.md index b0ddd6c8fd..be66683024 100644 --- a/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollment.md +++ b/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveFlexibleCreditEnrollment-example) {#getActiveFlexibleCreditEnrollment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveFlexibleCreditEnrollment' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollments.md b/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollments.md index d712c3bba3..01381c701a 100644 --- a/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollments.md +++ b/content/reference/services/SoftLayer_Account/getActiveFlexibleCreditEnrollments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveFlexibleCreditEnrollments-example) {#getActiveFlexibleCreditEnrollments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveFlexibleCreditEnrollments' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveNotificationSubscribers.md b/content/reference/services/SoftLayer_Account/getActiveNotificationSubscribers.md index af0eaeea80..3f14ea48f9 100644 --- a/content/reference/services/SoftLayer_Account/getActiveNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_Account/getActiveNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveNotificationSubscribers-example) {#getActiveNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveOutletPackages.md b/content/reference/services/SoftLayer_Account/getActiveOutletPackages.md index f5c3ff4802..47d73fac37 100644 --- a/content/reference/services/SoftLayer_Account/getActiveOutletPackages.md +++ b/content/reference/services/SoftLayer_Account/getActiveOutletPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveOutletPackages-example) {#getActiveOutletPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getActiveOutletPackages' ``` diff --git a/content/reference/services/SoftLayer_Account/getActivePackages.md b/content/reference/services/SoftLayer_Account/getActivePackages.md index a9be8bd7b2..85a25e55c5 100644 --- a/content/reference/services/SoftLayer_Account/getActivePackages.md +++ b/content/reference/services/SoftLayer_Account/getActivePackages.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActivePackages-example) {#getActivePackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getActivePackages' ``` diff --git a/content/reference/services/SoftLayer_Account/getActivePackagesByAttribute.md b/content/reference/services/SoftLayer_Account/getActivePackagesByAttribute.md index 48ded9e414..a1ab966cfa 100644 --- a/content/reference/services/SoftLayer_Account/getActivePackagesByAttribute.md +++ b/content/reference/services/SoftLayer_Account/getActivePackagesByAttribute.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActivePackagesByAttribute-example) {#getActivePackagesByAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getActivePackagesByAttribute' ``` diff --git a/content/reference/services/SoftLayer_Account/getActivePrivateHostedCloudPackages.md b/content/reference/services/SoftLayer_Account/getActivePrivateHostedCloudPackages.md index f30174a036..1c78877c59 100644 --- a/content/reference/services/SoftLayer_Account/getActivePrivateHostedCloudPackages.md +++ b/content/reference/services/SoftLayer_Account/getActivePrivateHostedCloudPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActivePrivateHostedCloudPackages-example) {#getActivePrivateHostedCloudPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getActivePrivateHostedCloudPackages' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveQuotes.md b/content/reference/services/SoftLayer_Account/getActiveQuotes.md index 6f3654f633..4298eea108 100644 --- a/content/reference/services/SoftLayer_Account/getActiveQuotes.md +++ b/content/reference/services/SoftLayer_Account/getActiveQuotes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveQuotes-example) {#getActiveQuotes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveQuotes' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveReservedCapacityAgreements.md b/content/reference/services/SoftLayer_Account/getActiveReservedCapacityAgreements.md index ba13dce6ae..5f7037b361 100644 --- a/content/reference/services/SoftLayer_Account/getActiveReservedCapacityAgreements.md +++ b/content/reference/services/SoftLayer_Account/getActiveReservedCapacityAgreements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveReservedCapacityAgreements-example) {#getActiveReservedCapacityAgreements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveReservedCapacityAgreements' ``` diff --git a/content/reference/services/SoftLayer_Account/getActiveVirtualLicenses.md b/content/reference/services/SoftLayer_Account/getActiveVirtualLicenses.md index 56b67e33bd..993a59cab4 100644 --- a/content/reference/services/SoftLayer_Account/getActiveVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Account/getActiveVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getActiveVirtualLicenses-example) {#getActiveVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getActiveVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Account/getAdcLoadBalancers.md b/content/reference/services/SoftLayer_Account/getAdcLoadBalancers.md index f9bb854612..0e7c2af3fb 100644 --- a/content/reference/services/SoftLayer_Account/getAdcLoadBalancers.md +++ b/content/reference/services/SoftLayer_Account/getAdcLoadBalancers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAdcLoadBalancers-example) {#getAdcLoadBalancers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAdcLoadBalancers' ``` diff --git a/content/reference/services/SoftLayer_Account/getAddresses.md b/content/reference/services/SoftLayer_Account/getAddresses.md index 38f03c6587..0227664c86 100644 --- a/content/reference/services/SoftLayer_Account/getAddresses.md +++ b/content/reference/services/SoftLayer_Account/getAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAddresses-example) {#getAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAddresses' ``` diff --git a/content/reference/services/SoftLayer_Account/getAffiliateId.md b/content/reference/services/SoftLayer_Account/getAffiliateId.md index e37aa451a8..ce419a7ea8 100644 --- a/content/reference/services/SoftLayer_Account/getAffiliateId.md +++ b/content/reference/services/SoftLayer_Account/getAffiliateId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAffiliateId-example) {#getAffiliateId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAffiliateId' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllBillingItems.md b/content/reference/services/SoftLayer_Account/getAllBillingItems.md index a4a05cdc3c..ec8b68c79a 100644 --- a/content/reference/services/SoftLayer_Account/getAllBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getAllBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllBillingItems-example) {#getAllBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllCommissionBillingItems.md b/content/reference/services/SoftLayer_Account/getAllCommissionBillingItems.md index adef3b2892..e32848f80f 100644 --- a/content/reference/services/SoftLayer_Account/getAllCommissionBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getAllCommissionBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllCommissionBillingItems-example) {#getAllCommissionBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllCommissionBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItems.md b/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItems.md index fb458fdd28..afa9f12098 100644 --- a/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllRecurringTopLevelBillingItems-example) {#getAllRecurringTopLevelBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllRecurringTopLevelBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItemsUnfiltered.md b/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItemsUnfiltered.md index c68cc5908c..b1cf8cd310 100644 --- a/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItemsUnfiltered.md +++ b/content/reference/services/SoftLayer_Account/getAllRecurringTopLevelBillingItemsUnfiltered.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllRecurringTopLevelBillingItemsUnfiltered-example) {#getAllRecurringTopLevelBillingItemsUnfiltered-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllRecurringTopLevelBillingItemsUnfiltered' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllSubnetBillingItems.md b/content/reference/services/SoftLayer_Account/getAllSubnetBillingItems.md index 088ac145cb..7ddb6627af 100644 --- a/content/reference/services/SoftLayer_Account/getAllSubnetBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getAllSubnetBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllSubnetBillingItems-example) {#getAllSubnetBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllSubnetBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItems.md b/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItems.md index 7c43c4eedf..d65915a86a 100644 --- a/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllTopLevelBillingItems-example) {#getAllTopLevelBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllTopLevelBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItemsUnfiltered.md b/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItemsUnfiltered.md index 0225954f54..02c52a91fd 100644 --- a/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItemsUnfiltered.md +++ b/content/reference/services/SoftLayer_Account/getAllTopLevelBillingItemsUnfiltered.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllTopLevelBillingItemsUnfiltered-example) {#getAllTopLevelBillingItemsUnfiltered-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllTopLevelBillingItemsUnfiltered' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllowIbmIdSilentMigrationFlag.md b/content/reference/services/SoftLayer_Account/getAllowIbmIdSilentMigrationFlag.md index ad238e6bb3..6dd1ebd940 100644 --- a/content/reference/services/SoftLayer_Account/getAllowIbmIdSilentMigrationFlag.md +++ b/content/reference/services/SoftLayer_Account/getAllowIbmIdSilentMigrationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllowIbmIdSilentMigrationFlag-example) {#getAllowIbmIdSilentMigrationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllowIbmIdSilentMigrationFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getAllowsBluemixAccountLinkingFlag.md b/content/reference/services/SoftLayer_Account/getAllowsBluemixAccountLinkingFlag.md index 5813d06b44..415bb6661d 100644 --- a/content/reference/services/SoftLayer_Account/getAllowsBluemixAccountLinkingFlag.md +++ b/content/reference/services/SoftLayer_Account/getAllowsBluemixAccountLinkingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAllowsBluemixAccountLinkingFlag-example) {#getAllowsBluemixAccountLinkingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAllowsBluemixAccountLinkingFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getAlternateCreditCardData.md b/content/reference/services/SoftLayer_Account/getAlternateCreditCardData.md index 407b73d289..2b43e3b4ca 100644 --- a/content/reference/services/SoftLayer_Account/getAlternateCreditCardData.md +++ b/content/reference/services/SoftLayer_Account/getAlternateCreditCardData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAlternateCreditCardData-example) {#getAlternateCreditCardData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAlternateCreditCardData' ``` diff --git a/content/reference/services/SoftLayer_Account/getApplicationDeliveryControllers.md b/content/reference/services/SoftLayer_Account/getApplicationDeliveryControllers.md index 15d6f14f5c..91fb6cdbe4 100644 --- a/content/reference/services/SoftLayer_Account/getApplicationDeliveryControllers.md +++ b/content/reference/services/SoftLayer_Account/getApplicationDeliveryControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getApplicationDeliveryControllers-example) {#getApplicationDeliveryControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getApplicationDeliveryControllers' ``` diff --git a/content/reference/services/SoftLayer_Account/getAttributeByType.md b/content/reference/services/SoftLayer_Account/getAttributeByType.md index 332e51a0a7..0cd8c8c80e 100644 --- a/content/reference/services/SoftLayer_Account/getAttributeByType.md +++ b/content/reference/services/SoftLayer_Account/getAttributeByType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAttributeByType-example) {#getAttributeByType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAttributeByType' ``` diff --git a/content/reference/services/SoftLayer_Account/getAttributes.md b/content/reference/services/SoftLayer_Account/getAttributes.md index bbd1c45b67..a0772cfd32 100644 --- a/content/reference/services/SoftLayer_Account/getAttributes.md +++ b/content/reference/services/SoftLayer_Account/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Account/getAuxiliaryNotifications.md b/content/reference/services/SoftLayer_Account/getAuxiliaryNotifications.md index cdef2dbdfd..fd2bbd8b3b 100644 --- a/content/reference/services/SoftLayer_Account/getAuxiliaryNotifications.md +++ b/content/reference/services/SoftLayer_Account/getAuxiliaryNotifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAuxiliaryNotifications-example) {#getAuxiliaryNotifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAuxiliaryNotifications' ``` diff --git a/content/reference/services/SoftLayer_Account/getAvailablePublicNetworkVlans.md b/content/reference/services/SoftLayer_Account/getAvailablePublicNetworkVlans.md index 4f3116c102..3c18c61587 100644 --- a/content/reference/services/SoftLayer_Account/getAvailablePublicNetworkVlans.md +++ b/content/reference/services/SoftLayer_Account/getAvailablePublicNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAvailablePublicNetworkVlans-example) {#getAvailablePublicNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getAvailablePublicNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Account/getAverageArchiveUsageMetricDataByDate.md b/content/reference/services/SoftLayer_Account/getAverageArchiveUsageMetricDataByDate.md index 57480c7e1e..9869b97471 100644 --- a/content/reference/services/SoftLayer_Account/getAverageArchiveUsageMetricDataByDate.md +++ b/content/reference/services/SoftLayer_Account/getAverageArchiveUsageMetricDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAverageArchiveUsageMetricDataByDate-example) {#getAverageArchiveUsageMetricDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAverageArchiveUsageMetricDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Account/getAveragePublicUsageMetricDataByDate.md b/content/reference/services/SoftLayer_Account/getAveragePublicUsageMetricDataByDate.md index 9b8d8d34eb..96d6f9cec1 100644 --- a/content/reference/services/SoftLayer_Account/getAveragePublicUsageMetricDataByDate.md +++ b/content/reference/services/SoftLayer_Account/getAveragePublicUsageMetricDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getAveragePublicUsageMetricDataByDate-example) {#getAveragePublicUsageMetricDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getAveragePublicUsageMetricDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Account/getBalance.md b/content/reference/services/SoftLayer_Account/getBalance.md index 879f4bf1ac..6964c9a2f8 100644 --- a/content/reference/services/SoftLayer_Account/getBalance.md +++ b/content/reference/services/SoftLayer_Account/getBalance.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBalance-example) {#getBalance-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBalance' ``` diff --git a/content/reference/services/SoftLayer_Account/getBandwidthAllotments.md b/content/reference/services/SoftLayer_Account/getBandwidthAllotments.md index 96c35ce644..7400db8ce5 100644 --- a/content/reference/services/SoftLayer_Account/getBandwidthAllotments.md +++ b/content/reference/services/SoftLayer_Account/getBandwidthAllotments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBandwidthAllotments-example) {#getBandwidthAllotments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBandwidthAllotments' ``` diff --git a/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsOverAllocation.md b/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsOverAllocation.md index 56db1eb5af..8334035a44 100644 --- a/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsOverAllocation.md +++ b/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsOverAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentsOverAllocation-example) {#getBandwidthAllotmentsOverAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBandwidthAllotmentsOverAllocation' ``` diff --git a/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsProjectedOverAllocation.md b/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsProjectedOverAllocation.md index 4ca35125c3..56b356794a 100644 --- a/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsProjectedOverAllocation.md +++ b/content/reference/services/SoftLayer_Account/getBandwidthAllotmentsProjectedOverAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentsProjectedOverAllocation-example) {#getBandwidthAllotmentsProjectedOverAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBandwidthAllotmentsProjectedOverAllocation' ``` diff --git a/content/reference/services/SoftLayer_Account/getBandwidthList.md b/content/reference/services/SoftLayer_Account/getBandwidthList.md index bb37f5cff6..64cfb6e6a3 100644 --- a/content/reference/services/SoftLayer_Account/getBandwidthList.md +++ b/content/reference/services/SoftLayer_Account/getBandwidthList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBandwidthList-example) {#getBandwidthList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getBandwidthList' ``` diff --git a/content/reference/services/SoftLayer_Account/getBareMetalInstances.md b/content/reference/services/SoftLayer_Account/getBareMetalInstances.md index ecb8a43730..f2dccd1065 100644 --- a/content/reference/services/SoftLayer_Account/getBareMetalInstances.md +++ b/content/reference/services/SoftLayer_Account/getBareMetalInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBareMetalInstances-example) {#getBareMetalInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBareMetalInstances' ``` diff --git a/content/reference/services/SoftLayer_Account/getBillingAgreements.md b/content/reference/services/SoftLayer_Account/getBillingAgreements.md index ba00a2fb33..07363ebe4d 100644 --- a/content/reference/services/SoftLayer_Account/getBillingAgreements.md +++ b/content/reference/services/SoftLayer_Account/getBillingAgreements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBillingAgreements-example) {#getBillingAgreements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBillingAgreements' ``` diff --git a/content/reference/services/SoftLayer_Account/getBillingInfo.md b/content/reference/services/SoftLayer_Account/getBillingInfo.md index 12f1a5e9a6..42facc4241 100644 --- a/content/reference/services/SoftLayer_Account/getBillingInfo.md +++ b/content/reference/services/SoftLayer_Account/getBillingInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBillingInfo-example) {#getBillingInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBillingInfo' ``` diff --git a/content/reference/services/SoftLayer_Account/getBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Account/getBlockDeviceTemplateGroups.md index 5a75c99ea2..23cd44383e 100644 --- a/content/reference/services/SoftLayer_Account/getBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Account/getBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBlockDeviceTemplateGroups-example) {#getBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getBluemixAccountId.md b/content/reference/services/SoftLayer_Account/getBluemixAccountId.md index f8844e102e..34bcb6240a 100644 --- a/content/reference/services/SoftLayer_Account/getBluemixAccountId.md +++ b/content/reference/services/SoftLayer_Account/getBluemixAccountId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBluemixAccountId-example) {#getBluemixAccountId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBluemixAccountId' ``` diff --git a/content/reference/services/SoftLayer_Account/getBluemixAccountLink.md b/content/reference/services/SoftLayer_Account/getBluemixAccountLink.md index cb1c6f3085..65b390ec48 100644 --- a/content/reference/services/SoftLayer_Account/getBluemixAccountLink.md +++ b/content/reference/services/SoftLayer_Account/getBluemixAccountLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBluemixAccountLink-example) {#getBluemixAccountLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBluemixAccountLink' ``` diff --git a/content/reference/services/SoftLayer_Account/getBluemixLinkedFlag.md b/content/reference/services/SoftLayer_Account/getBluemixLinkedFlag.md index 61902fdbba..37213e8325 100644 --- a/content/reference/services/SoftLayer_Account/getBluemixLinkedFlag.md +++ b/content/reference/services/SoftLayer_Account/getBluemixLinkedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBluemixLinkedFlag-example) {#getBluemixLinkedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBluemixLinkedFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getBrand.md b/content/reference/services/SoftLayer_Account/getBrand.md index 8b62d59ca2..92d3e24c3e 100644 --- a/content/reference/services/SoftLayer_Account/getBrand.md +++ b/content/reference/services/SoftLayer_Account/getBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBrand-example) {#getBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBrand' ``` diff --git a/content/reference/services/SoftLayer_Account/getBrandAccountFlag.md b/content/reference/services/SoftLayer_Account/getBrandAccountFlag.md index 1451513cd7..2b9a151db1 100644 --- a/content/reference/services/SoftLayer_Account/getBrandAccountFlag.md +++ b/content/reference/services/SoftLayer_Account/getBrandAccountFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBrandAccountFlag-example) {#getBrandAccountFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBrandAccountFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getBrandKeyName.md b/content/reference/services/SoftLayer_Account/getBrandKeyName.md index dacaa235f0..16c32ef6ad 100644 --- a/content/reference/services/SoftLayer_Account/getBrandKeyName.md +++ b/content/reference/services/SoftLayer_Account/getBrandKeyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBrandKeyName-example) {#getBrandKeyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBrandKeyName' ``` diff --git a/content/reference/services/SoftLayer_Account/getBusinessPartner.md b/content/reference/services/SoftLayer_Account/getBusinessPartner.md index 1164ad0d7d..9530976439 100644 --- a/content/reference/services/SoftLayer_Account/getBusinessPartner.md +++ b/content/reference/services/SoftLayer_Account/getBusinessPartner.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getBusinessPartner-example) {#getBusinessPartner-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getBusinessPartner' ``` diff --git a/content/reference/services/SoftLayer_Account/getCanOrderAdditionalVlansFlag.md b/content/reference/services/SoftLayer_Account/getCanOrderAdditionalVlansFlag.md index 0a48783672..19c1c4009e 100644 --- a/content/reference/services/SoftLayer_Account/getCanOrderAdditionalVlansFlag.md +++ b/content/reference/services/SoftLayer_Account/getCanOrderAdditionalVlansFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getCanOrderAdditionalVlansFlag-example) {#getCanOrderAdditionalVlansFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getCanOrderAdditionalVlansFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getCarts.md b/content/reference/services/SoftLayer_Account/getCarts.md index 50e38c7df6..ee419a2fe3 100644 --- a/content/reference/services/SoftLayer_Account/getCarts.md +++ b/content/reference/services/SoftLayer_Account/getCarts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getCarts-example) {#getCarts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getCarts' ``` diff --git a/content/reference/services/SoftLayer_Account/getCatalystEnrollments.md b/content/reference/services/SoftLayer_Account/getCatalystEnrollments.md index 6d08899c7f..a50ccf039c 100644 --- a/content/reference/services/SoftLayer_Account/getCatalystEnrollments.md +++ b/content/reference/services/SoftLayer_Account/getCatalystEnrollments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getCatalystEnrollments-example) {#getCatalystEnrollments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getCatalystEnrollments' ``` diff --git a/content/reference/services/SoftLayer_Account/getClosedTickets.md b/content/reference/services/SoftLayer_Account/getClosedTickets.md index 2b3c86c50f..e5eec7c024 100644 --- a/content/reference/services/SoftLayer_Account/getClosedTickets.md +++ b/content/reference/services/SoftLayer_Account/getClosedTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getClosedTickets-example) {#getClosedTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getClosedTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getCurrentUser.md b/content/reference/services/SoftLayer_Account/getCurrentUser.md index c522365572..7b97bf6ac5 100644 --- a/content/reference/services/SoftLayer_Account/getCurrentUser.md +++ b/content/reference/services/SoftLayer_Account/getCurrentUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getCurrentUser-example) {#getCurrentUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getCurrentUser' ``` diff --git a/content/reference/services/SoftLayer_Account/getDatacentersWithSubnetAllocations.md b/content/reference/services/SoftLayer_Account/getDatacentersWithSubnetAllocations.md index 305491d10a..1205410b07 100644 --- a/content/reference/services/SoftLayer_Account/getDatacentersWithSubnetAllocations.md +++ b/content/reference/services/SoftLayer_Account/getDatacentersWithSubnetAllocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDatacentersWithSubnetAllocations-example) {#getDatacentersWithSubnetAllocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDatacentersWithSubnetAllocations' ``` diff --git a/content/reference/services/SoftLayer_Account/getDedicatedHosts.md b/content/reference/services/SoftLayer_Account/getDedicatedHosts.md index f3b83e987b..0d693de8b3 100644 --- a/content/reference/services/SoftLayer_Account/getDedicatedHosts.md +++ b/content/reference/services/SoftLayer_Account/getDedicatedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDedicatedHosts-example) {#getDedicatedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDedicatedHosts' ``` diff --git a/content/reference/services/SoftLayer_Account/getDedicatedHostsForImageTemplate.md b/content/reference/services/SoftLayer_Account/getDedicatedHostsForImageTemplate.md index 8132ece6a0..68ec8c0a85 100644 --- a/content/reference/services/SoftLayer_Account/getDedicatedHostsForImageTemplate.md +++ b/content/reference/services/SoftLayer_Account/getDedicatedHostsForImageTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDedicatedHostsForImageTemplate-example) {#getDedicatedHostsForImageTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getDedicatedHostsForImageTemplate' ``` diff --git a/content/reference/services/SoftLayer_Account/getDisablePaymentProcessingFlag.md b/content/reference/services/SoftLayer_Account/getDisablePaymentProcessingFlag.md index 44d0a1e299..2bcbaa3f5e 100644 --- a/content/reference/services/SoftLayer_Account/getDisablePaymentProcessingFlag.md +++ b/content/reference/services/SoftLayer_Account/getDisablePaymentProcessingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDisablePaymentProcessingFlag-example) {#getDisablePaymentProcessingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDisablePaymentProcessingFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getDisplaySupportRepresentativeAssignments.md b/content/reference/services/SoftLayer_Account/getDisplaySupportRepresentativeAssignments.md index 23646f0514..c41e3be1f3 100644 --- a/content/reference/services/SoftLayer_Account/getDisplaySupportRepresentativeAssignments.md +++ b/content/reference/services/SoftLayer_Account/getDisplaySupportRepresentativeAssignments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDisplaySupportRepresentativeAssignments-example) {#getDisplaySupportRepresentativeAssignments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDisplaySupportRepresentativeAssignments' ``` diff --git a/content/reference/services/SoftLayer_Account/getDomainRegistrations.md b/content/reference/services/SoftLayer_Account/getDomainRegistrations.md index 7b5fb3320e..fe1910a7e5 100644 --- a/content/reference/services/SoftLayer_Account/getDomainRegistrations.md +++ b/content/reference/services/SoftLayer_Account/getDomainRegistrations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDomainRegistrations-example) {#getDomainRegistrations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDomainRegistrations' ``` diff --git a/content/reference/services/SoftLayer_Account/getDomains.md b/content/reference/services/SoftLayer_Account/getDomains.md index c307b1c8f4..b1cde40ce5 100644 --- a/content/reference/services/SoftLayer_Account/getDomains.md +++ b/content/reference/services/SoftLayer_Account/getDomains.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDomains-example) {#getDomains-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDomains' ``` diff --git a/content/reference/services/SoftLayer_Account/getDomainsWithoutSecondaryDnsRecords.md b/content/reference/services/SoftLayer_Account/getDomainsWithoutSecondaryDnsRecords.md index aeb47698a7..f5d7a8b53b 100644 --- a/content/reference/services/SoftLayer_Account/getDomainsWithoutSecondaryDnsRecords.md +++ b/content/reference/services/SoftLayer_Account/getDomainsWithoutSecondaryDnsRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getDomainsWithoutSecondaryDnsRecords-example) {#getDomainsWithoutSecondaryDnsRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getDomainsWithoutSecondaryDnsRecords' ``` diff --git a/content/reference/services/SoftLayer_Account/getEuSupportedFlag.md b/content/reference/services/SoftLayer_Account/getEuSupportedFlag.md index bdae44c660..da8cdba8fe 100644 --- a/content/reference/services/SoftLayer_Account/getEuSupportedFlag.md +++ b/content/reference/services/SoftLayer_Account/getEuSupportedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getEuSupportedFlag-example) {#getEuSupportedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getEuSupportedFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getEvaultCapacityGB.md b/content/reference/services/SoftLayer_Account/getEvaultCapacityGB.md index e83fa3928f..1f53d2ea85 100644 --- a/content/reference/services/SoftLayer_Account/getEvaultCapacityGB.md +++ b/content/reference/services/SoftLayer_Account/getEvaultCapacityGB.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getEvaultCapacityGB-example) {#getEvaultCapacityGB-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getEvaultCapacityGB' ``` diff --git a/content/reference/services/SoftLayer_Account/getEvaultMasterUsers.md b/content/reference/services/SoftLayer_Account/getEvaultMasterUsers.md index ffa29e7c13..426f266a93 100644 --- a/content/reference/services/SoftLayer_Account/getEvaultMasterUsers.md +++ b/content/reference/services/SoftLayer_Account/getEvaultMasterUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getEvaultMasterUsers-example) {#getEvaultMasterUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getEvaultMasterUsers' ``` diff --git a/content/reference/services/SoftLayer_Account/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Account/getEvaultNetworkStorage.md index 6d1fc2a10d..4bc7152a22 100644 --- a/content/reference/services/SoftLayer_Account/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Account/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getExpiredSecurityCertificates.md b/content/reference/services/SoftLayer_Account/getExpiredSecurityCertificates.md index c4bdecfe15..9b0c59544a 100644 --- a/content/reference/services/SoftLayer_Account/getExpiredSecurityCertificates.md +++ b/content/reference/services/SoftLayer_Account/getExpiredSecurityCertificates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getExpiredSecurityCertificates-example) {#getExpiredSecurityCertificates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getExpiredSecurityCertificates' ``` diff --git a/content/reference/services/SoftLayer_Account/getFacilityLogs.md b/content/reference/services/SoftLayer_Account/getFacilityLogs.md index ab6ee6101f..379cc161f7 100644 --- a/content/reference/services/SoftLayer_Account/getFacilityLogs.md +++ b/content/reference/services/SoftLayer_Account/getFacilityLogs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getFacilityLogs-example) {#getFacilityLogs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getFacilityLogs' ``` diff --git a/content/reference/services/SoftLayer_Account/getFileBlockBetaAccessFlag.md b/content/reference/services/SoftLayer_Account/getFileBlockBetaAccessFlag.md index c91344e5c1..9ee10fc86e 100644 --- a/content/reference/services/SoftLayer_Account/getFileBlockBetaAccessFlag.md +++ b/content/reference/services/SoftLayer_Account/getFileBlockBetaAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getFileBlockBetaAccessFlag-example) {#getFileBlockBetaAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getFileBlockBetaAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getFlexibleCreditEnrollments.md b/content/reference/services/SoftLayer_Account/getFlexibleCreditEnrollments.md index 7c63db1b5b..e936fdf215 100644 --- a/content/reference/services/SoftLayer_Account/getFlexibleCreditEnrollments.md +++ b/content/reference/services/SoftLayer_Account/getFlexibleCreditEnrollments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getFlexibleCreditEnrollments-example) {#getFlexibleCreditEnrollments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getFlexibleCreditEnrollments' ``` diff --git a/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramInfo.md b/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramInfo.md index 8d3f012684..5d11f70ea3 100644 --- a/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramInfo.md +++ b/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramInfo.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getFlexibleCreditProgramInfo-example) {#getFlexibleCreditProgramInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getFlexibleCreditProgramInfo' ``` diff --git a/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramsInfo.md b/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramsInfo.md index 4cf02f8ccf..10b87616bb 100644 --- a/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramsInfo.md +++ b/content/reference/services/SoftLayer_Account/getFlexibleCreditProgramsInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getFlexibleCreditProgramsInfo-example) {#getFlexibleCreditProgramsInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getFlexibleCreditProgramsInfo' ``` diff --git a/content/reference/services/SoftLayer_Account/getForcePaasAccountLinkDate.md b/content/reference/services/SoftLayer_Account/getForcePaasAccountLinkDate.md index f3f3fb4760..34fee42145 100644 --- a/content/reference/services/SoftLayer_Account/getForcePaasAccountLinkDate.md +++ b/content/reference/services/SoftLayer_Account/getForcePaasAccountLinkDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getForcePaasAccountLinkDate-example) {#getForcePaasAccountLinkDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getForcePaasAccountLinkDate' ``` diff --git a/content/reference/services/SoftLayer_Account/getGlobalIpRecords.md b/content/reference/services/SoftLayer_Account/getGlobalIpRecords.md index 8c89404437..b5dcdfda84 100644 --- a/content/reference/services/SoftLayer_Account/getGlobalIpRecords.md +++ b/content/reference/services/SoftLayer_Account/getGlobalIpRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getGlobalIpRecords-example) {#getGlobalIpRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getGlobalIpRecords' ``` diff --git a/content/reference/services/SoftLayer_Account/getGlobalIpv4Records.md b/content/reference/services/SoftLayer_Account/getGlobalIpv4Records.md index a24c6efb25..e14d5f959f 100644 --- a/content/reference/services/SoftLayer_Account/getGlobalIpv4Records.md +++ b/content/reference/services/SoftLayer_Account/getGlobalIpv4Records.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getGlobalIpv4Records-example) {#getGlobalIpv4Records-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getGlobalIpv4Records' ``` diff --git a/content/reference/services/SoftLayer_Account/getGlobalIpv6Records.md b/content/reference/services/SoftLayer_Account/getGlobalIpv6Records.md index 5aa80fba9a..784ba262ea 100644 --- a/content/reference/services/SoftLayer_Account/getGlobalIpv6Records.md +++ b/content/reference/services/SoftLayer_Account/getGlobalIpv6Records.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getGlobalIpv6Records-example) {#getGlobalIpv6Records-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getGlobalIpv6Records' ``` diff --git a/content/reference/services/SoftLayer_Account/getGlobalLoadBalancerAccounts.md b/content/reference/services/SoftLayer_Account/getGlobalLoadBalancerAccounts.md index 396de19598..19c4a5b8d3 100644 --- a/content/reference/services/SoftLayer_Account/getGlobalLoadBalancerAccounts.md +++ b/content/reference/services/SoftLayer_Account/getGlobalLoadBalancerAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getGlobalLoadBalancerAccounts-example) {#getGlobalLoadBalancerAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getGlobalLoadBalancerAccounts' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardware.md b/content/reference/services/SoftLayer_Account/getHardware.md index f763ad11cc..26e46bbad5 100644 --- a/content/reference/services/SoftLayer_Account/getHardware.md +++ b/content/reference/services/SoftLayer_Account/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareOverBandwidthAllocation.md b/content/reference/services/SoftLayer_Account/getHardwareOverBandwidthAllocation.md index 97307b2460..88685da2bf 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareOverBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Account/getHardwareOverBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareOverBandwidthAllocation-example) {#getHardwareOverBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareOverBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwarePools.md b/content/reference/services/SoftLayer_Account/getHardwarePools.md index 35240c0d2b..b6ef262047 100644 --- a/content/reference/services/SoftLayer_Account/getHardwarePools.md +++ b/content/reference/services/SoftLayer_Account/getHardwarePools.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwarePools-example) {#getHardwarePools-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getHardwarePools' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareProjectedOverBandwidthAllocation.md b/content/reference/services/SoftLayer_Account/getHardwareProjectedOverBandwidthAllocation.md index 05498d065a..6784b6232e 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareProjectedOverBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Account/getHardwareProjectedOverBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareProjectedOverBandwidthAllocation-example) {#getHardwareProjectedOverBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareProjectedOverBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithCpanel.md b/content/reference/services/SoftLayer_Account/getHardwareWithCpanel.md index 4223eb9eee..a025a9397f 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithCpanel.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithCpanel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithCpanel-example) {#getHardwareWithCpanel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithCpanel' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithHelm.md b/content/reference/services/SoftLayer_Account/getHardwareWithHelm.md index a2a371a378..2bd6d839fb 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithHelm.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithHelm.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithHelm-example) {#getHardwareWithHelm-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithHelm' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithMcafee.md b/content/reference/services/SoftLayer_Account/getHardwareWithMcafee.md index c193d7c4fc..bf5c1aaef9 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithMcafee.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithMcafee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithMcafee-example) {#getHardwareWithMcafee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithMcafee' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusRedhat.md b/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusRedhat.md index 7bd6b22591..0b0261e43f 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusRedhat.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusRedhat.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithMcafeeAntivirusRedhat-example) {#getHardwareWithMcafeeAntivirusRedhat-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithMcafeeAntivirusRedhat' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusWindows.md b/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusWindows.md index 71854e5454..d3df75148d 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusWindows.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeAntivirusWindows.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithMcafeeAntivirusWindows-example) {#getHardwareWithMcafeeAntivirusWindows-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithMcafeeAntivirusWindows' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeIntrusionDetectionSystem.md b/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeIntrusionDetectionSystem.md index d2707a6886..c9f013068a 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeIntrusionDetectionSystem.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithMcafeeIntrusionDetectionSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithMcafeeIntrusionDetectionSystem-example) {#getHardwareWithMcafeeIntrusionDetectionSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithMcafeeIntrusionDetectionSystem' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithPlesk.md b/content/reference/services/SoftLayer_Account/getHardwareWithPlesk.md index 06d12073f6..3c58ccf4d4 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithPlesk.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithPlesk.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithPlesk-example) {#getHardwareWithPlesk-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithPlesk' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithQuantastor.md b/content/reference/services/SoftLayer_Account/getHardwareWithQuantastor.md index 00d4751fda..e8d226c41f 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithQuantastor.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithQuantastor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithQuantastor-example) {#getHardwareWithQuantastor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithQuantastor' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithUrchin.md b/content/reference/services/SoftLayer_Account/getHardwareWithUrchin.md index d2ce4f8f57..90514974ff 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithUrchin.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithUrchin.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithUrchin-example) {#getHardwareWithUrchin-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithUrchin' ``` diff --git a/content/reference/services/SoftLayer_Account/getHardwareWithWindows.md b/content/reference/services/SoftLayer_Account/getHardwareWithWindows.md index 17e5522991..3db97a863e 100644 --- a/content/reference/services/SoftLayer_Account/getHardwareWithWindows.md +++ b/content/reference/services/SoftLayer_Account/getHardwareWithWindows.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHardwareWithWindows-example) {#getHardwareWithWindows-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHardwareWithWindows' ``` diff --git a/content/reference/services/SoftLayer_Account/getHasEvaultBareMetalRestorePluginFlag.md b/content/reference/services/SoftLayer_Account/getHasEvaultBareMetalRestorePluginFlag.md index 429f2032c1..dd4ab31e38 100644 --- a/content/reference/services/SoftLayer_Account/getHasEvaultBareMetalRestorePluginFlag.md +++ b/content/reference/services/SoftLayer_Account/getHasEvaultBareMetalRestorePluginFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHasEvaultBareMetalRestorePluginFlag-example) {#getHasEvaultBareMetalRestorePluginFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHasEvaultBareMetalRestorePluginFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getHasIderaBareMetalRestorePluginFlag.md b/content/reference/services/SoftLayer_Account/getHasIderaBareMetalRestorePluginFlag.md index f34a135625..497a04600a 100644 --- a/content/reference/services/SoftLayer_Account/getHasIderaBareMetalRestorePluginFlag.md +++ b/content/reference/services/SoftLayer_Account/getHasIderaBareMetalRestorePluginFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHasIderaBareMetalRestorePluginFlag-example) {#getHasIderaBareMetalRestorePluginFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHasIderaBareMetalRestorePluginFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getHasPendingOrder.md b/content/reference/services/SoftLayer_Account/getHasPendingOrder.md index f4b3379aa0..631465dfec 100644 --- a/content/reference/services/SoftLayer_Account/getHasPendingOrder.md +++ b/content/reference/services/SoftLayer_Account/getHasPendingOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHasPendingOrder-example) {#getHasPendingOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHasPendingOrder' ``` diff --git a/content/reference/services/SoftLayer_Account/getHasR1softBareMetalRestorePluginFlag.md b/content/reference/services/SoftLayer_Account/getHasR1softBareMetalRestorePluginFlag.md index 7b4c260313..a0f8a20fdd 100644 --- a/content/reference/services/SoftLayer_Account/getHasR1softBareMetalRestorePluginFlag.md +++ b/content/reference/services/SoftLayer_Account/getHasR1softBareMetalRestorePluginFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHasR1softBareMetalRestorePluginFlag-example) {#getHasR1softBareMetalRestorePluginFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHasR1softBareMetalRestorePluginFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getHourlyBareMetalInstances.md b/content/reference/services/SoftLayer_Account/getHourlyBareMetalInstances.md index c90cb2da70..adca16f4c6 100644 --- a/content/reference/services/SoftLayer_Account/getHourlyBareMetalInstances.md +++ b/content/reference/services/SoftLayer_Account/getHourlyBareMetalInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHourlyBareMetalInstances-example) {#getHourlyBareMetalInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHourlyBareMetalInstances' ``` diff --git a/content/reference/services/SoftLayer_Account/getHourlyServiceBillingItems.md b/content/reference/services/SoftLayer_Account/getHourlyServiceBillingItems.md index 9c13ed64d8..7b92aaaf68 100644 --- a/content/reference/services/SoftLayer_Account/getHourlyServiceBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getHourlyServiceBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHourlyServiceBillingItems-example) {#getHourlyServiceBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHourlyServiceBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getHourlyVirtualGuests.md b/content/reference/services/SoftLayer_Account/getHourlyVirtualGuests.md index 1d6eedd829..ee04ee5440 100644 --- a/content/reference/services/SoftLayer_Account/getHourlyVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getHourlyVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHourlyVirtualGuests-example) {#getHourlyVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHourlyVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getHubNetworkStorage.md b/content/reference/services/SoftLayer_Account/getHubNetworkStorage.md index b33ecb578a..83b28b331c 100644 --- a/content/reference/services/SoftLayer_Account/getHubNetworkStorage.md +++ b/content/reference/services/SoftLayer_Account/getHubNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getHubNetworkStorage-example) {#getHubNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getHubNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getIbmCustomerNumber.md b/content/reference/services/SoftLayer_Account/getIbmCustomerNumber.md index fdff13438a..7d683c719e 100644 --- a/content/reference/services/SoftLayer_Account/getIbmCustomerNumber.md +++ b/content/reference/services/SoftLayer_Account/getIbmCustomerNumber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getIbmCustomerNumber-example) {#getIbmCustomerNumber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getIbmCustomerNumber' ``` diff --git a/content/reference/services/SoftLayer_Account/getIbmIdAuthenticationRequiredFlag.md b/content/reference/services/SoftLayer_Account/getIbmIdAuthenticationRequiredFlag.md index ab72a54122..1737c55360 100644 --- a/content/reference/services/SoftLayer_Account/getIbmIdAuthenticationRequiredFlag.md +++ b/content/reference/services/SoftLayer_Account/getIbmIdAuthenticationRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getIbmIdAuthenticationRequiredFlag-example) {#getIbmIdAuthenticationRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getIbmIdAuthenticationRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getIbmIdMigrationExpirationTimestamp.md b/content/reference/services/SoftLayer_Account/getIbmIdMigrationExpirationTimestamp.md index a9d808d02f..8132f8591d 100644 --- a/content/reference/services/SoftLayer_Account/getIbmIdMigrationExpirationTimestamp.md +++ b/content/reference/services/SoftLayer_Account/getIbmIdMigrationExpirationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getIbmIdMigrationExpirationTimestamp-example) {#getIbmIdMigrationExpirationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getIbmIdMigrationExpirationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Account/getInProgressExternalAccountSetup.md b/content/reference/services/SoftLayer_Account/getInProgressExternalAccountSetup.md index 99099cb70b..29bc640a62 100644 --- a/content/reference/services/SoftLayer_Account/getInProgressExternalAccountSetup.md +++ b/content/reference/services/SoftLayer_Account/getInProgressExternalAccountSetup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getInProgressExternalAccountSetup-example) {#getInProgressExternalAccountSetup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getInProgressExternalAccountSetup' ``` diff --git a/content/reference/services/SoftLayer_Account/getInternalCciHostAccountFlag.md b/content/reference/services/SoftLayer_Account/getInternalCciHostAccountFlag.md index f42f37717b..03894d4b54 100644 --- a/content/reference/services/SoftLayer_Account/getInternalCciHostAccountFlag.md +++ b/content/reference/services/SoftLayer_Account/getInternalCciHostAccountFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getInternalCciHostAccountFlag-example) {#getInternalCciHostAccountFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getInternalCciHostAccountFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getInternalImageTemplateCreationFlag.md b/content/reference/services/SoftLayer_Account/getInternalImageTemplateCreationFlag.md index 5557433a43..afa3dc340b 100644 --- a/content/reference/services/SoftLayer_Account/getInternalImageTemplateCreationFlag.md +++ b/content/reference/services/SoftLayer_Account/getInternalImageTemplateCreationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getInternalImageTemplateCreationFlag-example) {#getInternalImageTemplateCreationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getInternalImageTemplateCreationFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getInternalNotes.md b/content/reference/services/SoftLayer_Account/getInternalNotes.md index 3dbce6d799..4df641054e 100644 --- a/content/reference/services/SoftLayer_Account/getInternalNotes.md +++ b/content/reference/services/SoftLayer_Account/getInternalNotes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getInternalNotes-example) {#getInternalNotes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getInternalNotes' ``` diff --git a/content/reference/services/SoftLayer_Account/getInternalRestrictionFlag.md b/content/reference/services/SoftLayer_Account/getInternalRestrictionFlag.md index c531df9e15..58370dcaac 100644 --- a/content/reference/services/SoftLayer_Account/getInternalRestrictionFlag.md +++ b/content/reference/services/SoftLayer_Account/getInternalRestrictionFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getInternalRestrictionFlag-example) {#getInternalRestrictionFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getInternalRestrictionFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getInvoices.md b/content/reference/services/SoftLayer_Account/getInvoices.md index 3b46de3199..bc8bb5271f 100644 --- a/content/reference/services/SoftLayer_Account/getInvoices.md +++ b/content/reference/services/SoftLayer_Account/getInvoices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getInvoices-example) {#getInvoices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getInvoices' ``` diff --git a/content/reference/services/SoftLayer_Account/getIpAddresses.md b/content/reference/services/SoftLayer_Account/getIpAddresses.md index 3f3ac4a06a..9e37c1f7dd 100644 --- a/content/reference/services/SoftLayer_Account/getIpAddresses.md +++ b/content/reference/services/SoftLayer_Account/getIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getIpAddresses-example) {#getIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Account/getIscsiIsolationDisabled.md b/content/reference/services/SoftLayer_Account/getIscsiIsolationDisabled.md index ead74bfaca..12708463ef 100644 --- a/content/reference/services/SoftLayer_Account/getIscsiIsolationDisabled.md +++ b/content/reference/services/SoftLayer_Account/getIscsiIsolationDisabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getIscsiIsolationDisabled-example) {#getIscsiIsolationDisabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getIscsiIsolationDisabled' ``` diff --git a/content/reference/services/SoftLayer_Account/getIscsiNetworkStorage.md b/content/reference/services/SoftLayer_Account/getIscsiNetworkStorage.md index f31dd4df6a..c1dc617988 100644 --- a/content/reference/services/SoftLayer_Account/getIscsiNetworkStorage.md +++ b/content/reference/services/SoftLayer_Account/getIscsiNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getIscsiNetworkStorage-example) {#getIscsiNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getIscsiNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getLargestAllowedSubnetCidr.md b/content/reference/services/SoftLayer_Account/getLargestAllowedSubnetCidr.md index 54e3b8c45f..1a6ed7d8bc 100644 --- a/content/reference/services/SoftLayer_Account/getLargestAllowedSubnetCidr.md +++ b/content/reference/services/SoftLayer_Account/getLargestAllowedSubnetCidr.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLargestAllowedSubnetCidr-example) {#getLargestAllowedSubnetCidr-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getLargestAllowedSubnetCidr' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastCanceledBillingItem.md b/content/reference/services/SoftLayer_Account/getLastCanceledBillingItem.md index bda8cc29ac..bf8eb3627a 100644 --- a/content/reference/services/SoftLayer_Account/getLastCanceledBillingItem.md +++ b/content/reference/services/SoftLayer_Account/getLastCanceledBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastCanceledBillingItem-example) {#getLastCanceledBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastCanceledBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastCancelledServerBillingItem.md b/content/reference/services/SoftLayer_Account/getLastCancelledServerBillingItem.md index 120f4731d1..4a71f0e36f 100644 --- a/content/reference/services/SoftLayer_Account/getLastCancelledServerBillingItem.md +++ b/content/reference/services/SoftLayer_Account/getLastCancelledServerBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastCancelledServerBillingItem-example) {#getLastCancelledServerBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastCancelledServerBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastFiveClosedAbuseTickets.md b/content/reference/services/SoftLayer_Account/getLastFiveClosedAbuseTickets.md index eb2927d51b..d378ca71b1 100644 --- a/content/reference/services/SoftLayer_Account/getLastFiveClosedAbuseTickets.md +++ b/content/reference/services/SoftLayer_Account/getLastFiveClosedAbuseTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastFiveClosedAbuseTickets-example) {#getLastFiveClosedAbuseTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastFiveClosedAbuseTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastFiveClosedAccountingTickets.md b/content/reference/services/SoftLayer_Account/getLastFiveClosedAccountingTickets.md index efa5694779..a28dcc8a20 100644 --- a/content/reference/services/SoftLayer_Account/getLastFiveClosedAccountingTickets.md +++ b/content/reference/services/SoftLayer_Account/getLastFiveClosedAccountingTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastFiveClosedAccountingTickets-example) {#getLastFiveClosedAccountingTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastFiveClosedAccountingTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastFiveClosedOtherTickets.md b/content/reference/services/SoftLayer_Account/getLastFiveClosedOtherTickets.md index 9b8e1e6c08..3d7ccf71fc 100644 --- a/content/reference/services/SoftLayer_Account/getLastFiveClosedOtherTickets.md +++ b/content/reference/services/SoftLayer_Account/getLastFiveClosedOtherTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastFiveClosedOtherTickets-example) {#getLastFiveClosedOtherTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastFiveClosedOtherTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastFiveClosedSalesTickets.md b/content/reference/services/SoftLayer_Account/getLastFiveClosedSalesTickets.md index e86d93ab68..fd0de20bf2 100644 --- a/content/reference/services/SoftLayer_Account/getLastFiveClosedSalesTickets.md +++ b/content/reference/services/SoftLayer_Account/getLastFiveClosedSalesTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastFiveClosedSalesTickets-example) {#getLastFiveClosedSalesTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastFiveClosedSalesTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastFiveClosedSupportTickets.md b/content/reference/services/SoftLayer_Account/getLastFiveClosedSupportTickets.md index b0988c5cd5..c66b1cdd99 100644 --- a/content/reference/services/SoftLayer_Account/getLastFiveClosedSupportTickets.md +++ b/content/reference/services/SoftLayer_Account/getLastFiveClosedSupportTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastFiveClosedSupportTickets-example) {#getLastFiveClosedSupportTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastFiveClosedSupportTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getLastFiveClosedTickets.md b/content/reference/services/SoftLayer_Account/getLastFiveClosedTickets.md index aad614e1b1..e8c0f3342b 100644 --- a/content/reference/services/SoftLayer_Account/getLastFiveClosedTickets.md +++ b/content/reference/services/SoftLayer_Account/getLastFiveClosedTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLastFiveClosedTickets-example) {#getLastFiveClosedTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLastFiveClosedTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getLatestBillDate.md b/content/reference/services/SoftLayer_Account/getLatestBillDate.md index 96deeacb80..4f4d194c15 100644 --- a/content/reference/services/SoftLayer_Account/getLatestBillDate.md +++ b/content/reference/services/SoftLayer_Account/getLatestBillDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLatestBillDate-example) {#getLatestBillDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLatestBillDate' ``` diff --git a/content/reference/services/SoftLayer_Account/getLatestRecurringInvoice.md b/content/reference/services/SoftLayer_Account/getLatestRecurringInvoice.md index 785ae97cdd..7c2a90373b 100644 --- a/content/reference/services/SoftLayer_Account/getLatestRecurringInvoice.md +++ b/content/reference/services/SoftLayer_Account/getLatestRecurringInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLatestRecurringInvoice-example) {#getLatestRecurringInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLatestRecurringInvoice' ``` diff --git a/content/reference/services/SoftLayer_Account/getLatestRecurringPendingInvoice.md b/content/reference/services/SoftLayer_Account/getLatestRecurringPendingInvoice.md index 202df5d92c..d636c7be75 100644 --- a/content/reference/services/SoftLayer_Account/getLatestRecurringPendingInvoice.md +++ b/content/reference/services/SoftLayer_Account/getLatestRecurringPendingInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLatestRecurringPendingInvoice-example) {#getLatestRecurringPendingInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLatestRecurringPendingInvoice' ``` diff --git a/content/reference/services/SoftLayer_Account/getLegacyBandwidthAllotments.md b/content/reference/services/SoftLayer_Account/getLegacyBandwidthAllotments.md index 5c96492a6d..6f5175a58a 100644 --- a/content/reference/services/SoftLayer_Account/getLegacyBandwidthAllotments.md +++ b/content/reference/services/SoftLayer_Account/getLegacyBandwidthAllotments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLegacyBandwidthAllotments-example) {#getLegacyBandwidthAllotments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLegacyBandwidthAllotments' ``` diff --git a/content/reference/services/SoftLayer_Account/getLegacyIscsiCapacityGB.md b/content/reference/services/SoftLayer_Account/getLegacyIscsiCapacityGB.md index a620894465..ac25e9d4f5 100644 --- a/content/reference/services/SoftLayer_Account/getLegacyIscsiCapacityGB.md +++ b/content/reference/services/SoftLayer_Account/getLegacyIscsiCapacityGB.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLegacyIscsiCapacityGB-example) {#getLegacyIscsiCapacityGB-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLegacyIscsiCapacityGB' ``` diff --git a/content/reference/services/SoftLayer_Account/getLoadBalancers.md b/content/reference/services/SoftLayer_Account/getLoadBalancers.md index fdc372d492..8f393bff1c 100644 --- a/content/reference/services/SoftLayer_Account/getLoadBalancers.md +++ b/content/reference/services/SoftLayer_Account/getLoadBalancers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLoadBalancers-example) {#getLoadBalancers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLoadBalancers' ``` diff --git a/content/reference/services/SoftLayer_Account/getLockboxCapacityGB.md b/content/reference/services/SoftLayer_Account/getLockboxCapacityGB.md index 724612e59a..901aab8e2a 100644 --- a/content/reference/services/SoftLayer_Account/getLockboxCapacityGB.md +++ b/content/reference/services/SoftLayer_Account/getLockboxCapacityGB.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLockboxCapacityGB-example) {#getLockboxCapacityGB-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLockboxCapacityGB' ``` diff --git a/content/reference/services/SoftLayer_Account/getLockboxNetworkStorage.md b/content/reference/services/SoftLayer_Account/getLockboxNetworkStorage.md index 87997ea715..72d3a0a5ca 100644 --- a/content/reference/services/SoftLayer_Account/getLockboxNetworkStorage.md +++ b/content/reference/services/SoftLayer_Account/getLockboxNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getLockboxNetworkStorage-example) {#getLockboxNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getLockboxNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getManualPaymentsUnderReview.md b/content/reference/services/SoftLayer_Account/getManualPaymentsUnderReview.md index d8a96ce2a5..13eb4f3b3c 100644 --- a/content/reference/services/SoftLayer_Account/getManualPaymentsUnderReview.md +++ b/content/reference/services/SoftLayer_Account/getManualPaymentsUnderReview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getManualPaymentsUnderReview-example) {#getManualPaymentsUnderReview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getManualPaymentsUnderReview' ``` diff --git a/content/reference/services/SoftLayer_Account/getMasterUser.md b/content/reference/services/SoftLayer_Account/getMasterUser.md index ae30307dc8..c78984c2e7 100644 --- a/content/reference/services/SoftLayer_Account/getMasterUser.md +++ b/content/reference/services/SoftLayer_Account/getMasterUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getMasterUser-example) {#getMasterUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getMasterUser' ``` diff --git a/content/reference/services/SoftLayer_Account/getMediaDataTransferRequests.md b/content/reference/services/SoftLayer_Account/getMediaDataTransferRequests.md index e3cd374960..6abb378cf3 100644 --- a/content/reference/services/SoftLayer_Account/getMediaDataTransferRequests.md +++ b/content/reference/services/SoftLayer_Account/getMediaDataTransferRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getMediaDataTransferRequests-example) {#getMediaDataTransferRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getMediaDataTransferRequests' ``` diff --git a/content/reference/services/SoftLayer_Account/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Account/getMetricTrackingObject.md index 4866874e43..0c5f87d17c 100644 --- a/content/reference/services/SoftLayer_Account/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Account/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Account/getMigratedToIbmCloudPortalFlag.md b/content/reference/services/SoftLayer_Account/getMigratedToIbmCloudPortalFlag.md index 43c4d764be..def76a4833 100644 --- a/content/reference/services/SoftLayer_Account/getMigratedToIbmCloudPortalFlag.md +++ b/content/reference/services/SoftLayer_Account/getMigratedToIbmCloudPortalFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getMigratedToIbmCloudPortalFlag-example) {#getMigratedToIbmCloudPortalFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getMigratedToIbmCloudPortalFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getMonthlyBareMetalInstances.md b/content/reference/services/SoftLayer_Account/getMonthlyBareMetalInstances.md index 3d26f57c6c..892c00986c 100644 --- a/content/reference/services/SoftLayer_Account/getMonthlyBareMetalInstances.md +++ b/content/reference/services/SoftLayer_Account/getMonthlyBareMetalInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getMonthlyBareMetalInstances-example) {#getMonthlyBareMetalInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getMonthlyBareMetalInstances' ``` diff --git a/content/reference/services/SoftLayer_Account/getMonthlyVirtualGuests.md b/content/reference/services/SoftLayer_Account/getMonthlyVirtualGuests.md index 9a1f6ff941..57e8d3ab81 100644 --- a/content/reference/services/SoftLayer_Account/getMonthlyVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getMonthlyVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getMonthlyVirtualGuests-example) {#getMonthlyVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getMonthlyVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getNasNetworkStorage.md b/content/reference/services/SoftLayer_Account/getNasNetworkStorage.md index 0e954f1254..d80a1ed582 100644 --- a/content/reference/services/SoftLayer_Account/getNasNetworkStorage.md +++ b/content/reference/services/SoftLayer_Account/getNasNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNasNetworkStorage-example) {#getNasNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNasNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetAppActiveAccountLicenseKeys.md b/content/reference/services/SoftLayer_Account/getNetAppActiveAccountLicenseKeys.md index 4e914e21a7..4d91539409 100644 --- a/content/reference/services/SoftLayer_Account/getNetAppActiveAccountLicenseKeys.md +++ b/content/reference/services/SoftLayer_Account/getNetAppActiveAccountLicenseKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetAppActiveAccountLicenseKeys-example) {#getNetAppActiveAccountLicenseKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getNetAppActiveAccountLicenseKeys' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkCreationFlag.md b/content/reference/services/SoftLayer_Account/getNetworkCreationFlag.md index da7cf1f0c3..0ef1275968 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkCreationFlag.md +++ b/content/reference/services/SoftLayer_Account/getNetworkCreationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkCreationFlag-example) {#getNetworkCreationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkCreationFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkGateways.md b/content/reference/services/SoftLayer_Account/getNetworkGateways.md index 712954ace2..8a37fa9224 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkGateways.md +++ b/content/reference/services/SoftLayer_Account/getNetworkGateways.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkGateways-example) {#getNetworkGateways-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkGateways' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkHardware.md b/content/reference/services/SoftLayer_Account/getNetworkHardware.md index 7092d98963..648627494f 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkHardware.md +++ b/content/reference/services/SoftLayer_Account/getNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkHardware-example) {#getNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMessageDeliveryAccounts.md b/content/reference/services/SoftLayer_Account/getNetworkMessageDeliveryAccounts.md index 9855b05f11..179590eb50 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMessageDeliveryAccounts.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMessageDeliveryAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMessageDeliveryAccounts-example) {#getNetworkMessageDeliveryAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMessageDeliveryAccounts' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMonitorDownHardware.md b/content/reference/services/SoftLayer_Account/getNetworkMonitorDownHardware.md index 2c1aa3bbf3..de0c7acfcf 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMonitorDownHardware.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMonitorDownHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMonitorDownHardware-example) {#getNetworkMonitorDownHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMonitorDownHardware' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMonitorDownVirtualGuests.md b/content/reference/services/SoftLayer_Account/getNetworkMonitorDownVirtualGuests.md index d1f8c7fb73..7712a3ca91 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMonitorDownVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMonitorDownVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMonitorDownVirtualGuests-example) {#getNetworkMonitorDownVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMonitorDownVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringHardware.md b/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringHardware.md index bf55049e59..b5981960c7 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringHardware.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMonitorRecoveringHardware-example) {#getNetworkMonitorRecoveringHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMonitorRecoveringHardware' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringVirtualGuests.md b/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringVirtualGuests.md index 9b6a29cded..7769cd3ef9 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMonitorRecoveringVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMonitorRecoveringVirtualGuests-example) {#getNetworkMonitorRecoveringVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMonitorRecoveringVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMonitorUpHardware.md b/content/reference/services/SoftLayer_Account/getNetworkMonitorUpHardware.md index b3bd9ef54e..5dc0a21149 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMonitorUpHardware.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMonitorUpHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMonitorUpHardware-example) {#getNetworkMonitorUpHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMonitorUpHardware' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkMonitorUpVirtualGuests.md b/content/reference/services/SoftLayer_Account/getNetworkMonitorUpVirtualGuests.md index 7a7c4e1394..880a281d91 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkMonitorUpVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getNetworkMonitorUpVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkMonitorUpVirtualGuests-example) {#getNetworkMonitorUpVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkMonitorUpVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkStorage.md b/content/reference/services/SoftLayer_Account/getNetworkStorage.md index c994fa77a8..4f32311af9 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Account/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkStorageGroups.md b/content/reference/services/SoftLayer_Account/getNetworkStorageGroups.md index e965dc75e9..72c9ea0310 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkStorageGroups.md +++ b/content/reference/services/SoftLayer_Account/getNetworkStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkStorageGroups-example) {#getNetworkStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkTunnelContexts.md b/content/reference/services/SoftLayer_Account/getNetworkTunnelContexts.md index e3467efe68..d6d463a6d6 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkTunnelContexts.md +++ b/content/reference/services/SoftLayer_Account/getNetworkTunnelContexts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkTunnelContexts-example) {#getNetworkTunnelContexts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkTunnelContexts' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkVlanSpan.md b/content/reference/services/SoftLayer_Account/getNetworkVlanSpan.md index ee41dc8903..8ab9b2968f 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkVlanSpan.md +++ b/content/reference/services/SoftLayer_Account/getNetworkVlanSpan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkVlanSpan-example) {#getNetworkVlanSpan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkVlanSpan' ``` diff --git a/content/reference/services/SoftLayer_Account/getNetworkVlans.md b/content/reference/services/SoftLayer_Account/getNetworkVlans.md index bce6cd6d90..bad905523d 100644 --- a/content/reference/services/SoftLayer_Account/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Account/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextBillingPublicAllotmentHardwareBandwidthDetails.md b/content/reference/services/SoftLayer_Account/getNextBillingPublicAllotmentHardwareBandwidthDetails.md index 3c3c687573..ab8314c2d5 100644 --- a/content/reference/services/SoftLayer_Account/getNextBillingPublicAllotmentHardwareBandwidthDetails.md +++ b/content/reference/services/SoftLayer_Account/getNextBillingPublicAllotmentHardwareBandwidthDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextBillingPublicAllotmentHardwareBandwidthDetails-example) {#getNextBillingPublicAllotmentHardwareBandwidthDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextBillingPublicAllotmentHardwareBandwidthDetails' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceExcel.md b/content/reference/services/SoftLayer_Account/getNextInvoiceExcel.md index 973da92ac9..2a30dcf6c9 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceExcel.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceExcel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceExcel-example) {#getNextInvoiceExcel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getNextInvoiceExcel' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceIncubatorExemptTotal.md b/content/reference/services/SoftLayer_Account/getNextInvoiceIncubatorExemptTotal.md index 7fca8b585c..b2f3f59d54 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceIncubatorExemptTotal.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceIncubatorExemptTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceIncubatorExemptTotal-example) {#getNextInvoiceIncubatorExemptTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceIncubatorExemptTotal' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoicePdf.md b/content/reference/services/SoftLayer_Account/getNextInvoicePdf.md index 687e0d82ec..864dd1efe4 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoicePdf.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoicePdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoicePdf-example) {#getNextInvoicePdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getNextInvoicePdf' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoicePdfDetailed.md b/content/reference/services/SoftLayer_Account/getNextInvoicePdfDetailed.md index 577aede1cf..06d922b265 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoicePdfDetailed.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoicePdfDetailed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoicePdfDetailed-example) {#getNextInvoicePdfDetailed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getNextInvoicePdfDetailed' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceRecurringAmountEligibleForAccountDiscount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceRecurringAmountEligibleForAccountDiscount.md index bac6401374..0a736bdb00 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceRecurringAmountEligibleForAccountDiscount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceRecurringAmountEligibleForAccountDiscount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceRecurringAmountEligibleForAccountDiscount-example) {#getNextInvoiceRecurringAmountEligibleForAccountDiscount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceRecurringAmountEligibleForAccountDiscount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTopLevelBillingItems.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTopLevelBillingItems.md index d5407e978e..d04ba24ae7 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTopLevelBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTopLevelBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTopLevelBillingItems-example) {#getNextInvoiceTopLevelBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTopLevelBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalAmount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalAmount.md index 90d89fd913..8dc3f2514e 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalAmount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalAmount-example) {#getNextInvoiceTotalAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeAmount.md index a62c347803..41987e9041 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalOneTimeAmount-example) {#getNextInvoiceTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeTaxAmount.md index b005ebfc56..2d0365b47b 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalOneTimeTaxAmount-example) {#getNextInvoiceTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmount.md index 54e70da977..6d32931824 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringAmount-example) {#getNextInvoiceTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmountBeforeAccountDiscount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmountBeforeAccountDiscount.md index 8f67be197e..1fca58f387 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmountBeforeAccountDiscount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringAmountBeforeAccountDiscount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringAmountBeforeAccountDiscount-example) {#getNextInvoiceTotalRecurringAmountBeforeAccountDiscount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalRecurringAmountBeforeAccountDiscount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringTaxAmount.md index b0fa0be944..0805d85127 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringTaxAmount-example) {#getNextInvoiceTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalTaxableRecurringAmount.md b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalTaxableRecurringAmount.md index f85329a0c6..f754e4e084 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceTotalTaxableRecurringAmount.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceTotalTaxableRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalTaxableRecurringAmount-example) {#getNextInvoiceTotalTaxableRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNextInvoiceTotalTaxableRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getNextInvoiceZeroFeeItemCounts.md b/content/reference/services/SoftLayer_Account/getNextInvoiceZeroFeeItemCounts.md index 30844b09fe..c74dcf6b6b 100644 --- a/content/reference/services/SoftLayer_Account/getNextInvoiceZeroFeeItemCounts.md +++ b/content/reference/services/SoftLayer_Account/getNextInvoiceZeroFeeItemCounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNextInvoiceZeroFeeItemCounts-example) {#getNextInvoiceZeroFeeItemCounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getNextInvoiceZeroFeeItemCounts' ``` diff --git a/content/reference/services/SoftLayer_Account/getNotificationSubscribers.md b/content/reference/services/SoftLayer_Account/getNotificationSubscribers.md index aeecfbcf3f..0d1e7a6ce3 100644 --- a/content/reference/services/SoftLayer_Account/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_Account/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_Account/getObject.md b/content/reference/services/SoftLayer_Account/getObject.md index 8c05e83c19..48e3d115be 100644 --- a/content/reference/services/SoftLayer_Account/getObject.md +++ b/content/reference/services/SoftLayer_Account/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenAbuseTickets.md b/content/reference/services/SoftLayer_Account/getOpenAbuseTickets.md index f1a0d79992..e4972cbf45 100644 --- a/content/reference/services/SoftLayer_Account/getOpenAbuseTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenAbuseTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenAbuseTickets-example) {#getOpenAbuseTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenAbuseTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenAccountingTickets.md b/content/reference/services/SoftLayer_Account/getOpenAccountingTickets.md index d36e825fb8..d5444dcbba 100644 --- a/content/reference/services/SoftLayer_Account/getOpenAccountingTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenAccountingTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenAccountingTickets-example) {#getOpenAccountingTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenAccountingTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenBillingTickets.md b/content/reference/services/SoftLayer_Account/getOpenBillingTickets.md index 7a8219ffbf..e48b353921 100644 --- a/content/reference/services/SoftLayer_Account/getOpenBillingTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenBillingTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenBillingTickets-example) {#getOpenBillingTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenBillingTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenCancellationRequests.md b/content/reference/services/SoftLayer_Account/getOpenCancellationRequests.md index 617a6b5b68..6b19edd637 100644 --- a/content/reference/services/SoftLayer_Account/getOpenCancellationRequests.md +++ b/content/reference/services/SoftLayer_Account/getOpenCancellationRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenCancellationRequests-example) {#getOpenCancellationRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenCancellationRequests' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenOtherTickets.md b/content/reference/services/SoftLayer_Account/getOpenOtherTickets.md index 936d72858f..9d76ae7cc4 100644 --- a/content/reference/services/SoftLayer_Account/getOpenOtherTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenOtherTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenOtherTickets-example) {#getOpenOtherTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenOtherTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenRecurringInvoices.md b/content/reference/services/SoftLayer_Account/getOpenRecurringInvoices.md index 5d61f13f7d..2be427c08e 100644 --- a/content/reference/services/SoftLayer_Account/getOpenRecurringInvoices.md +++ b/content/reference/services/SoftLayer_Account/getOpenRecurringInvoices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenRecurringInvoices-example) {#getOpenRecurringInvoices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenRecurringInvoices' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenSalesTickets.md b/content/reference/services/SoftLayer_Account/getOpenSalesTickets.md index c1ca7ba248..d555fbf4dd 100644 --- a/content/reference/services/SoftLayer_Account/getOpenSalesTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenSalesTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenSalesTickets-example) {#getOpenSalesTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenSalesTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenStackAccountLinks.md b/content/reference/services/SoftLayer_Account/getOpenStackAccountLinks.md index 1633e01c60..4d16144c62 100644 --- a/content/reference/services/SoftLayer_Account/getOpenStackAccountLinks.md +++ b/content/reference/services/SoftLayer_Account/getOpenStackAccountLinks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenStackAccountLinks-example) {#getOpenStackAccountLinks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenStackAccountLinks' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenStackObjectStorage.md b/content/reference/services/SoftLayer_Account/getOpenStackObjectStorage.md index 54ac75193f..ff4c87e6cb 100644 --- a/content/reference/services/SoftLayer_Account/getOpenStackObjectStorage.md +++ b/content/reference/services/SoftLayer_Account/getOpenStackObjectStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenStackObjectStorage-example) {#getOpenStackObjectStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenStackObjectStorage' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenSupportTickets.md b/content/reference/services/SoftLayer_Account/getOpenSupportTickets.md index 05bfd45e6c..12acf3229f 100644 --- a/content/reference/services/SoftLayer_Account/getOpenSupportTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenSupportTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenSupportTickets-example) {#getOpenSupportTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenSupportTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenTickets.md b/content/reference/services/SoftLayer_Account/getOpenTickets.md index aacbd368bc..f874722b1b 100644 --- a/content/reference/services/SoftLayer_Account/getOpenTickets.md +++ b/content/reference/services/SoftLayer_Account/getOpenTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenTickets-example) {#getOpenTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getOpenTicketsWaitingOnCustomer.md b/content/reference/services/SoftLayer_Account/getOpenTicketsWaitingOnCustomer.md index d71540addf..1c426f54f8 100644 --- a/content/reference/services/SoftLayer_Account/getOpenTicketsWaitingOnCustomer.md +++ b/content/reference/services/SoftLayer_Account/getOpenTicketsWaitingOnCustomer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOpenTicketsWaitingOnCustomer-example) {#getOpenTicketsWaitingOnCustomer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOpenTicketsWaitingOnCustomer' ``` diff --git a/content/reference/services/SoftLayer_Account/getOrders.md b/content/reference/services/SoftLayer_Account/getOrders.md index af1b74a35d..b4f867148d 100644 --- a/content/reference/services/SoftLayer_Account/getOrders.md +++ b/content/reference/services/SoftLayer_Account/getOrders.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOrders-example) {#getOrders-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOrders' ``` diff --git a/content/reference/services/SoftLayer_Account/getOrphanBillingItems.md b/content/reference/services/SoftLayer_Account/getOrphanBillingItems.md index 1d7f8fe0e7..ce2c19f0ce 100644 --- a/content/reference/services/SoftLayer_Account/getOrphanBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getOrphanBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOrphanBillingItems-example) {#getOrphanBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOrphanBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getOwnedBrands.md b/content/reference/services/SoftLayer_Account/getOwnedBrands.md index 933300d6d9..309ce7aaba 100644 --- a/content/reference/services/SoftLayer_Account/getOwnedBrands.md +++ b/content/reference/services/SoftLayer_Account/getOwnedBrands.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOwnedBrands-example) {#getOwnedBrands-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOwnedBrands' ``` diff --git a/content/reference/services/SoftLayer_Account/getOwnedHardwareGenericComponentModels.md b/content/reference/services/SoftLayer_Account/getOwnedHardwareGenericComponentModels.md index 1c4c2f473b..32e82d8936 100644 --- a/content/reference/services/SoftLayer_Account/getOwnedHardwareGenericComponentModels.md +++ b/content/reference/services/SoftLayer_Account/getOwnedHardwareGenericComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getOwnedHardwareGenericComponentModels-example) {#getOwnedHardwareGenericComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getOwnedHardwareGenericComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Account/getPaymentProcessors.md b/content/reference/services/SoftLayer_Account/getPaymentProcessors.md index be994a8e09..397d485010 100644 --- a/content/reference/services/SoftLayer_Account/getPaymentProcessors.md +++ b/content/reference/services/SoftLayer_Account/getPaymentProcessors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPaymentProcessors-example) {#getPaymentProcessors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPaymentProcessors' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingCreditCardChangeRequestData.md b/content/reference/services/SoftLayer_Account/getPendingCreditCardChangeRequestData.md index ef37eb0308..7333ec28d7 100644 --- a/content/reference/services/SoftLayer_Account/getPendingCreditCardChangeRequestData.md +++ b/content/reference/services/SoftLayer_Account/getPendingCreditCardChangeRequestData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingCreditCardChangeRequestData-example) {#getPendingCreditCardChangeRequestData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getPendingCreditCardChangeRequestData' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingEvents.md b/content/reference/services/SoftLayer_Account/getPendingEvents.md index 97e25d6683..ae7db62e58 100644 --- a/content/reference/services/SoftLayer_Account/getPendingEvents.md +++ b/content/reference/services/SoftLayer_Account/getPendingEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingEvents-example) {#getPendingEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingEvents' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoice.md b/content/reference/services/SoftLayer_Account/getPendingInvoice.md index 84d60b4ff8..fe6e7d8081 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoice.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoice-example) {#getPendingInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoice' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoiceTopLevelItems.md b/content/reference/services/SoftLayer_Account/getPendingInvoiceTopLevelItems.md index dfebcd3ab0..9056811a97 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoiceTopLevelItems.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoiceTopLevelItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoiceTopLevelItems-example) {#getPendingInvoiceTopLevelItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoiceTopLevelItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalAmount.md b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalAmount.md index d5334d46b3..55e70d2586 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalAmount.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoiceTotalAmount-example) {#getPendingInvoiceTotalAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoiceTotalAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeAmount.md index 00e64e3724..afbb533dd5 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoiceTotalOneTimeAmount-example) {#getPendingInvoiceTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoiceTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeTaxAmount.md index 7cf63991fb..2a3223329c 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoiceTotalOneTimeTaxAmount-example) {#getPendingInvoiceTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoiceTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringAmount.md b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringAmount.md index 458d864e4e..4206af05b2 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoiceTotalRecurringAmount-example) {#getPendingInvoiceTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoiceTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringTaxAmount.md index 3d1e2c93ac..8bd3db9d84 100644 --- a/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Account/getPendingInvoiceTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPendingInvoiceTotalRecurringTaxAmount-example) {#getPendingInvoiceTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPendingInvoiceTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Account/getPermissionGroups.md b/content/reference/services/SoftLayer_Account/getPermissionGroups.md index 8b39e92127..f5f67b09fb 100644 --- a/content/reference/services/SoftLayer_Account/getPermissionGroups.md +++ b/content/reference/services/SoftLayer_Account/getPermissionGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPermissionGroups-example) {#getPermissionGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPermissionGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getPermissionRoles.md b/content/reference/services/SoftLayer_Account/getPermissionRoles.md index ce1bc1be1a..2db342ec5e 100644 --- a/content/reference/services/SoftLayer_Account/getPermissionRoles.md +++ b/content/reference/services/SoftLayer_Account/getPermissionRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPermissionRoles-example) {#getPermissionRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPermissionRoles' ``` diff --git a/content/reference/services/SoftLayer_Account/getPlacementGroups.md b/content/reference/services/SoftLayer_Account/getPlacementGroups.md index 3a915bb77e..e847e30f5d 100644 --- a/content/reference/services/SoftLayer_Account/getPlacementGroups.md +++ b/content/reference/services/SoftLayer_Account/getPlacementGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPlacementGroups-example) {#getPlacementGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPlacementGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getPortableStorageVolumes.md b/content/reference/services/SoftLayer_Account/getPortableStorageVolumes.md index 4765d83833..72a482640d 100644 --- a/content/reference/services/SoftLayer_Account/getPortableStorageVolumes.md +++ b/content/reference/services/SoftLayer_Account/getPortableStorageVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPortableStorageVolumes-example) {#getPortableStorageVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPortableStorageVolumes' ``` diff --git a/content/reference/services/SoftLayer_Account/getPostProvisioningHooks.md b/content/reference/services/SoftLayer_Account/getPostProvisioningHooks.md index 8391aca74d..8e247fbcc1 100644 --- a/content/reference/services/SoftLayer_Account/getPostProvisioningHooks.md +++ b/content/reference/services/SoftLayer_Account/getPostProvisioningHooks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPostProvisioningHooks-example) {#getPostProvisioningHooks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPostProvisioningHooks' ``` diff --git a/content/reference/services/SoftLayer_Account/getPptpVpnAllowedFlag.md b/content/reference/services/SoftLayer_Account/getPptpVpnAllowedFlag.md index 2836a3b420..8226524eb9 100644 --- a/content/reference/services/SoftLayer_Account/getPptpVpnAllowedFlag.md +++ b/content/reference/services/SoftLayer_Account/getPptpVpnAllowedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPptpVpnAllowedFlag-example) {#getPptpVpnAllowedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPptpVpnAllowedFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getPptpVpnUsers.md b/content/reference/services/SoftLayer_Account/getPptpVpnUsers.md index 6e3046ba90..fda461804b 100644 --- a/content/reference/services/SoftLayer_Account/getPptpVpnUsers.md +++ b/content/reference/services/SoftLayer_Account/getPptpVpnUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPptpVpnUsers-example) {#getPptpVpnUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPptpVpnUsers' ``` diff --git a/content/reference/services/SoftLayer_Account/getPreviousRecurringRevenue.md b/content/reference/services/SoftLayer_Account/getPreviousRecurringRevenue.md index 4657946b7a..692c27da24 100644 --- a/content/reference/services/SoftLayer_Account/getPreviousRecurringRevenue.md +++ b/content/reference/services/SoftLayer_Account/getPreviousRecurringRevenue.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPreviousRecurringRevenue-example) {#getPreviousRecurringRevenue-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPreviousRecurringRevenue' ``` diff --git a/content/reference/services/SoftLayer_Account/getPriceRestrictions.md b/content/reference/services/SoftLayer_Account/getPriceRestrictions.md index 1376691f97..2215b36ea5 100644 --- a/content/reference/services/SoftLayer_Account/getPriceRestrictions.md +++ b/content/reference/services/SoftLayer_Account/getPriceRestrictions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPriceRestrictions-example) {#getPriceRestrictions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPriceRestrictions' ``` diff --git a/content/reference/services/SoftLayer_Account/getPriorityOneTickets.md b/content/reference/services/SoftLayer_Account/getPriorityOneTickets.md index d0a9bf2615..645845216d 100644 --- a/content/reference/services/SoftLayer_Account/getPriorityOneTickets.md +++ b/content/reference/services/SoftLayer_Account/getPriorityOneTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPriorityOneTickets-example) {#getPriorityOneTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPriorityOneTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getPrivateAllotmentHardwareBandwidthDetails.md b/content/reference/services/SoftLayer_Account/getPrivateAllotmentHardwareBandwidthDetails.md index 0185aaa3f3..da61a23471 100644 --- a/content/reference/services/SoftLayer_Account/getPrivateAllotmentHardwareBandwidthDetails.md +++ b/content/reference/services/SoftLayer_Account/getPrivateAllotmentHardwareBandwidthDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPrivateAllotmentHardwareBandwidthDetails-example) {#getPrivateAllotmentHardwareBandwidthDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPrivateAllotmentHardwareBandwidthDetails' ``` diff --git a/content/reference/services/SoftLayer_Account/getPrivateBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Account/getPrivateBlockDeviceTemplateGroups.md index cdd95ee071..7318e9becd 100644 --- a/content/reference/services/SoftLayer_Account/getPrivateBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Account/getPrivateBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPrivateBlockDeviceTemplateGroups-example) {#getPrivateBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPrivateBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getPrivateIpAddresses.md b/content/reference/services/SoftLayer_Account/getPrivateIpAddresses.md index ea78d87c43..326db1b9df 100644 --- a/content/reference/services/SoftLayer_Account/getPrivateIpAddresses.md +++ b/content/reference/services/SoftLayer_Account/getPrivateIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPrivateIpAddresses-example) {#getPrivateIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPrivateIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Account/getPrivateNetworkVlans.md b/content/reference/services/SoftLayer_Account/getPrivateNetworkVlans.md index 5603a0ffc0..e7727bbf43 100644 --- a/content/reference/services/SoftLayer_Account/getPrivateNetworkVlans.md +++ b/content/reference/services/SoftLayer_Account/getPrivateNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPrivateNetworkVlans-example) {#getPrivateNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPrivateNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Account/getPrivateSubnets.md b/content/reference/services/SoftLayer_Account/getPrivateSubnets.md index ae47bd6142..6517437bbd 100644 --- a/content/reference/services/SoftLayer_Account/getPrivateSubnets.md +++ b/content/reference/services/SoftLayer_Account/getPrivateSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPrivateSubnets-example) {#getPrivateSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPrivateSubnets' ``` diff --git a/content/reference/services/SoftLayer_Account/getProofOfConceptAccountFlag.md b/content/reference/services/SoftLayer_Account/getProofOfConceptAccountFlag.md index 93c364ffa0..ce3c0ffa48 100644 --- a/content/reference/services/SoftLayer_Account/getProofOfConceptAccountFlag.md +++ b/content/reference/services/SoftLayer_Account/getProofOfConceptAccountFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getProofOfConceptAccountFlag-example) {#getProofOfConceptAccountFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getProofOfConceptAccountFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getPublicAllotmentHardwareBandwidthDetails.md b/content/reference/services/SoftLayer_Account/getPublicAllotmentHardwareBandwidthDetails.md index b63af42cad..971a6a5195 100644 --- a/content/reference/services/SoftLayer_Account/getPublicAllotmentHardwareBandwidthDetails.md +++ b/content/reference/services/SoftLayer_Account/getPublicAllotmentHardwareBandwidthDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPublicAllotmentHardwareBandwidthDetails-example) {#getPublicAllotmentHardwareBandwidthDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPublicAllotmentHardwareBandwidthDetails' ``` diff --git a/content/reference/services/SoftLayer_Account/getPublicIpAddresses.md b/content/reference/services/SoftLayer_Account/getPublicIpAddresses.md index ab219e85b6..b30ccf08ea 100644 --- a/content/reference/services/SoftLayer_Account/getPublicIpAddresses.md +++ b/content/reference/services/SoftLayer_Account/getPublicIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPublicIpAddresses-example) {#getPublicIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPublicIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Account/getPublicNetworkVlans.md b/content/reference/services/SoftLayer_Account/getPublicNetworkVlans.md index 7e6c3560ea..4ed8ad75b8 100644 --- a/content/reference/services/SoftLayer_Account/getPublicNetworkVlans.md +++ b/content/reference/services/SoftLayer_Account/getPublicNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPublicNetworkVlans-example) {#getPublicNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPublicNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Account/getPublicSubnets.md b/content/reference/services/SoftLayer_Account/getPublicSubnets.md index 71296ebae5..aacc7790f2 100644 --- a/content/reference/services/SoftLayer_Account/getPublicSubnets.md +++ b/content/reference/services/SoftLayer_Account/getPublicSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getPublicSubnets-example) {#getPublicSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getPublicSubnets' ``` diff --git a/content/reference/services/SoftLayer_Account/getQuotes.md b/content/reference/services/SoftLayer_Account/getQuotes.md index fd168f1f58..2f4422501b 100644 --- a/content/reference/services/SoftLayer_Account/getQuotes.md +++ b/content/reference/services/SoftLayer_Account/getQuotes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getQuotes-example) {#getQuotes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getQuotes' ``` diff --git a/content/reference/services/SoftLayer_Account/getRecentEvents.md b/content/reference/services/SoftLayer_Account/getRecentEvents.md index 2de54edeee..dfa67968d9 100644 --- a/content/reference/services/SoftLayer_Account/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Account/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Account/getReferralPartner.md b/content/reference/services/SoftLayer_Account/getReferralPartner.md index 3e51a16527..6cbcdfe560 100644 --- a/content/reference/services/SoftLayer_Account/getReferralPartner.md +++ b/content/reference/services/SoftLayer_Account/getReferralPartner.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReferralPartner-example) {#getReferralPartner-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getReferralPartner' ``` diff --git a/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionForecast.md b/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionForecast.md index 9b69d1762b..4353afccdd 100644 --- a/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionForecast.md +++ b/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionForecast.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReferralPartnerCommissionForecast-example) {#getReferralPartnerCommissionForecast-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getReferralPartnerCommissionForecast' ``` diff --git a/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionHistory.md b/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionHistory.md index fc80f5745b..0887f1bb33 100644 --- a/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionHistory.md +++ b/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReferralPartnerCommissionHistory-example) {#getReferralPartnerCommissionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getReferralPartnerCommissionHistory' ``` diff --git a/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionPending.md b/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionPending.md index 6bd148e9df..d88195c29c 100644 --- a/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionPending.md +++ b/content/reference/services/SoftLayer_Account/getReferralPartnerCommissionPending.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReferralPartnerCommissionPending-example) {#getReferralPartnerCommissionPending-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getReferralPartnerCommissionPending' ``` diff --git a/content/reference/services/SoftLayer_Account/getReferredAccountFlag.md b/content/reference/services/SoftLayer_Account/getReferredAccountFlag.md index e5f69913e8..57688acc7b 100644 --- a/content/reference/services/SoftLayer_Account/getReferredAccountFlag.md +++ b/content/reference/services/SoftLayer_Account/getReferredAccountFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReferredAccountFlag-example) {#getReferredAccountFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getReferredAccountFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getReferredAccounts.md b/content/reference/services/SoftLayer_Account/getReferredAccounts.md index 7cb06a4c35..12b19b10bd 100644 --- a/content/reference/services/SoftLayer_Account/getReferredAccounts.md +++ b/content/reference/services/SoftLayer_Account/getReferredAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReferredAccounts-example) {#getReferredAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getReferredAccounts' ``` diff --git a/content/reference/services/SoftLayer_Account/getRegulatedWorkloads.md b/content/reference/services/SoftLayer_Account/getRegulatedWorkloads.md index b8f7377743..4a6a6744f8 100644 --- a/content/reference/services/SoftLayer_Account/getRegulatedWorkloads.md +++ b/content/reference/services/SoftLayer_Account/getRegulatedWorkloads.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getRegulatedWorkloads-example) {#getRegulatedWorkloads-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getRegulatedWorkloads' ``` diff --git a/content/reference/services/SoftLayer_Account/getRemoteManagementCommandRequests.md b/content/reference/services/SoftLayer_Account/getRemoteManagementCommandRequests.md index dd40c4eb0e..8afe7627ee 100644 --- a/content/reference/services/SoftLayer_Account/getRemoteManagementCommandRequests.md +++ b/content/reference/services/SoftLayer_Account/getRemoteManagementCommandRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getRemoteManagementCommandRequests-example) {#getRemoteManagementCommandRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getRemoteManagementCommandRequests' ``` diff --git a/content/reference/services/SoftLayer_Account/getReplicationEvents.md b/content/reference/services/SoftLayer_Account/getReplicationEvents.md index c38cdbec41..3fab290c1d 100644 --- a/content/reference/services/SoftLayer_Account/getReplicationEvents.md +++ b/content/reference/services/SoftLayer_Account/getReplicationEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReplicationEvents-example) {#getReplicationEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getReplicationEvents' ``` diff --git a/content/reference/services/SoftLayer_Account/getRequireSilentIBMidUserCreation.md b/content/reference/services/SoftLayer_Account/getRequireSilentIBMidUserCreation.md index b8f3a146cd..27f0e49df8 100644 --- a/content/reference/services/SoftLayer_Account/getRequireSilentIBMidUserCreation.md +++ b/content/reference/services/SoftLayer_Account/getRequireSilentIBMidUserCreation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getRequireSilentIBMidUserCreation-example) {#getRequireSilentIBMidUserCreation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getRequireSilentIBMidUserCreation' ``` diff --git a/content/reference/services/SoftLayer_Account/getReservedCapacityAgreements.md b/content/reference/services/SoftLayer_Account/getReservedCapacityAgreements.md index 361d510d05..7eabd81fb7 100644 --- a/content/reference/services/SoftLayer_Account/getReservedCapacityAgreements.md +++ b/content/reference/services/SoftLayer_Account/getReservedCapacityAgreements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReservedCapacityAgreements-example) {#getReservedCapacityAgreements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getReservedCapacityAgreements' ``` diff --git a/content/reference/services/SoftLayer_Account/getReservedCapacityGroups.md b/content/reference/services/SoftLayer_Account/getReservedCapacityGroups.md index 52c6bd7e0e..1508535fc2 100644 --- a/content/reference/services/SoftLayer_Account/getReservedCapacityGroups.md +++ b/content/reference/services/SoftLayer_Account/getReservedCapacityGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getReservedCapacityGroups-example) {#getReservedCapacityGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getReservedCapacityGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getRouters.md b/content/reference/services/SoftLayer_Account/getRouters.md index 9ad647707e..4d2d7446bd 100644 --- a/content/reference/services/SoftLayer_Account/getRouters.md +++ b/content/reference/services/SoftLayer_Account/getRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getRouters-example) {#getRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getRouters' ``` diff --git a/content/reference/services/SoftLayer_Account/getRwhoisData.md b/content/reference/services/SoftLayer_Account/getRwhoisData.md index 331ee62121..d057c3174c 100644 --- a/content/reference/services/SoftLayer_Account/getRwhoisData.md +++ b/content/reference/services/SoftLayer_Account/getRwhoisData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getRwhoisData-example) {#getRwhoisData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getRwhoisData' ``` diff --git a/content/reference/services/SoftLayer_Account/getSamlAuthentication.md b/content/reference/services/SoftLayer_Account/getSamlAuthentication.md index 2fb1c294cd..aea58e28c3 100644 --- a/content/reference/services/SoftLayer_Account/getSamlAuthentication.md +++ b/content/reference/services/SoftLayer_Account/getSamlAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSamlAuthentication-example) {#getSamlAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSamlAuthentication' ``` diff --git a/content/reference/services/SoftLayer_Account/getSecondaryDomains.md b/content/reference/services/SoftLayer_Account/getSecondaryDomains.md index cce81d61e2..637090160a 100644 --- a/content/reference/services/SoftLayer_Account/getSecondaryDomains.md +++ b/content/reference/services/SoftLayer_Account/getSecondaryDomains.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSecondaryDomains-example) {#getSecondaryDomains-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSecondaryDomains' ``` diff --git a/content/reference/services/SoftLayer_Account/getSecurityCertificates.md b/content/reference/services/SoftLayer_Account/getSecurityCertificates.md index 6615ed7488..90450f97c2 100644 --- a/content/reference/services/SoftLayer_Account/getSecurityCertificates.md +++ b/content/reference/services/SoftLayer_Account/getSecurityCertificates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSecurityCertificates-example) {#getSecurityCertificates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSecurityCertificates' ``` diff --git a/content/reference/services/SoftLayer_Account/getSecurityGroups.md b/content/reference/services/SoftLayer_Account/getSecurityGroups.md index 9c3b42584c..fba91d8629 100644 --- a/content/reference/services/SoftLayer_Account/getSecurityGroups.md +++ b/content/reference/services/SoftLayer_Account/getSecurityGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSecurityGroups-example) {#getSecurityGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSecurityGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getSecurityLevel.md b/content/reference/services/SoftLayer_Account/getSecurityLevel.md index 4a556ac103..451bf0a582 100644 --- a/content/reference/services/SoftLayer_Account/getSecurityLevel.md +++ b/content/reference/services/SoftLayer_Account/getSecurityLevel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSecurityLevel-example) {#getSecurityLevel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSecurityLevel' ``` diff --git a/content/reference/services/SoftLayer_Account/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Account/getSecurityScanRequests.md index 9ef1b871eb..4b79550659 100644 --- a/content/reference/services/SoftLayer_Account/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Account/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Account/getServiceBillingItems.md b/content/reference/services/SoftLayer_Account/getServiceBillingItems.md index 5148273c30..d431aaf277 100644 --- a/content/reference/services/SoftLayer_Account/getServiceBillingItems.md +++ b/content/reference/services/SoftLayer_Account/getServiceBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getServiceBillingItems-example) {#getServiceBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getServiceBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account/getSharedBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Account/getSharedBlockDeviceTemplateGroups.md index 9d4cf6e35a..c371419cbb 100644 --- a/content/reference/services/SoftLayer_Account/getSharedBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Account/getSharedBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSharedBlockDeviceTemplateGroups-example) {#getSharedBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getSharedBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Account/getShipments.md b/content/reference/services/SoftLayer_Account/getShipments.md index 0df794ca28..f49384adfd 100644 --- a/content/reference/services/SoftLayer_Account/getShipments.md +++ b/content/reference/services/SoftLayer_Account/getShipments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getShipments-example) {#getShipments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getShipments' ``` diff --git a/content/reference/services/SoftLayer_Account/getSshKeys.md b/content/reference/services/SoftLayer_Account/getSshKeys.md index 1c608eb299..45257b7326 100644 --- a/content/reference/services/SoftLayer_Account/getSshKeys.md +++ b/content/reference/services/SoftLayer_Account/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Account/getSslVpnUsers.md b/content/reference/services/SoftLayer_Account/getSslVpnUsers.md index 521fba9804..ddeddeee98 100644 --- a/content/reference/services/SoftLayer_Account/getSslVpnUsers.md +++ b/content/reference/services/SoftLayer_Account/getSslVpnUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSslVpnUsers-example) {#getSslVpnUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSslVpnUsers' ``` diff --git a/content/reference/services/SoftLayer_Account/getStandardPoolVirtualGuests.md b/content/reference/services/SoftLayer_Account/getStandardPoolVirtualGuests.md index 333e297e04..e229c757fd 100644 --- a/content/reference/services/SoftLayer_Account/getStandardPoolVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getStandardPoolVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getStandardPoolVirtualGuests-example) {#getStandardPoolVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getStandardPoolVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getSubnetRegistrationDetails.md b/content/reference/services/SoftLayer_Account/getSubnetRegistrationDetails.md index 6332a3f0a4..211983001e 100644 --- a/content/reference/services/SoftLayer_Account/getSubnetRegistrationDetails.md +++ b/content/reference/services/SoftLayer_Account/getSubnetRegistrationDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSubnetRegistrationDetails-example) {#getSubnetRegistrationDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSubnetRegistrationDetails' ``` diff --git a/content/reference/services/SoftLayer_Account/getSubnetRegistrations.md b/content/reference/services/SoftLayer_Account/getSubnetRegistrations.md index c5eee77be4..ccc7b61c12 100644 --- a/content/reference/services/SoftLayer_Account/getSubnetRegistrations.md +++ b/content/reference/services/SoftLayer_Account/getSubnetRegistrations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSubnetRegistrations-example) {#getSubnetRegistrations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSubnetRegistrations' ``` diff --git a/content/reference/services/SoftLayer_Account/getSubnets.md b/content/reference/services/SoftLayer_Account/getSubnets.md index 63473a2989..c453881463 100644 --- a/content/reference/services/SoftLayer_Account/getSubnets.md +++ b/content/reference/services/SoftLayer_Account/getSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSubnets-example) {#getSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSubnets' ``` diff --git a/content/reference/services/SoftLayer_Account/getSupportRepresentatives.md b/content/reference/services/SoftLayer_Account/getSupportRepresentatives.md index 334f98cb00..9bc3c84252 100644 --- a/content/reference/services/SoftLayer_Account/getSupportRepresentatives.md +++ b/content/reference/services/SoftLayer_Account/getSupportRepresentatives.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSupportRepresentatives-example) {#getSupportRepresentatives-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSupportRepresentatives' ``` diff --git a/content/reference/services/SoftLayer_Account/getSupportSubscriptions.md b/content/reference/services/SoftLayer_Account/getSupportSubscriptions.md index 9e0d46c7f1..bd8d314e92 100644 --- a/content/reference/services/SoftLayer_Account/getSupportSubscriptions.md +++ b/content/reference/services/SoftLayer_Account/getSupportSubscriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSupportSubscriptions-example) {#getSupportSubscriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSupportSubscriptions' ``` diff --git a/content/reference/services/SoftLayer_Account/getSupportTier.md b/content/reference/services/SoftLayer_Account/getSupportTier.md index 090eab1c14..4096d5a8ca 100644 --- a/content/reference/services/SoftLayer_Account/getSupportTier.md +++ b/content/reference/services/SoftLayer_Account/getSupportTier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSupportTier-example) {#getSupportTier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSupportTier' ``` diff --git a/content/reference/services/SoftLayer_Account/getSuppressInvoicesFlag.md b/content/reference/services/SoftLayer_Account/getSuppressInvoicesFlag.md index 11115f9cd1..17db6e52a0 100644 --- a/content/reference/services/SoftLayer_Account/getSuppressInvoicesFlag.md +++ b/content/reference/services/SoftLayer_Account/getSuppressInvoicesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getSuppressInvoicesFlag-example) {#getSuppressInvoicesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getSuppressInvoicesFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getTags.md b/content/reference/services/SoftLayer_Account/getTags.md index 973c3d91e9..287783abeb 100644 --- a/content/reference/services/SoftLayer_Account/getTags.md +++ b/content/reference/services/SoftLayer_Account/getTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getTags-example) {#getTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getTags' ``` diff --git a/content/reference/services/SoftLayer_Account/getTechIncubatorProgramInfo.md b/content/reference/services/SoftLayer_Account/getTechIncubatorProgramInfo.md index 29fb188011..4fbf7d6a3d 100644 --- a/content/reference/services/SoftLayer_Account/getTechIncubatorProgramInfo.md +++ b/content/reference/services/SoftLayer_Account/getTechIncubatorProgramInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getTechIncubatorProgramInfo-example) {#getTechIncubatorProgramInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getTechIncubatorProgramInfo' ``` diff --git a/content/reference/services/SoftLayer_Account/getTestAccountAttributeFlag.md b/content/reference/services/SoftLayer_Account/getTestAccountAttributeFlag.md index ead0ebdd3f..7a9101548d 100644 --- a/content/reference/services/SoftLayer_Account/getTestAccountAttributeFlag.md +++ b/content/reference/services/SoftLayer_Account/getTestAccountAttributeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getTestAccountAttributeFlag-example) {#getTestAccountAttributeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getTestAccountAttributeFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getThirdPartyPoliciesAcceptanceStatus.md b/content/reference/services/SoftLayer_Account/getThirdPartyPoliciesAcceptanceStatus.md index bcdd7dd1ed..87d49583f2 100644 --- a/content/reference/services/SoftLayer_Account/getThirdPartyPoliciesAcceptanceStatus.md +++ b/content/reference/services/SoftLayer_Account/getThirdPartyPoliciesAcceptanceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getThirdPartyPoliciesAcceptanceStatus-example) {#getThirdPartyPoliciesAcceptanceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getThirdPartyPoliciesAcceptanceStatus' ``` diff --git a/content/reference/services/SoftLayer_Account/getTickets.md b/content/reference/services/SoftLayer_Account/getTickets.md index ff8388a214..d251c70e71 100644 --- a/content/reference/services/SoftLayer_Account/getTickets.md +++ b/content/reference/services/SoftLayer_Account/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_Account/getTicketsClosedInTheLastThreeDays.md b/content/reference/services/SoftLayer_Account/getTicketsClosedInTheLastThreeDays.md index 07eec957b6..a28cddcb14 100644 --- a/content/reference/services/SoftLayer_Account/getTicketsClosedInTheLastThreeDays.md +++ b/content/reference/services/SoftLayer_Account/getTicketsClosedInTheLastThreeDays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getTicketsClosedInTheLastThreeDays-example) {#getTicketsClosedInTheLastThreeDays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getTicketsClosedInTheLastThreeDays' ``` diff --git a/content/reference/services/SoftLayer_Account/getTicketsClosedToday.md b/content/reference/services/SoftLayer_Account/getTicketsClosedToday.md index 7dbe8e132d..32c41edf52 100644 --- a/content/reference/services/SoftLayer_Account/getTicketsClosedToday.md +++ b/content/reference/services/SoftLayer_Account/getTicketsClosedToday.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getTicketsClosedToday-example) {#getTicketsClosedToday-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getTicketsClosedToday' ``` diff --git a/content/reference/services/SoftLayer_Account/getTranscodeAccounts.md b/content/reference/services/SoftLayer_Account/getTranscodeAccounts.md deleted file mode 100644 index ad91c9874c..0000000000 --- a/content/reference/services/SoftLayer_Account/getTranscodeAccounts.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getTranscodeAccounts" -description: "An account's associated Transcode account." -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Account" -classes: - - "SoftLayer_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getTranscodeAccounts' -``` diff --git a/content/reference/services/SoftLayer_Account/getUpgradeRequests.md b/content/reference/services/SoftLayer_Account/getUpgradeRequests.md index 711682592d..b78e4fa642 100644 --- a/content/reference/services/SoftLayer_Account/getUpgradeRequests.md +++ b/content/reference/services/SoftLayer_Account/getUpgradeRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getUpgradeRequests-example) {#getUpgradeRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getUpgradeRequests' ``` diff --git a/content/reference/services/SoftLayer_Account/getUsers.md b/content/reference/services/SoftLayer_Account/getUsers.md index a2ccaada5c..f6f353efa3 100644 --- a/content/reference/services/SoftLayer_Account/getUsers.md +++ b/content/reference/services/SoftLayer_Account/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_Account/getValidSecurityCertificateEntries.md b/content/reference/services/SoftLayer_Account/getValidSecurityCertificateEntries.md index 09a9184e58..1a280d7d76 100644 --- a/content/reference/services/SoftLayer_Account/getValidSecurityCertificateEntries.md +++ b/content/reference/services/SoftLayer_Account/getValidSecurityCertificateEntries.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getValidSecurityCertificateEntries-example) {#getValidSecurityCertificateEntries-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getValidSecurityCertificateEntries' ``` diff --git a/content/reference/services/SoftLayer_Account/getValidSecurityCertificates.md b/content/reference/services/SoftLayer_Account/getValidSecurityCertificates.md index 1fdf3ffb18..e99d0228ea 100644 --- a/content/reference/services/SoftLayer_Account/getValidSecurityCertificates.md +++ b/content/reference/services/SoftLayer_Account/getValidSecurityCertificates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getValidSecurityCertificates-example) {#getValidSecurityCertificates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getValidSecurityCertificates' ``` diff --git a/content/reference/services/SoftLayer_Account/getVdrUpdatesInProgressFlag.md b/content/reference/services/SoftLayer_Account/getVdrUpdatesInProgressFlag.md index 46fa68188f..384c23ab5b 100644 --- a/content/reference/services/SoftLayer_Account/getVdrUpdatesInProgressFlag.md +++ b/content/reference/services/SoftLayer_Account/getVdrUpdatesInProgressFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVdrUpdatesInProgressFlag-example) {#getVdrUpdatesInProgressFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVdrUpdatesInProgressFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualDedicatedRacks.md b/content/reference/services/SoftLayer_Account/getVirtualDedicatedRacks.md index 0d81081c63..40620bd9e5 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualDedicatedRacks.md +++ b/content/reference/services/SoftLayer_Account/getVirtualDedicatedRacks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualDedicatedRacks-example) {#getVirtualDedicatedRacks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualDedicatedRacks' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualDiskImages.md b/content/reference/services/SoftLayer_Account/getVirtualDiskImages.md index 8da19f8911..0c931fa33a 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualDiskImages.md +++ b/content/reference/services/SoftLayer_Account/getVirtualDiskImages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualDiskImages-example) {#getVirtualDiskImages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualDiskImages' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuests.md b/content/reference/services/SoftLayer_Account/getVirtualGuests.md index c427583317..fd7a9297f4 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsOverBandwidthAllocation.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsOverBandwidthAllocation.md index 3b044fced0..27d74cbdbe 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsOverBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsOverBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsOverBandwidthAllocation-example) {#getVirtualGuestsOverBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsOverBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsProjectedOverBandwidthAllocation.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsProjectedOverBandwidthAllocation.md index 95b8d87a07..f5cd44976b 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsProjectedOverBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsProjectedOverBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsProjectedOverBandwidthAllocation-example) {#getVirtualGuestsProjectedOverBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsProjectedOverBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithCpanel.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithCpanel.md index 8101ce4010..f458fd2ed1 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithCpanel.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithCpanel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithCpanel-example) {#getVirtualGuestsWithCpanel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithCpanel' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafee.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafee.md index acfbcb332f..8475f8e9a9 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafee.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithMcafee-example) {#getVirtualGuestsWithMcafee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithMcafee' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusRedhat.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusRedhat.md index 9d2efea9cc..f2fbae1015 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusRedhat.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusRedhat.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithMcafeeAntivirusRedhat-example) {#getVirtualGuestsWithMcafeeAntivirusRedhat-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithMcafeeAntivirusRedhat' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusWindows.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusWindows.md index b571ec02b1..39edc32d49 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusWindows.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeAntivirusWindows.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithMcafeeAntivirusWindows-example) {#getVirtualGuestsWithMcafeeAntivirusWindows-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithMcafeeAntivirusWindows' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeIntrusionDetectionSystem.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeIntrusionDetectionSystem.md index be474e3a23..d99e9f2aca 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeIntrusionDetectionSystem.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithMcafeeIntrusionDetectionSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithMcafeeIntrusionDetectionSystem-example) {#getVirtualGuestsWithMcafeeIntrusionDetectionSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithMcafeeIntrusionDetectionSystem' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithPlesk.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithPlesk.md index 6fb457cb7e..34362abc33 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithPlesk.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithPlesk.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithPlesk-example) {#getVirtualGuestsWithPlesk-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithPlesk' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithQuantastor.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithQuantastor.md index 0948bfbe1e..b9ab43b730 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithQuantastor.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithQuantastor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithQuantastor-example) {#getVirtualGuestsWithQuantastor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithQuantastor' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithUrchin.md b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithUrchin.md index 969bb5a0a6..2d7f60debc 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualGuestsWithUrchin.md +++ b/content/reference/services/SoftLayer_Account/getVirtualGuestsWithUrchin.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualGuestsWithUrchin-example) {#getVirtualGuestsWithUrchin-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualGuestsWithUrchin' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualPrivateRack.md b/content/reference/services/SoftLayer_Account/getVirtualPrivateRack.md index 75c6de5e8e..03f5829046 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualPrivateRack.md +++ b/content/reference/services/SoftLayer_Account/getVirtualPrivateRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualPrivateRack-example) {#getVirtualPrivateRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualPrivateRack' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualStorageArchiveRepositories.md b/content/reference/services/SoftLayer_Account/getVirtualStorageArchiveRepositories.md index 2c50a2e7be..3fa2966498 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualStorageArchiveRepositories.md +++ b/content/reference/services/SoftLayer_Account/getVirtualStorageArchiveRepositories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualStorageArchiveRepositories-example) {#getVirtualStorageArchiveRepositories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualStorageArchiveRepositories' ``` diff --git a/content/reference/services/SoftLayer_Account/getVirtualStoragePublicRepositories.md b/content/reference/services/SoftLayer_Account/getVirtualStoragePublicRepositories.md index b5a738735b..47724825ae 100644 --- a/content/reference/services/SoftLayer_Account/getVirtualStoragePublicRepositories.md +++ b/content/reference/services/SoftLayer_Account/getVirtualStoragePublicRepositories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVirtualStoragePublicRepositories-example) {#getVirtualStoragePublicRepositories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVirtualStoragePublicRepositories' ``` diff --git a/content/reference/services/SoftLayer_Account/getVmWareActiveAccountLicenseKeys.md b/content/reference/services/SoftLayer_Account/getVmWareActiveAccountLicenseKeys.md index 753bec2e53..83afbc82af 100644 --- a/content/reference/services/SoftLayer_Account/getVmWareActiveAccountLicenseKeys.md +++ b/content/reference/services/SoftLayer_Account/getVmWareActiveAccountLicenseKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVmWareActiveAccountLicenseKeys-example) {#getVmWareActiveAccountLicenseKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getVmWareActiveAccountLicenseKeys' ``` diff --git a/content/reference/services/SoftLayer_Account/getVpcVirtualGuests.md b/content/reference/services/SoftLayer_Account/getVpcVirtualGuests.md index ae8f505189..91c98c65c3 100644 --- a/content/reference/services/SoftLayer_Account/getVpcVirtualGuests.md +++ b/content/reference/services/SoftLayer_Account/getVpcVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVpcVirtualGuests-example) {#getVpcVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVpcVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Account/getVpnConfigRequiresVPNManageFlag.md b/content/reference/services/SoftLayer_Account/getVpnConfigRequiresVPNManageFlag.md index a825059d1c..7021902306 100644 --- a/content/reference/services/SoftLayer_Account/getVpnConfigRequiresVPNManageFlag.md +++ b/content/reference/services/SoftLayer_Account/getVpnConfigRequiresVPNManageFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getVpnConfigRequiresVPNManageFlag-example) {#getVpnConfigRequiresVPNManageFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/{SoftLayer_AccountID}/getVpnConfigRequiresVPNManageFlag' ``` diff --git a/content/reference/services/SoftLayer_Account/getWindowsUpdateStatus.md b/content/reference/services/SoftLayer_Account/getWindowsUpdateStatus.md index f5cf2ba95d..188335e337 100644 --- a/content/reference/services/SoftLayer_Account/getWindowsUpdateStatus.md +++ b/content/reference/services/SoftLayer_Account/getWindowsUpdateStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#getWindowsUpdateStatus-example) {#getWindowsUpdateStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/getWindowsUpdateStatus' ``` diff --git a/content/reference/services/SoftLayer_Account/hasAttribute.md b/content/reference/services/SoftLayer_Account/hasAttribute.md index cfd01ebb0b..b0b3e16dc4 100644 --- a/content/reference/services/SoftLayer_Account/hasAttribute.md +++ b/content/reference/services/SoftLayer_Account/hasAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#hasAttribute-example) {#hasAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/hasAttribute' ``` diff --git a/content/reference/services/SoftLayer_Account/hourlyInstanceLimit.md b/content/reference/services/SoftLayer_Account/hourlyInstanceLimit.md index 4ccaba929b..ad903c9438 100644 --- a/content/reference/services/SoftLayer_Account/hourlyInstanceLimit.md +++ b/content/reference/services/SoftLayer_Account/hourlyInstanceLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#hourlyInstanceLimit-example) {#hourlyInstanceLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/hourlyInstanceLimit' ``` diff --git a/content/reference/services/SoftLayer_Account/hourlyServerLimit.md b/content/reference/services/SoftLayer_Account/hourlyServerLimit.md index 9629f78c86..fb3a5cadaa 100644 --- a/content/reference/services/SoftLayer_Account/hourlyServerLimit.md +++ b/content/reference/services/SoftLayer_Account/hourlyServerLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#hourlyServerLimit-example) {#hourlyServerLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/hourlyServerLimit' ``` diff --git a/content/reference/services/SoftLayer_Account/initiatePayerAuthentication.md b/content/reference/services/SoftLayer_Account/initiatePayerAuthentication.md index dfccf7f138..ec421ccc1e 100644 --- a/content/reference/services/SoftLayer_Account/initiatePayerAuthentication.md +++ b/content/reference/services/SoftLayer_Account/initiatePayerAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#initiatePayerAuthentication-example) {#initiatePayerAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Payment_Card_PayerAuthentication_Setup_Information]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Payment_Card_PayerAuthentication_Setup_Information]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/initiatePayerAuthentication' ``` diff --git a/content/reference/services/SoftLayer_Account/isActiveVmwareCustomer.md b/content/reference/services/SoftLayer_Account/isActiveVmwareCustomer.md index 237a0bb2f2..7eeb0024e6 100644 --- a/content/reference/services/SoftLayer_Account/isActiveVmwareCustomer.md +++ b/content/reference/services/SoftLayer_Account/isActiveVmwareCustomer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#isActiveVmwareCustomer-example) {#isActiveVmwareCustomer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/isActiveVmwareCustomer' ``` diff --git a/content/reference/services/SoftLayer_Account/isEligibleForLocalCurrencyProgram.md b/content/reference/services/SoftLayer_Account/isEligibleForLocalCurrencyProgram.md index 10b50ac45d..e6af0886d2 100644 --- a/content/reference/services/SoftLayer_Account/isEligibleForLocalCurrencyProgram.md +++ b/content/reference/services/SoftLayer_Account/isEligibleForLocalCurrencyProgram.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#isEligibleForLocalCurrencyProgram-example) {#isEligibleForLocalCurrencyProgram-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/isEligibleForLocalCurrencyProgram' ``` diff --git a/content/reference/services/SoftLayer_Account/isEligibleToLinkWithPaas.md b/content/reference/services/SoftLayer_Account/isEligibleToLinkWithPaas.md index 13d2dc6ca3..b8e276f679 100644 --- a/content/reference/services/SoftLayer_Account/isEligibleToLinkWithPaas.md +++ b/content/reference/services/SoftLayer_Account/isEligibleToLinkWithPaas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#isEligibleToLinkWithPaas-example) {#isEligibleToLinkWithPaas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/isEligibleToLinkWithPaas' ``` diff --git a/content/reference/services/SoftLayer_Account/linkExternalAccount.md b/content/reference/services/SoftLayer_Account/linkExternalAccount.md index cf37d2d6b6..84cf710acd 100644 --- a/content/reference/services/SoftLayer_Account/linkExternalAccount.md +++ b/content/reference/services/SoftLayer_Account/linkExternalAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#linkExternalAccount-example) {#linkExternalAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/linkExternalAccount' ``` diff --git a/content/reference/services/SoftLayer_Account/removeAlternateCreditCard.md b/content/reference/services/SoftLayer_Account/removeAlternateCreditCard.md index 14a58447af..6c4d2a85c8 100644 --- a/content/reference/services/SoftLayer_Account/removeAlternateCreditCard.md +++ b/content/reference/services/SoftLayer_Account/removeAlternateCreditCard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#removeAlternateCreditCard-example) {#removeAlternateCreditCard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/removeAlternateCreditCard' ``` diff --git a/content/reference/services/SoftLayer_Account/requestCreditCardChange.md b/content/reference/services/SoftLayer_Account/requestCreditCardChange.md index 5352090d4f..df1847c8b0 100644 --- a/content/reference/services/SoftLayer_Account/requestCreditCardChange.md +++ b/content/reference/services/SoftLayer_Account/requestCreditCardChange.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#requestCreditCardChange-example) {#requestCreditCardChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Payment_Card_ChangeRequest, string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Payment_Card_ChangeRequest, string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/requestCreditCardChange' ``` diff --git a/content/reference/services/SoftLayer_Account/requestManualPayment.md b/content/reference/services/SoftLayer_Account/requestManualPayment.md index 37d0ef08a2..ee185287ee 100644 --- a/content/reference/services/SoftLayer_Account/requestManualPayment.md +++ b/content/reference/services/SoftLayer_Account/requestManualPayment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#requestManualPayment-example) {#requestManualPayment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Payment_Card_ManualPayment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Payment_Card_ManualPayment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/requestManualPayment' ``` diff --git a/content/reference/services/SoftLayer_Account/requestManualPaymentUsingCreditCardOnFile.md b/content/reference/services/SoftLayer_Account/requestManualPaymentUsingCreditCardOnFile.md index 4e80433bc8..d5cdf986f3 100644 --- a/content/reference/services/SoftLayer_Account/requestManualPaymentUsingCreditCardOnFile.md +++ b/content/reference/services/SoftLayer_Account/requestManualPaymentUsingCreditCardOnFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#requestManualPaymentUsingCreditCardOnFile-example) {#requestManualPaymentUsingCreditCardOnFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/requestManualPaymentUsingCreditCardOnFile' ``` diff --git a/content/reference/services/SoftLayer_Account/saveInternalCostRecovery.md b/content/reference/services/SoftLayer_Account/saveInternalCostRecovery.md index 5b2d8a3454..f21825795a 100644 --- a/content/reference/services/SoftLayer_Account/saveInternalCostRecovery.md +++ b/content/reference/services/SoftLayer_Account/saveInternalCostRecovery.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#saveInternalCostRecovery-example) {#saveInternalCostRecovery-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_Internal_Ibm_CostRecovery]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_Internal_Ibm_CostRecovery]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/saveInternalCostRecovery' ``` diff --git a/content/reference/services/SoftLayer_Account/setAbuseEmails.md b/content/reference/services/SoftLayer_Account/setAbuseEmails.md index 7c6688957a..58c78827fc 100644 --- a/content/reference/services/SoftLayer_Account/setAbuseEmails.md +++ b/content/reference/services/SoftLayer_Account/setAbuseEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#setAbuseEmails-example) {#setAbuseEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/setAbuseEmails' ``` diff --git a/content/reference/services/SoftLayer_Account/setManagedPoolQuantity.md b/content/reference/services/SoftLayer_Account/setManagedPoolQuantity.md index a88fc878c7..7a4914c0cf 100644 --- a/content/reference/services/SoftLayer_Account/setManagedPoolQuantity.md +++ b/content/reference/services/SoftLayer_Account/setManagedPoolQuantity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#setManagedPoolQuantity-example) {#setManagedPoolQuantity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/setManagedPoolQuantity' ``` diff --git a/content/reference/services/SoftLayer_Account/setVlanSpan.md b/content/reference/services/SoftLayer_Account/setVlanSpan.md index b192111a7c..6520755497 100644 --- a/content/reference/services/SoftLayer_Account/setVlanSpan.md +++ b/content/reference/services/SoftLayer_Account/setVlanSpan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#setVlanSpan-example) {#setVlanSpan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/setVlanSpan' ``` diff --git a/content/reference/services/SoftLayer_Account/swapCreditCards.md b/content/reference/services/SoftLayer_Account/swapCreditCards.md index b0f1b52aab..676f344a26 100644 --- a/content/reference/services/SoftLayer_Account/swapCreditCards.md +++ b/content/reference/services/SoftLayer_Account/swapCreditCards.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#swapCreditCards-example) {#swapCreditCards-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/swapCreditCards' ``` diff --git a/content/reference/services/SoftLayer_Account/syncCurrentUserPopulationWithPaas.md b/content/reference/services/SoftLayer_Account/syncCurrentUserPopulationWithPaas.md index 19adcd4d13..512a31375e 100644 --- a/content/reference/services/SoftLayer_Account/syncCurrentUserPopulationWithPaas.md +++ b/content/reference/services/SoftLayer_Account/syncCurrentUserPopulationWithPaas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#syncCurrentUserPopulationWithPaas-example) {#syncCurrentUserPopulationWithPaas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/syncCurrentUserPopulationWithPaas' ``` diff --git a/content/reference/services/SoftLayer_Account/updateVpnUsersForResource.md b/content/reference/services/SoftLayer_Account/updateVpnUsersForResource.md index 7431ced2b5..2754682635 100644 --- a/content/reference/services/SoftLayer_Account/updateVpnUsersForResource.md +++ b/content/reference/services/SoftLayer_Account/updateVpnUsersForResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#updateVpnUsersForResource-example) {#updateVpnUsersForResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/updateVpnUsersForResource' ``` diff --git a/content/reference/services/SoftLayer_Account/validate.md b/content/reference/services/SoftLayer_Account/validate.md index 00b6f1d11d..b7bec64da9 100644 --- a/content/reference/services/SoftLayer_Account/validate.md +++ b/content/reference/services/SoftLayer_Account/validate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#validate-example) {#validate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/validate' ``` diff --git a/content/reference/services/SoftLayer_Account/validateManualPaymentAmount.md b/content/reference/services/SoftLayer_Account/validateManualPaymentAmount.md index ed84a49a4f..547da421c9 100644 --- a/content/reference/services/SoftLayer_Account/validateManualPaymentAmount.md +++ b/content/reference/services/SoftLayer_Account/validateManualPaymentAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account" --- -### Curl Example +# [REST Example](#validateManualPaymentAmount-example) {#validateManualPaymentAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account/validateManualPaymentAmount' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/createObject.md b/content/reference/services/SoftLayer_Account_Address/createObject.md index cdae4289ee..832327b292 100644 --- a/content/reference/services/SoftLayer_Account_Address/createObject.md +++ b/content/reference/services/SoftLayer_Account_Address/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Address]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Address]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/editObject.md b/content/reference/services/SoftLayer_Account_Address/editObject.md index 5723f315fd..ec44daed82 100644 --- a/content/reference/services/SoftLayer_Account_Address/editObject.md +++ b/content/reference/services/SoftLayer_Account_Address/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Address]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Address]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getAccount.md b/content/reference/services/SoftLayer_Account_Address/getAccount.md index 5934bac051..aad10d8c0f 100644 --- a/content/reference/services/SoftLayer_Account_Address/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Address/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getAllDataCenters.md b/content/reference/services/SoftLayer_Account_Address/getAllDataCenters.md index 44967330d4..42196b35e9 100644 --- a/content/reference/services/SoftLayer_Account_Address/getAllDataCenters.md +++ b/content/reference/services/SoftLayer_Account_Address/getAllDataCenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getAllDataCenters-example) {#getAllDataCenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/getAllDataCenters' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getCreateUser.md b/content/reference/services/SoftLayer_Account_Address/getCreateUser.md index 2c58b05567..524cabe09e 100644 --- a/content/reference/services/SoftLayer_Account_Address/getCreateUser.md +++ b/content/reference/services/SoftLayer_Account_Address/getCreateUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getCreateUser-example) {#getCreateUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getCreateUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getLocation.md b/content/reference/services/SoftLayer_Account_Address/getLocation.md index 4c2617e59f..978337f600 100644 --- a/content/reference/services/SoftLayer_Account_Address/getLocation.md +++ b/content/reference/services/SoftLayer_Account_Address/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getModifyEmployee.md b/content/reference/services/SoftLayer_Account_Address/getModifyEmployee.md index e5d6122cbe..421a4cbbc4 100644 --- a/content/reference/services/SoftLayer_Account_Address/getModifyEmployee.md +++ b/content/reference/services/SoftLayer_Account_Address/getModifyEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getModifyEmployee-example) {#getModifyEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getModifyEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getModifyUser.md b/content/reference/services/SoftLayer_Account_Address/getModifyUser.md index a28c3779b4..7164181e1e 100644 --- a/content/reference/services/SoftLayer_Account_Address/getModifyUser.md +++ b/content/reference/services/SoftLayer_Account_Address/getModifyUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getModifyUser-example) {#getModifyUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getModifyUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getNetworkAddress.md b/content/reference/services/SoftLayer_Account_Address/getNetworkAddress.md index 6870d8d7fd..ac62760a1f 100644 --- a/content/reference/services/SoftLayer_Account_Address/getNetworkAddress.md +++ b/content/reference/services/SoftLayer_Account_Address/getNetworkAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getNetworkAddress-example) {#getNetworkAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/getNetworkAddress' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getObject.md b/content/reference/services/SoftLayer_Account_Address/getObject.md index 04652051e3..7768de0f25 100644 --- a/content/reference/services/SoftLayer_Account_Address/getObject.md +++ b/content/reference/services/SoftLayer_Account_Address/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Address/getType.md b/content/reference/services/SoftLayer_Account_Address/getType.md index 8c6eb2dc16..bd688b319a 100644 --- a/content/reference/services/SoftLayer_Account_Address/getType.md +++ b/content/reference/services/SoftLayer_Account_Address/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address/{SoftLayer_Account_AddressID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_Address_Type/getObject.md b/content/reference/services/SoftLayer_Account_Address_Type/getObject.md index e825fc5b60..d9824c812a 100644 --- a/content/reference/services/SoftLayer_Account_Address_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Address_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Address_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Address_Type/{SoftLayer_Account_Address_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Affiliation/createObject.md b/content/reference/services/SoftLayer_Account_Affiliation/createObject.md index da0fd7f3d6..bc8006b4fa 100644 --- a/content/reference/services/SoftLayer_Account_Affiliation/createObject.md +++ b/content/reference/services/SoftLayer_Account_Affiliation/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Affiliation" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Affiliation]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Affiliation]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Affiliation/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Affiliation/deleteObject.md b/content/reference/services/SoftLayer_Account_Affiliation/deleteObject.md index 794f6e3e12..d05970dbf3 100644 --- a/content/reference/services/SoftLayer_Account_Affiliation/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Affiliation/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Affiliation" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Affiliation/{SoftLayer_Account_AffiliationID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Affiliation/editObject.md b/content/reference/services/SoftLayer_Account_Affiliation/editObject.md index 20496bc313..d492b09b7b 100644 --- a/content/reference/services/SoftLayer_Account_Affiliation/editObject.md +++ b/content/reference/services/SoftLayer_Account_Affiliation/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Affiliation" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Affiliation]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Affiliation]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Affiliation/{SoftLayer_Account_AffiliationID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Affiliation/getAccount.md b/content/reference/services/SoftLayer_Account_Affiliation/getAccount.md index 5f2fb762e2..a9185c5880 100644 --- a/content/reference/services/SoftLayer_Account_Affiliation/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Affiliation/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Affiliation" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Affiliation/{SoftLayer_Account_AffiliationID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Affiliation/getAccountAffiliationsByAffiliateId.md b/content/reference/services/SoftLayer_Account_Affiliation/getAccountAffiliationsByAffiliateId.md index 9429ff4c87..af10804cec 100644 --- a/content/reference/services/SoftLayer_Account_Affiliation/getAccountAffiliationsByAffiliateId.md +++ b/content/reference/services/SoftLayer_Account_Affiliation/getAccountAffiliationsByAffiliateId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Affiliation" --- -### Curl Example +# [REST Example](#getAccountAffiliationsByAffiliateId-example) {#getAccountAffiliationsByAffiliateId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Affiliation/getAccountAffiliationsByAffiliateId' ``` diff --git a/content/reference/services/SoftLayer_Account_Affiliation/getObject.md b/content/reference/services/SoftLayer_Account_Affiliation/getObject.md index 84b66d798f..57d5b68200 100644 --- a/content/reference/services/SoftLayer_Account_Affiliation/getObject.md +++ b/content/reference/services/SoftLayer_Account_Affiliation/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Affiliation" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Affiliation/{SoftLayer_Account_AffiliationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getAccount.md b/content/reference/services/SoftLayer_Account_Agreement/getAccount.md index 737fb913ef..3407b61ba1 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getAgreementType.md b/content/reference/services/SoftLayer_Account_Agreement/getAgreementType.md index 76977e4538..c686bf39f5 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getAgreementType.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getAgreementType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getAgreementType-example) {#getAgreementType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getAgreementType' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getAttachedBillingAgreementFiles.md b/content/reference/services/SoftLayer_Account_Agreement/getAttachedBillingAgreementFiles.md index aa42a48f57..0acde70965 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getAttachedBillingAgreementFiles.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getAttachedBillingAgreementFiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getAttachedBillingAgreementFiles-example) {#getAttachedBillingAgreementFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getAttachedBillingAgreementFiles' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getBillingItems.md b/content/reference/services/SoftLayer_Account_Agreement/getBillingItems.md index 186fa29d10..a0779fe36b 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getBillingItems.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getBillingItems-example) {#getBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getObject.md b/content/reference/services/SoftLayer_Account_Agreement/getObject.md index 33d0edadbc..c03891e83e 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getObject.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getStatus.md b/content/reference/services/SoftLayer_Account_Agreement/getStatus.md index 0887598dc6..dfb1a6ecc2 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getStatus.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Account_Agreement/getTopLevelBillingItems.md b/content/reference/services/SoftLayer_Account_Agreement/getTopLevelBillingItems.md index 6cf4a924c8..e50b9062d8 100644 --- a/content/reference/services/SoftLayer_Account_Agreement/getTopLevelBillingItems.md +++ b/content/reference/services/SoftLayer_Account_Agreement/getTopLevelBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Agreement" --- -### Curl Example +# [REST Example](#getTopLevelBillingItems-example) {#getTopLevelBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Agreement/{SoftLayer_Account_AgreementID}/getTopLevelBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAccount.md b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAccount.md index 70f3be4c72..dced562c1b 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Attribute" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Attribute/{SoftLayer_Account_Authentication_AttributeID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAuthenticationRecord.md b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAuthenticationRecord.md index 7a731041c6..4b17d01b2c 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAuthenticationRecord.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getAuthenticationRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Attribute" --- -### Curl Example +# [REST Example](#getAuthenticationRecord-example) {#getAuthenticationRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Attribute/{SoftLayer_Account_Authentication_AttributeID}/getAuthenticationRecord' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getObject.md b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getObject.md index 68b5acc27f..204c522683 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getObject.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Attribute" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Attribute/{SoftLayer_Account_Authentication_AttributeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getType.md b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getType.md index cb57283753..410d667a45 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Attribute/getType.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Attribute/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Attribute" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Attribute/{SoftLayer_Account_Authentication_AttributeID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getAllObjects.md b/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getAllObjects.md index 2f6db9e7a7..43c44b6e05 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Attribute_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Attribute_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getObject.md b/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getObject.md index f2633d5624..e6535b0736 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Attribute_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Attribute_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Attribute_Type/{SoftLayer_Account_Authentication_Attribute_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/createObject.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/createObject.md index 384c2ea45e..9eb0966d8a 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/createObject.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Authentication_Saml]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Authentication_Saml]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/deleteObject.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/deleteObject.md index 2f1c946733..c5768bba6c 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/{SoftLayer_Account_Authentication_SamlID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/editObject.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/editObject.md index 419d1f8f0d..acbcf1ee8c 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/editObject.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Authentication_Saml]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Authentication_Saml]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/{SoftLayer_Account_Authentication_SamlID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/getAccount.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/getAccount.md index b994bc618f..b88a0dad7c 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/{SoftLayer_Account_Authentication_SamlID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/getAttributes.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/getAttributes.md index 849b76f435..1ccd84eeba 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/getAttributes.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/{SoftLayer_Account_Authentication_SamlID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/getMetadata.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/getMetadata.md index 57a2fb6867..b034328780 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/getMetadata.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/getMetadata.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#getMetadata-example) {#getMetadata-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/{SoftLayer_Account_Authentication_SamlID}/getMetadata' ``` diff --git a/content/reference/services/SoftLayer_Account_Authentication_Saml/getObject.md b/content/reference/services/SoftLayer_Account_Authentication_Saml/getObject.md index e3ba17fb05..c9be99cb72 100644 --- a/content/reference/services/SoftLayer_Account_Authentication_Saml/getObject.md +++ b/content/reference/services/SoftLayer_Account_Authentication_Saml/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Authentication_Saml" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Authentication_Saml/{SoftLayer_Account_Authentication_SamlID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getAccount.md b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getAccount.md index e6719aa033..c0ecb4ee63 100644 --- a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Brand_Migration_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Brand_Migration_Request/{SoftLayer_Account_Brand_Migration_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getDestinationBrand.md b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getDestinationBrand.md index aa86434d30..fb748d45e7 100644 --- a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getDestinationBrand.md +++ b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getDestinationBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Brand_Migration_Request" --- -### Curl Example +# [REST Example](#getDestinationBrand-example) {#getDestinationBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Brand_Migration_Request/{SoftLayer_Account_Brand_Migration_RequestID}/getDestinationBrand' ``` diff --git a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getObject.md b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getObject.md index 4c6127b368..aa35cbea56 100644 --- a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getObject.md +++ b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Brand_Migration_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Brand_Migration_Request/{SoftLayer_Account_Brand_Migration_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getSourceBrand.md b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getSourceBrand.md index 75992ca896..71bbe35d2a 100644 --- a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getSourceBrand.md +++ b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getSourceBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Brand_Migration_Request" --- -### Curl Example +# [REST Example](#getSourceBrand-example) {#getSourceBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Brand_Migration_Request/{SoftLayer_Account_Brand_Migration_RequestID}/getSourceBrand' ``` diff --git a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getUser.md b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getUser.md index 4dbf945d9f..5c7499444b 100644 --- a/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getUser.md +++ b/content/reference/services/SoftLayer_Account_Brand_Migration_Request/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Brand_Migration_Request" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Brand_Migration_Request/{SoftLayer_Account_Brand_Migration_RequestID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Business_Partner/getAccount.md b/content/reference/services/SoftLayer_Account_Business_Partner/getAccount.md index 1544f5921f..26c95d9688 100644 --- a/content/reference/services/SoftLayer_Account_Business_Partner/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Business_Partner/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Business_Partner" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Business_Partner/{SoftLayer_Account_Business_PartnerID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Business_Partner/getChannel.md b/content/reference/services/SoftLayer_Account_Business_Partner/getChannel.md index 334bf1392d..c8a75fba94 100644 --- a/content/reference/services/SoftLayer_Account_Business_Partner/getChannel.md +++ b/content/reference/services/SoftLayer_Account_Business_Partner/getChannel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Business_Partner" --- -### Curl Example +# [REST Example](#getChannel-example) {#getChannel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Business_Partner/{SoftLayer_Account_Business_PartnerID}/getChannel' ``` diff --git a/content/reference/services/SoftLayer_Account_Business_Partner/getObject.md b/content/reference/services/SoftLayer_Account_Business_Partner/getObject.md index 55e64fb52e..1f76842e5d 100644 --- a/content/reference/services/SoftLayer_Account_Business_Partner/getObject.md +++ b/content/reference/services/SoftLayer_Account_Business_Partner/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Business_Partner" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Business_Partner/{SoftLayer_Account_Business_PartnerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Business_Partner/getSegment.md b/content/reference/services/SoftLayer_Account_Business_Partner/getSegment.md index 587b4f8f75..f69fa3a7b9 100644 --- a/content/reference/services/SoftLayer_Account_Business_Partner/getSegment.md +++ b/content/reference/services/SoftLayer_Account_Business_Partner/getSegment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Business_Partner" --- -### Curl Example +# [REST Example](#getSegment-example) {#getSegment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Business_Partner/{SoftLayer_Account_Business_PartnerID}/getSegment' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/createComplianceReportRequestorContact.md b/content/reference/services/SoftLayer_Account_Contact/createComplianceReportRequestorContact.md index 3931b396c8..21e493f2f0 100644 --- a/content/reference/services/SoftLayer_Account_Contact/createComplianceReportRequestorContact.md +++ b/content/reference/services/SoftLayer_Account_Contact/createComplianceReportRequestorContact.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#createComplianceReportRequestorContact-example) {#createComplianceReportRequestorContact-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/createComplianceReportRequestorContact' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/createObject.md b/content/reference/services/SoftLayer_Account_Contact/createObject.md index cacdaf4101..6c66de7de0 100644 --- a/content/reference/services/SoftLayer_Account_Contact/createObject.md +++ b/content/reference/services/SoftLayer_Account_Contact/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/deleteObject.md b/content/reference/services/SoftLayer_Account_Contact/deleteObject.md index d400b94fd1..f3cf99d5ca 100644 --- a/content/reference/services/SoftLayer_Account_Contact/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Contact/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/{SoftLayer_Account_ContactID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/editObject.md b/content/reference/services/SoftLayer_Account_Contact/editObject.md index 28b1069fd6..9b5b13a20d 100644 --- a/content/reference/services/SoftLayer_Account_Contact/editObject.md +++ b/content/reference/services/SoftLayer_Account_Contact/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/{SoftLayer_Account_ContactID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/getAccount.md b/content/reference/services/SoftLayer_Account_Contact/getAccount.md index de31c4d553..3bc63e8193 100644 --- a/content/reference/services/SoftLayer_Account_Contact/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Contact/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/{SoftLayer_Account_ContactID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/getAllContactTypes.md b/content/reference/services/SoftLayer_Account_Contact/getAllContactTypes.md index f19018666c..dbe25077b6 100644 --- a/content/reference/services/SoftLayer_Account_Contact/getAllContactTypes.md +++ b/content/reference/services/SoftLayer_Account_Contact/getAllContactTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#getAllContactTypes-example) {#getAllContactTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/getAllContactTypes' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/getObject.md b/content/reference/services/SoftLayer_Account_Contact/getObject.md index 2c63b27e80..32ae21d6e3 100644 --- a/content/reference/services/SoftLayer_Account_Contact/getObject.md +++ b/content/reference/services/SoftLayer_Account_Contact/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/{SoftLayer_Account_ContactID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Contact/getType.md b/content/reference/services/SoftLayer_Account_Contact/getType.md index 86526c1699..a863c1fdd7 100644 --- a/content/reference/services/SoftLayer_Account_Contact/getType.md +++ b/content/reference/services/SoftLayer_Account_Contact/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Contact" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Contact/{SoftLayer_Account_ContactID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_External_Setup/finalizeExternalBillingForAccount.md b/content/reference/services/SoftLayer_Account_External_Setup/finalizeExternalBillingForAccount.md index 4a01e5a8c3..a82afd20bb 100644 --- a/content/reference/services/SoftLayer_Account_External_Setup/finalizeExternalBillingForAccount.md +++ b/content/reference/services/SoftLayer_Account_External_Setup/finalizeExternalBillingForAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_External_Setup" --- -### Curl Example +# [REST Example](#finalizeExternalBillingForAccount-example) {#finalizeExternalBillingForAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_External_Setup/finalizeExternalBillingForAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_External_Setup/getObject.md b/content/reference/services/SoftLayer_Account_External_Setup/getObject.md index c6d2eae697..dbde6d362e 100644 --- a/content/reference/services/SoftLayer_Account_External_Setup/getObject.md +++ b/content/reference/services/SoftLayer_Account_External_Setup/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_External_Setup" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_External_Setup/{SoftLayer_Account_External_SetupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_External_Setup/getVerifyCardTransaction.md b/content/reference/services/SoftLayer_Account_External_Setup/getVerifyCardTransaction.md index c9fda985ba..bd448f2ff8 100644 --- a/content/reference/services/SoftLayer_Account_External_Setup/getVerifyCardTransaction.md +++ b/content/reference/services/SoftLayer_Account_External_Setup/getVerifyCardTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_External_Setup" --- -### Curl Example +# [REST Example](#getVerifyCardTransaction-example) {#getVerifyCardTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_External_Setup/{SoftLayer_Account_External_SetupID}/getVerifyCardTransaction' ``` diff --git a/content/reference/services/SoftLayer_Account_Historical_Report/getAccountHostUptimeSummary.md b/content/reference/services/SoftLayer_Account_Historical_Report/getAccountHostUptimeSummary.md index f01bb72d6c..1d78bf8f16 100644 --- a/content/reference/services/SoftLayer_Account_Historical_Report/getAccountHostUptimeSummary.md +++ b/content/reference/services/SoftLayer_Account_Historical_Report/getAccountHostUptimeSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Historical_Report" --- -### Curl Example +# [REST Example](#getAccountHostUptimeSummary-example) {#getAccountHostUptimeSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Historical_Report/getAccountHostUptimeSummary' ``` diff --git a/content/reference/services/SoftLayer_Account_Historical_Report/getAccountUrlUptimeSummary.md b/content/reference/services/SoftLayer_Account_Historical_Report/getAccountUrlUptimeSummary.md index 9f1c5fb242..4612156d00 100644 --- a/content/reference/services/SoftLayer_Account_Historical_Report/getAccountUrlUptimeSummary.md +++ b/content/reference/services/SoftLayer_Account_Historical_Report/getAccountUrlUptimeSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Historical_Report" --- -### Curl Example +# [REST Example](#getAccountUrlUptimeSummary-example) {#getAccountUrlUptimeSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Historical_Report/getAccountUrlUptimeSummary' ``` diff --git a/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeDetail.md b/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeDetail.md index 595b594c2f..d052cdaca3 100644 --- a/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeDetail.md +++ b/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Historical_Report" --- -### Curl Example +# [REST Example](#getHostUptimeDetail-example) {#getHostUptimeDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Historical_Report/getHostUptimeDetail' ``` diff --git a/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeGraphData.md b/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeGraphData.md index e0d65a6749..561d2141ea 100644 --- a/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeGraphData.md +++ b/content/reference/services/SoftLayer_Account_Historical_Report/getHostUptimeGraphData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Historical_Report" --- -### Curl Example +# [REST Example](#getHostUptimeGraphData-example) {#getHostUptimeGraphData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Historical_Report/getHostUptimeGraphData' ``` diff --git a/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeDetail.md b/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeDetail.md index 3de16c7d72..e29c2fdbec 100644 --- a/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeDetail.md +++ b/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Historical_Report" --- -### Curl Example +# [REST Example](#getUrlUptimeDetail-example) {#getUrlUptimeDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Historical_Report/getUrlUptimeDetail' ``` diff --git a/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeGraphData.md b/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeGraphData.md index 0a11833583..cca91f3498 100644 --- a/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeGraphData.md +++ b/content/reference/services/SoftLayer_Account_Historical_Report/getUrlUptimeGraphData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Historical_Report" --- -### Curl Example +# [REST Example](#getUrlUptimeGraphData-example) {#getUrlUptimeGraphData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Historical_Report/getUrlUptimeGraphData' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/getAccountTypes.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/getAccountTypes.md index 2f52e45768..ab3b415e1e 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/getAccountTypes.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/getAccountTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#getAccountTypes-example) {#getAccountTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/getAccountTypes' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/getAuthorizationUrl.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/getAuthorizationUrl.md index 46c45a7e8f..e66850fcb2 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/getAuthorizationUrl.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/getAuthorizationUrl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#getAuthorizationUrl-example) {#getAuthorizationUrl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/getAuthorizationUrl' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountries.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountries.md index 1d37b404f3..ebb9d8459c 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountries.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountries.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#getBmsCountries-example) {#getBmsCountries-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/getBmsCountries' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountryList.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountryList.md index 47b518993a..8a77f66e3a 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountryList.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/getBmsCountryList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#getBmsCountryList-example) {#getBmsCountryList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/getBmsCountryList' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/getEmployeeAccessToken.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/getEmployeeAccessToken.md index 28fb06394a..90cd30841c 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/getEmployeeAccessToken.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/getEmployeeAccessToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#getEmployeeAccessToken-example) {#getEmployeeAccessToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/getEmployeeAccessToken' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/getManagerPreview.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/getManagerPreview.md index e2b722465c..a375bccf51 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/getManagerPreview.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/getManagerPreview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#getManagerPreview-example) {#getManagerPreview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/getManagerPreview' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/hasExistingRequest.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/hasExistingRequest.md index 1b44207b1e..b3bd2f5aa7 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/hasExistingRequest.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/hasExistingRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#hasExistingRequest-example) {#hasExistingRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/hasExistingRequest' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/managerApprove.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/managerApprove.md index 30d884039b..102ded0510 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/managerApprove.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/managerApprove.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#managerApprove-example) {#managerApprove-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/managerApprove' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/managerDeny.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/managerDeny.md index 9cc10f1751..d9df08917f 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/managerDeny.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/managerDeny.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#managerDeny-example) {#managerDeny-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/managerDeny' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm/requestAccount.md b/content/reference/services/SoftLayer_Account_Internal_Ibm/requestAccount.md index 6b13c13e58..9700cb7a8f 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm/requestAccount.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm/requestAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm" --- -### Curl Example +# [REST Example](#requestAccount-example) {#requestAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_Internal_Ibm_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_Internal_Ibm_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm/requestAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/getSprintContainer.md b/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/getSprintContainer.md index 7feba832e1..ffa8e9148d 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/getSprintContainer.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/getSprintContainer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm_CostRecovery_Validator" --- -### Curl Example +# [REST Example](#getSprintContainer-example) {#getSprintContainer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/getSprintContainer' ``` diff --git a/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/validateByAccountAndCountryId.md b/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/validateByAccountAndCountryId.md index affa527193..a0992669b4 100644 --- a/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/validateByAccountAndCountryId.md +++ b/content/reference/services/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/validateByAccountAndCountryId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Internal_Ibm_CostRecovery_Validator" --- -### Curl Example +# [REST Example](#validateByAccountAndCountryId-example) {#validateByAccountAndCountryId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Internal_Ibm_CostRecovery_Validator/validateByAccountAndCountryId' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_Bluemix/getAccount.md b/content/reference/services/SoftLayer_Account_Link_Bluemix/getAccount.md index a537b7450d..1b0961ae29 100644 --- a/content/reference/services/SoftLayer_Account_Link_Bluemix/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Link_Bluemix/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_Bluemix" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_Bluemix/{SoftLayer_Account_Link_BluemixID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_Bluemix/getObject.md b/content/reference/services/SoftLayer_Account_Link_Bluemix/getObject.md index e78ba06723..ab5001db49 100644 --- a/content/reference/services/SoftLayer_Account_Link_Bluemix/getObject.md +++ b/content/reference/services/SoftLayer_Account_Link_Bluemix/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_Bluemix" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_Bluemix/{SoftLayer_Account_Link_BluemixID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_Bluemix/getServiceProvider.md b/content/reference/services/SoftLayer_Account_Link_Bluemix/getServiceProvider.md index f917c171f4..5859ab64fc 100644 --- a/content/reference/services/SoftLayer_Account_Link_Bluemix/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Account_Link_Bluemix/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_Bluemix" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_Bluemix/{SoftLayer_Account_Link_BluemixID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_Bluemix/getSupportTierType.md b/content/reference/services/SoftLayer_Account_Link_Bluemix/getSupportTierType.md index f7ab8b2b4f..e6a054e5fa 100644 --- a/content/reference/services/SoftLayer_Account_Link_Bluemix/getSupportTierType.md +++ b/content/reference/services/SoftLayer_Account_Link_Bluemix/getSupportTierType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_Bluemix" --- -### Curl Example +# [REST Example](#getSupportTierType-example) {#getSupportTierType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_Bluemix/{SoftLayer_Account_Link_BluemixID}/getSupportTierType' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSDomain.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSDomain.md index 1b786c2594..8dea7051fd 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSDomain.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#createOSDomain-example) {#createOSDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Link_OpenStack_LinkRequest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Link_OpenStack_LinkRequest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/createOSDomain' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSProject.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSProject.md index de9c740586..8e66b7557b 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSProject.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/createOSProject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#createOSProject-example) {#createOSProject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Link_OpenStack_LinkRequest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Link_OpenStack_LinkRequest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/createOSProject' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSDomain.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSDomain.md index afe94be365..e2d151895b 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSDomain.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#deleteOSDomain-example) {#deleteOSDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/deleteOSDomain' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSProject.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSProject.md index 1f12d6420d..a8844f1bbb 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSProject.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteOSProject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#deleteOSProject-example) {#deleteOSProject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/deleteOSProject' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteObject.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteObject.md index 9b839f5736..6d8f8ff959 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/{SoftLayer_Account_Link_OpenStackID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/getAccount.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/getAccount.md index cfcd99e759..78fbea8b40 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/{SoftLayer_Account_Link_OpenStackID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/getOSProject.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/getOSProject.md index ad9e0c4bd6..3b966966a0 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/getOSProject.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/getOSProject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#getOSProject-example) {#getOSProject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/getOSProject' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/getObject.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/getObject.md index 7b852093f6..68a508aa47 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/getObject.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/{SoftLayer_Account_Link_OpenStackID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/getServiceProvider.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/getServiceProvider.md index ef7da6db2d..23d04ee869 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/{SoftLayer_Account_Link_OpenStackID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Account_Link_OpenStack/listOSProjects.md b/content/reference/services/SoftLayer_Account_Link_OpenStack/listOSProjects.md index 04403d4d57..082d7903bc 100644 --- a/content/reference/services/SoftLayer_Account_Link_OpenStack/listOSProjects.md +++ b/content/reference/services/SoftLayer_Account_Link_OpenStack/listOSProjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Link_OpenStack" --- -### Curl Example +# [REST Example](#listOSProjects-example) {#listOSProjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Link_OpenStack/listOSProjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Lockdown_Request/cancelRequest.md b/content/reference/services/SoftLayer_Account_Lockdown_Request/cancelRequest.md index 407e50c7c0..624cca717f 100644 --- a/content/reference/services/SoftLayer_Account_Lockdown_Request/cancelRequest.md +++ b/content/reference/services/SoftLayer_Account_Lockdown_Request/cancelRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Lockdown_Request" --- -### Curl Example +# [REST Example](#cancelRequest-example) {#cancelRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Lockdown_Request/{SoftLayer_Account_Lockdown_RequestID}/cancelRequest' ``` diff --git a/content/reference/services/SoftLayer_Account_Lockdown_Request/disableLockedAccount.md b/content/reference/services/SoftLayer_Account_Lockdown_Request/disableLockedAccount.md index a4cabe5772..c314a4af1a 100644 --- a/content/reference/services/SoftLayer_Account_Lockdown_Request/disableLockedAccount.md +++ b/content/reference/services/SoftLayer_Account_Lockdown_Request/disableLockedAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Lockdown_Request" --- -### Curl Example +# [REST Example](#disableLockedAccount-example) {#disableLockedAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Lockdown_Request/{SoftLayer_Account_Lockdown_RequestID}/disableLockedAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Lockdown_Request/disconnectCompute.md b/content/reference/services/SoftLayer_Account_Lockdown_Request/disconnectCompute.md index 4227fdce1d..df155ea73c 100644 --- a/content/reference/services/SoftLayer_Account_Lockdown_Request/disconnectCompute.md +++ b/content/reference/services/SoftLayer_Account_Lockdown_Request/disconnectCompute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Lockdown_Request" --- -### Curl Example +# [REST Example](#disconnectCompute-example) {#disconnectCompute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Lockdown_Request/disconnectCompute' ``` diff --git a/content/reference/services/SoftLayer_Account_Lockdown_Request/getAccountHistory.md b/content/reference/services/SoftLayer_Account_Lockdown_Request/getAccountHistory.md index 11bef3ced8..de688fe7e9 100644 --- a/content/reference/services/SoftLayer_Account_Lockdown_Request/getAccountHistory.md +++ b/content/reference/services/SoftLayer_Account_Lockdown_Request/getAccountHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Lockdown_Request" --- -### Curl Example +# [REST Example](#getAccountHistory-example) {#getAccountHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Lockdown_Request/getAccountHistory' ``` diff --git a/content/reference/services/SoftLayer_Account_Lockdown_Request/getObject.md b/content/reference/services/SoftLayer_Account_Lockdown_Request/getObject.md index 570d67a3b7..540748b04b 100644 --- a/content/reference/services/SoftLayer_Account_Lockdown_Request/getObject.md +++ b/content/reference/services/SoftLayer_Account_Lockdown_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Lockdown_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Lockdown_Request/{SoftLayer_Account_Lockdown_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Lockdown_Request/reconnectCompute.md b/content/reference/services/SoftLayer_Account_Lockdown_Request/reconnectCompute.md index f2403b2b96..0b2cc00376 100644 --- a/content/reference/services/SoftLayer_Account_Lockdown_Request/reconnectCompute.md +++ b/content/reference/services/SoftLayer_Account_Lockdown_Request/reconnectCompute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Lockdown_Request" --- -### Curl Example +# [REST Example](#reconnectCompute-example) {#reconnectCompute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Lockdown_Request/{SoftLayer_Account_Lockdown_RequestID}/reconnectCompute' ``` diff --git a/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getAccount.md b/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getAccount.md index cbef7ffe2c..71a8eca33a 100644 --- a/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getAccount.md +++ b/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_MasterServiceAgreement" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_MasterServiceAgreement/{SoftLayer_Account_MasterServiceAgreementID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getFile.md b/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getFile.md index 6a8e046130..a520c34bea 100644 --- a/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getFile.md +++ b/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_MasterServiceAgreement" --- -### Curl Example +# [REST Example](#getFile-example) {#getFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_MasterServiceAgreement/getFile' ``` diff --git a/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getObject.md b/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getObject.md index d5ff075678..a9c881bc24 100644 --- a/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getObject.md +++ b/content/reference/services/SoftLayer_Account_MasterServiceAgreement/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_MasterServiceAgreement" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_MasterServiceAgreement/{SoftLayer_Account_MasterServiceAgreementID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/editObject.md b/content/reference/services/SoftLayer_Account_Media/editObject.md index ce97d160f2..430725f096 100644 --- a/content/reference/services/SoftLayer_Account_Media/editObject.md +++ b/content/reference/services/SoftLayer_Account_Media/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Media]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Media]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getAccount.md b/content/reference/services/SoftLayer_Account_Media/getAccount.md index c9419d17bd..cb0e4cf18a 100644 --- a/content/reference/services/SoftLayer_Account_Media/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Media/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getAllMediaTypes.md b/content/reference/services/SoftLayer_Account_Media/getAllMediaTypes.md index be7b645b37..a0ac4e892d 100644 --- a/content/reference/services/SoftLayer_Account_Media/getAllMediaTypes.md +++ b/content/reference/services/SoftLayer_Account_Media/getAllMediaTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getAllMediaTypes-example) {#getAllMediaTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/getAllMediaTypes' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getCreateUser.md b/content/reference/services/SoftLayer_Account_Media/getCreateUser.md index 91372c7e95..434b7f342a 100644 --- a/content/reference/services/SoftLayer_Account_Media/getCreateUser.md +++ b/content/reference/services/SoftLayer_Account_Media/getCreateUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getCreateUser-example) {#getCreateUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getCreateUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getDatacenter.md b/content/reference/services/SoftLayer_Account_Media/getDatacenter.md index 2fe2296fa9..49396a2b59 100644 --- a/content/reference/services/SoftLayer_Account_Media/getDatacenter.md +++ b/content/reference/services/SoftLayer_Account_Media/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getModifyEmployee.md b/content/reference/services/SoftLayer_Account_Media/getModifyEmployee.md index c48f177122..7a964a654d 100644 --- a/content/reference/services/SoftLayer_Account_Media/getModifyEmployee.md +++ b/content/reference/services/SoftLayer_Account_Media/getModifyEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getModifyEmployee-example) {#getModifyEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getModifyEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getModifyUser.md b/content/reference/services/SoftLayer_Account_Media/getModifyUser.md index 20ab0b16fb..3d5e25a78f 100644 --- a/content/reference/services/SoftLayer_Account_Media/getModifyUser.md +++ b/content/reference/services/SoftLayer_Account_Media/getModifyUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getModifyUser-example) {#getModifyUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getModifyUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getObject.md b/content/reference/services/SoftLayer_Account_Media/getObject.md index 9b1e45a7fa..490c6891d0 100644 --- a/content/reference/services/SoftLayer_Account_Media/getObject.md +++ b/content/reference/services/SoftLayer_Account_Media/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getRequest.md b/content/reference/services/SoftLayer_Account_Media/getRequest.md index acdb3df588..1b599ef4fc 100644 --- a/content/reference/services/SoftLayer_Account_Media/getRequest.md +++ b/content/reference/services/SoftLayer_Account_Media/getRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getRequest-example) {#getRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getRequest' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getType.md b/content/reference/services/SoftLayer_Account_Media/getType.md index 648f9739bd..4f401aa2de 100644 --- a/content/reference/services/SoftLayer_Account_Media/getType.md +++ b/content/reference/services/SoftLayer_Account_Media/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/getVolume.md b/content/reference/services/SoftLayer_Account_Media/getVolume.md index 12ab9f329f..6e9768e9c6 100644 --- a/content/reference/services/SoftLayer_Account_Media/getVolume.md +++ b/content/reference/services/SoftLayer_Account_Media/getVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#getVolume-example) {#getVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/{SoftLayer_Account_MediaID}/getVolume' ``` diff --git a/content/reference/services/SoftLayer_Account_Media/removeMediaFromList.md b/content/reference/services/SoftLayer_Account_Media/removeMediaFromList.md index 354032f109..0117cff3f1 100644 --- a/content/reference/services/SoftLayer_Account_Media/removeMediaFromList.md +++ b/content/reference/services/SoftLayer_Account_Media/removeMediaFromList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media" --- -### Curl Example +# [REST Example](#removeMediaFromList-example) {#removeMediaFromList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Media]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Media]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media/removeMediaFromList' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/editObject.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/editObject.md index 4be8216ac4..99f943a6aa 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/editObject.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Media_Data_Transfer_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Media_Data_Transfer_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAccount.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAccount.md index 4c92aefa3b..c233d7e921 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getActiveTickets.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getActiveTickets.md index 3eed55318a..8b9abf17af 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getActiveTickets.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getActiveTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getActiveTickets-example) {#getActiveTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getActiveTickets' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAllRequestStatuses.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAllRequestStatuses.md index 8c89592dd2..c94927d724 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAllRequestStatuses.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getAllRequestStatuses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getAllRequestStatuses-example) {#getAllRequestStatuses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/getAllRequestStatuses' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getBillingItem.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getBillingItem.md index 0bf223644f..fae65ea8c4 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getBillingItem.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getCreateUser.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getCreateUser.md index 8c61204316..8a42a2766e 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getCreateUser.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getCreateUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getCreateUser-example) {#getCreateUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getCreateUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getMedia.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getMedia.md index 6ab7471899..37135e2a76 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getMedia.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getMedia.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getMedia-example) {#getMedia-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getMedia' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyEmployee.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyEmployee.md index 1a8201af59..a79bea2fc1 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyEmployee.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getModifyEmployee-example) {#getModifyEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getModifyEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyUser.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyUser.md index 9cd3ff2e62..48f6586186 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyUser.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getModifyUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getModifyUser-example) {#getModifyUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getModifyUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getObject.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getObject.md index 6f28f15ebc..0168e571a1 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getObject.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getShipments.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getShipments.md index 5ec9d2cb89..a4084dc05b 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getShipments.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getShipments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getShipments-example) {#getShipments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getShipments' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getStatus.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getStatus.md index 4099c77ab2..f5ed8b4357 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getStatus.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getTickets.md b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getTickets.md index 73460afd2d..37c439ceaa 100644 --- a/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getTickets.md +++ b/content/reference/services/SoftLayer_Account_Media_Data_Transfer_Request/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Media_Data_Transfer_Request" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Media_Data_Transfer_Request/{SoftLayer_Account_Media_Data_Transfer_RequestID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/createObject.md b/content/reference/services/SoftLayer_Account_Note/createObject.md index a8798cdbfc..b058fedefa 100644 --- a/content/reference/services/SoftLayer_Account_Note/createObject.md +++ b/content/reference/services/SoftLayer_Account_Note/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Note]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Note]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/deleteObject.md b/content/reference/services/SoftLayer_Account_Note/deleteObject.md index ac7cdf8412..3cf3dc05c5 100644 --- a/content/reference/services/SoftLayer_Account_Note/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Note/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/{SoftLayer_Account_NoteID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/editObject.md b/content/reference/services/SoftLayer_Account_Note/editObject.md index bcc40580d1..e952bb886b 100644 --- a/content/reference/services/SoftLayer_Account_Note/editObject.md +++ b/content/reference/services/SoftLayer_Account_Note/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Note]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Note]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/{SoftLayer_Account_NoteID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/getAccount.md b/content/reference/services/SoftLayer_Account_Note/getAccount.md index a805ff4029..6407de69cc 100644 --- a/content/reference/services/SoftLayer_Account_Note/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Note/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/{SoftLayer_Account_NoteID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/getCustomer.md b/content/reference/services/SoftLayer_Account_Note/getCustomer.md index e14f28c1dd..dbadc7767b 100644 --- a/content/reference/services/SoftLayer_Account_Note/getCustomer.md +++ b/content/reference/services/SoftLayer_Account_Note/getCustomer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#getCustomer-example) {#getCustomer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/{SoftLayer_Account_NoteID}/getCustomer' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/getNoteHistory.md b/content/reference/services/SoftLayer_Account_Note/getNoteHistory.md index 8b7a603b46..46bb230f06 100644 --- a/content/reference/services/SoftLayer_Account_Note/getNoteHistory.md +++ b/content/reference/services/SoftLayer_Account_Note/getNoteHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#getNoteHistory-example) {#getNoteHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/{SoftLayer_Account_NoteID}/getNoteHistory' ``` diff --git a/content/reference/services/SoftLayer_Account_Note/getObject.md b/content/reference/services/SoftLayer_Account_Note/getObject.md index 5e93d89e21..0fa8ea290f 100644 --- a/content/reference/services/SoftLayer_Account_Note/getObject.md +++ b/content/reference/services/SoftLayer_Account_Note/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Note" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Note/{SoftLayer_Account_NoteID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/createProspect.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/createProspect.md index 7bf75dff4b..3672691bff 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/createProspect.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/createProspect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#createProspect-example) {#createProspect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Referral_Partner_Prospect, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Referral_Partner_Prospect, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/createProspect' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAccount.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAccount.md index 62c4c74700..6691ae7c88 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/{SoftLayer_Account_Partner_Referral_ProspectID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAssignedEmployees.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAssignedEmployees.md index cdeb5164f9..5f4731cb9a 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAssignedEmployees.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getAssignedEmployees.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#getAssignedEmployees-example) {#getAssignedEmployees-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/{SoftLayer_Account_Partner_Referral_ProspectID}/getAssignedEmployees' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getObject.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getObject.md index 4686ec316e..07ced57c75 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getObject.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/{SoftLayer_Account_Partner_Referral_ProspectID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getQuotes.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getQuotes.md index 54eab1aa78..0668d73ce4 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getQuotes.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getQuotes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#getQuotes-example) {#getQuotes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/{SoftLayer_Account_Partner_Referral_ProspectID}/getQuotes' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getSurveyQuestions.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getSurveyQuestions.md index e8552b1515..de598543a9 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getSurveyQuestions.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getSurveyQuestions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#getSurveyQuestions-example) {#getSurveyQuestions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/getSurveyQuestions' ``` diff --git a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getType.md b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getType.md index 654f36e229..566684c818 100644 --- a/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getType.md +++ b/content/reference/services/SoftLayer_Account_Partner_Referral_Prospect/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Partner_Referral_Prospect" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Partner_Referral_Prospect/{SoftLayer_Account_Partner_Referral_ProspectID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_Password/editObject.md b/content/reference/services/SoftLayer_Account_Password/editObject.md index c05d161fbe..2af0dd2936 100644 --- a/content/reference/services/SoftLayer_Account_Password/editObject.md +++ b/content/reference/services/SoftLayer_Account_Password/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Password" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Password/{SoftLayer_Account_PasswordID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Password/getAccount.md b/content/reference/services/SoftLayer_Account_Password/getAccount.md index a0ac98e8cb..6a63e170a7 100644 --- a/content/reference/services/SoftLayer_Account_Password/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Password/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Password" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Password/{SoftLayer_Account_PasswordID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Password/getObject.md b/content/reference/services/SoftLayer_Account_Password/getObject.md index d0e0fbc748..bdd2ff8b1c 100644 --- a/content/reference/services/SoftLayer_Account_Password/getObject.md +++ b/content/reference/services/SoftLayer_Account_Password/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Password" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Password/{SoftLayer_Account_PasswordID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Password/getType.md b/content/reference/services/SoftLayer_Account_Password/getType.md index 47bdffceea..96ca316fa4 100644 --- a/content/reference/services/SoftLayer_Account_Password/getType.md +++ b/content/reference/services/SoftLayer_Account_Password/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Password" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Password/{SoftLayer_Account_PasswordID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/approveReview.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/approveReview.md index 4a1166fb76..a3bb009671 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/approveReview.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/approveReview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#approveReview-example) {#approveReview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/approveReview' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/denyReview.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/denyReview.md index 05f62eaa65..5691e0ab7b 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/denyReview.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/denyReview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#denyReview-example) {#denyReview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/denyReview' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getAuthenticationUrl.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getAuthenticationUrl.md index a94e9775dd..7bd78fccdd 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getAuthenticationUrl.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getAuthenticationUrl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getAuthenticationUrl-example) {#getAuthenticationUrl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getAuthenticationUrl' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingIntegratedOfferingTeamReview.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingIntegratedOfferingTeamReview.md index b1c135914d..554981928f 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingIntegratedOfferingTeamReview.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingIntegratedOfferingTeamReview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getRequestsPendingIntegratedOfferingTeamReview-example) {#getRequestsPendingIntegratedOfferingTeamReview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getRequestsPendingIntegratedOfferingTeamReview' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingOverThresholdReview.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingOverThresholdReview.md index 878a0f57ca..01c4cc3218 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingOverThresholdReview.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getRequestsPendingOverThresholdReview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getRequestsPendingOverThresholdReview-example) {#getRequestsPendingOverThresholdReview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getRequestsPendingOverThresholdReview' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerAccessToken.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerAccessToken.md index 615ef97c07..b5aa93aaf7 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerAccessToken.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerAccessToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getReviewerAccessToken-example) {#getReviewerAccessToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getReviewerAccessToken' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerEmailFromAccessToken.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerEmailFromAccessToken.md index bc625c6c97..1c624a8428 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerEmailFromAccessToken.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getReviewerEmailFromAccessToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getReviewerEmailFromAccessToken-example) {#getReviewerEmailFromAccessToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getReviewerEmailFromAccessToken' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequest.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequest.md index 5989791b4c..76271df843 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequest.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getSubmittedRequest-example) {#getSubmittedRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getSubmittedRequest' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequests.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequests.md index bb72f88731..e1063f7893 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequests.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getSubmittedRequests.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getSubmittedRequests-example) {#getSubmittedRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getSubmittedRequests' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getSupportEmailAddress.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getSupportEmailAddress.md index 2b72508113..011793b2fc 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getSupportEmailAddress.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getSupportEmailAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getSupportEmailAddress-example) {#getSupportEmailAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getSupportEmailAddress' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingIntegratedOfferingTeamReview.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingIntegratedOfferingTeamReview.md index 2f2d7b6b09..fcc8d8b5b7 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingIntegratedOfferingTeamReview.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingIntegratedOfferingTeamReview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getTotalRequestsPendingIntegratedOfferingTeamReview-example) {#getTotalRequestsPendingIntegratedOfferingTeamReview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingIntegratedOfferingTeamReview' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingOverThresholdReviewCount.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingOverThresholdReviewCount.md index 7341b8ba65..ee396ed147 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingOverThresholdReviewCount.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingOverThresholdReviewCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#getTotalRequestsPendingOverThresholdReviewCount-example) {#getTotalRequestsPendingOverThresholdReviewCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/getTotalRequestsPendingOverThresholdReviewCount' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/isCurrentReviewer.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/isCurrentReviewer.md index bfe17cba50..a4043a48ef 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/isCurrentReviewer.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/isCurrentReviewer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#isCurrentReviewer-example) {#isCurrentReviewer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/isCurrentReviewer' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/isIntegratedOfferingTeamReviewer.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/isIntegratedOfferingTeamReviewer.md index b74f77f991..655b984a8b 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/isIntegratedOfferingTeamReviewer.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/isIntegratedOfferingTeamReviewer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#isIntegratedOfferingTeamReviewer-example) {#isIntegratedOfferingTeamReviewer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/isIntegratedOfferingTeamReviewer' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/isOverThresholdReviewer.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/isOverThresholdReviewer.md index ebc1bc3fc8..a31fefaacc 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/isOverThresholdReviewer.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/isOverThresholdReviewer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#isOverThresholdReviewer-example) {#isOverThresholdReviewer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/isOverThresholdReviewer' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/requestAccountTeamFundedAccount.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/requestAccountTeamFundedAccount.md index 5c375aa716..fd5087cf4b 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/requestAccountTeamFundedAccount.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/requestAccountTeamFundedAccount.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#requestAccountTeamFundedAccount-example) {#requestAccountTeamFundedAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_ProofOfConcept_Request_AccountFunded]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_ProofOfConcept_Request_AccountFunded]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/requestAccountTeamFundedAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/requestGlobalFundedAccount.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/requestGlobalFundedAccount.md index 905f6457d2..c7f84baff8 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/requestGlobalFundedAccount.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/requestGlobalFundedAccount.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#requestGlobalFundedAccount-example) {#requestGlobalFundedAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_ProofOfConcept_Request_GlobalFunded]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Account_ProofOfConcept_Request_GlobalFunded]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/requestGlobalFundedAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept/verifyReviewer.md b/content/reference/services/SoftLayer_Account_ProofOfConcept/verifyReviewer.md index 6258c68c55..a13df1b193 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept/verifyReviewer.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept/verifyReviewer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept" --- -### Curl Example +# [REST Example](#verifyReviewer-example) {#verifyReviewer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept/verifyReviewer' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getAllObjects.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getAllObjects.md index fb41711bdb..ae3f6ccfbf 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getObject.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getObject.md index 792aa62f39..6da9bab734 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getObject.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver/{SoftLayer_Account_ProofOfConcept_ApproverID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getRole.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getRole.md index dbd2095ecb..9ebddc179a 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getRole.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver" --- -### Curl Example +# [REST Example](#getRole-example) {#getRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver/{SoftLayer_Account_ProofOfConcept_ApproverID}/getRole' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getType.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getType.md index 09fa66851d..8200741bbe 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getType.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver/{SoftLayer_Account_ProofOfConcept_ApproverID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Role/getObject.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Role/getObject.md index f674702c68..65ae13292e 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Role/getObject.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Role/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver_Role" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver_Role/{SoftLayer_Account_ProofOfConcept_Approver_RoleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getApprovers.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getApprovers.md index 8156a15829..7f1c0525e1 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getApprovers.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getApprovers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver_Type" --- -### Curl Example +# [REST Example](#getApprovers-example) {#getApprovers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver_Type/{SoftLayer_Account_ProofOfConcept_Approver_TypeID}/getApprovers' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getObject.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getObject.md index d38c2cc0ac..6d03c252fe 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Approver_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Approver_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Approver_Type/{SoftLayer_Account_ProofOfConcept_Approver_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getAllObjects.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getAllObjects.md index 9d2b070f94..ba148e5f70 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Campaign_Code" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Campaign_Code/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getObject.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getObject.md index ac2cad1c94..89533d8784 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getObject.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Campaign_Code/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Campaign_Code" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Campaign_Code/{SoftLayer_Account_ProofOfConcept_Campaign_CodeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getAllObjects.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getAllObjects.md index 09d2be69bb..22884d4181 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Funding_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Funding_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApproverTypes.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApproverTypes.md index 0c30e019d2..befcb719b0 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApproverTypes.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApproverTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Funding_Type" --- -### Curl Example +# [REST Example](#getApproverTypes-example) {#getApproverTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Funding_Type/{SoftLayer_Account_ProofOfConcept_Funding_TypeID}/getApproverTypes' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApprovers.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApprovers.md index 38101d139a..5fb74b913a 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApprovers.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getApprovers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Funding_Type" --- -### Curl Example +# [REST Example](#getApprovers-example) {#getApprovers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Funding_Type/{SoftLayer_Account_ProofOfConcept_Funding_TypeID}/getApprovers' ``` diff --git a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getObject.md b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getObject.md index d8f544b7e9..3065b98f8e 100644 --- a/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_ProofOfConcept_Funding_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_ProofOfConcept_Funding_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_ProofOfConcept_Funding_Type/{SoftLayer_Account_ProofOfConcept_Funding_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/createObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/createObject.md index 815c74e9c0..8e5fd8a5ca 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/createObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/deleteObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/deleteObject.md index d65c397bd5..655d829203 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/editObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/editObject.md index 749f5e0d09..08503aa635 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/editObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getAccount.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getAccount.md index 569bf335ab..b563b67a42 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetailType.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetailType.md index b017251973..58ae08720a 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetailType.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetailType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#getDetailType-example) {#getDetailType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/getDetailType' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetails.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetails.md index a0bb1d4e2d..f6fa73ed00 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetails.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#getDetails-example) {#getDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/getDetails' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getObject.md index 197dd9ad6c..ecc78aadb2 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getProperties.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getProperties.md index afa79295c6..f2566a22e7 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getProperties.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getProperties.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#getProperties-example) {#getProperties-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/getProperties' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getRegionalInternetRegistryHandle.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getRegionalInternetRegistryHandle.md index fc1c5dad89..3fe0f09d28 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getRegionalInternetRegistryHandle.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/getRegionalInternetRegistryHandle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistryHandle-example) {#getRegionalInternetRegistryHandle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/getRegionalInternetRegistryHandle' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/updateReferencedRegistrations.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/updateReferencedRegistrations.md index b802eb373c..e8986d9e58 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/updateReferencedRegistrations.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/updateReferencedRegistrations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#updateReferencedRegistrations-example) {#updateReferencedRegistrations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/updateReferencedRegistrations' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/validatePersonForAllRegistrars.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/validatePersonForAllRegistrars.md index 38d4bc2dfc..0d22bd249d 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/validatePersonForAllRegistrars.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail/validatePersonForAllRegistrars.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail" --- -### Curl Example +# [REST Example](#validatePersonForAllRegistrars-example) {#validatePersonForAllRegistrars-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail/{SoftLayer_Account_Regional_Registry_DetailID}/validatePersonForAllRegistrars' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject.md index 508a2cde96..4138b7fef8 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObjects.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObjects.md index 5d76049a42..999eddae93 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObjects.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/deleteObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/deleteObject.md index 5bd4a57307..56cac87203 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/{SoftLayer_Account_Regional_Registry_Detail_PropertyID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObject.md index b359e603b3..a6bd86674e 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/{SoftLayer_Account_Regional_Registry_Detail_PropertyID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObjects.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObjects.md index 60334d74bc..644fd3944b 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObjects.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Regional_Registry_Detail_Property]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getDetail.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getDetail.md index d175cde589..3381531144 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getDetail.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#getDetail-example) {#getDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/{SoftLayer_Account_Regional_Registry_Detail_PropertyID}/getDetail' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getObject.md index ee06c28f4c..776e0877af 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/{SoftLayer_Account_Regional_Registry_Detail_PropertyID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getPropertyType.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getPropertyType.md index b9563afeae..636d095188 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getPropertyType.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/getPropertyType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property" --- -### Curl Example +# [REST Example](#getPropertyType-example) {#getPropertyType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property/{SoftLayer_Account_Regional_Registry_Detail_PropertyID}/getPropertyType' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getAllObjects.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getAllObjects.md index 709310d179..66208d6fd3 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getObject.md index 2743d08ddd..f99fc33422 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Property_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Property_Type/{SoftLayer_Account_Regional_Registry_Detail_Property_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getAllObjects.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getAllObjects.md index 240274b015..d6dee4245f 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getObject.md b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getObject.md index b5edd5fa7a..131d9dd2c8 100644 --- a/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Regional_Registry_Detail_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Regional_Registry_Detail_Type/{SoftLayer_Account_Regional_Registry_Detail_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/createRequest.md b/content/reference/services/SoftLayer_Account_Reports_Request/createRequest.md index d708a70d03..acd546920c 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/createRequest.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/createRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#createRequest-example) {#createRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact, string, string, SoftLayer_Account_Contact]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Contact, string, string, SoftLayer_Account_Contact]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/createRequest' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getAccount.md b/content/reference/services/SoftLayer_Account_Reports_Request/getAccount.md index 097e987fa1..efa8081f12 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getAccountContact.md b/content/reference/services/SoftLayer_Account_Reports_Request/getAccountContact.md index 76cd0a5b7c..7794ffc1b2 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getAccountContact.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getAccountContact.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getAccountContact-example) {#getAccountContact-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getAccountContact' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getAllObjects.md b/content/reference/services/SoftLayer_Account_Reports_Request/getAllObjects.md index a269dace08..b8bdde4457 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getAllObjects.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getObject.md b/content/reference/services/SoftLayer_Account_Reports_Request/getObject.md index ddbaff0906..af148c3cee 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getObject.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getReportType.md b/content/reference/services/SoftLayer_Account_Reports_Request/getReportType.md index e00c2d5183..e05ddd1af5 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getReportType.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getReportType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getReportType-example) {#getReportType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getReportType' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getRequestByRequestKey.md b/content/reference/services/SoftLayer_Account_Reports_Request/getRequestByRequestKey.md index a4b620d14a..c717381724 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getRequestByRequestKey.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getRequestByRequestKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getRequestByRequestKey-example) {#getRequestByRequestKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/getRequestByRequestKey' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getRequestorContact.md b/content/reference/services/SoftLayer_Account_Reports_Request/getRequestorContact.md index 95927e8cc3..4a675c1007 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getRequestorContact.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getRequestorContact.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getRequestorContact-example) {#getRequestorContact-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getRequestorContact' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getTicket.md b/content/reference/services/SoftLayer_Account_Reports_Request/getTicket.md index d05d7dcec5..0791991b71 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getTicket.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/getUser.md b/content/reference/services/SoftLayer_Account_Reports_Request/getUser.md index d1932ce098..1be199f5cd 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/getUser.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/{SoftLayer_Account_Reports_RequestID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/sendReportEmail.md b/content/reference/services/SoftLayer_Account_Reports_Request/sendReportEmail.md index cf4dfb2990..63977a5f71 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/sendReportEmail.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/sendReportEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#sendReportEmail-example) {#sendReportEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Reports_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Reports_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/sendReportEmail' ``` diff --git a/content/reference/services/SoftLayer_Account_Reports_Request/updateTicketOnDecline.md b/content/reference/services/SoftLayer_Account_Reports_Request/updateTicketOnDecline.md index 8bb1576657..32d2271462 100644 --- a/content/reference/services/SoftLayer_Account_Reports_Request/updateTicketOnDecline.md +++ b/content/reference/services/SoftLayer_Account_Reports_Request/updateTicketOnDecline.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Reports_Request" --- -### Curl Example +# [REST Example](#updateTicketOnDecline-example) {#updateTicketOnDecline-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Reports_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Reports_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Reports_Request/updateTicketOnDecline' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/editObject.md b/content/reference/services/SoftLayer_Account_Shipment/editObject.md index 414f878a13..707f10b74d 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/editObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getAccount.md b/content/reference/services/SoftLayer_Account_Shipment/getAccount.md index c248d46fd0..cf107cae30 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getAccount.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getAllCouriers.md b/content/reference/services/SoftLayer_Account_Shipment/getAllCouriers.md index 0eef3b43d2..749d7ea6c3 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getAllCouriers.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getAllCouriers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getAllCouriers-example) {#getAllCouriers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/getAllCouriers' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getAllCouriersByType.md b/content/reference/services/SoftLayer_Account_Shipment/getAllCouriersByType.md index 151a2f7928..4c3d37495b 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getAllCouriersByType.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getAllCouriersByType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getAllCouriersByType-example) {#getAllCouriersByType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/getAllCouriersByType' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentStatuses.md b/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentStatuses.md index 007b1508d0..3f9bcd8ef4 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentStatuses.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentStatuses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getAllShipmentStatuses-example) {#getAllShipmentStatuses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/getAllShipmentStatuses' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentTypes.md b/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentTypes.md index a8e5f0ab93..239a2ba260 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentTypes.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getAllShipmentTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getAllShipmentTypes-example) {#getAllShipmentTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/getAllShipmentTypes' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getCourier.md b/content/reference/services/SoftLayer_Account_Shipment/getCourier.md index 342738cc6c..7d47b45135 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getCourier.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getCourier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getCourier-example) {#getCourier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getCourier' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getCreateEmployee.md b/content/reference/services/SoftLayer_Account_Shipment/getCreateEmployee.md index d1339143c3..ee465c7d20 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getCreateEmployee.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getCreateEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getCreateEmployee-example) {#getCreateEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getCreateEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getCreateUser.md b/content/reference/services/SoftLayer_Account_Shipment/getCreateUser.md index d21d7e5054..49e91eca54 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getCreateUser.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getCreateUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getCreateUser-example) {#getCreateUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getCreateUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getCurrency.md b/content/reference/services/SoftLayer_Account_Shipment/getCurrency.md index 3872dfd045..d23ab66df2 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getCurrency.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getCurrency.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getCurrency-example) {#getCurrency-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getCurrency' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getDestinationAddress.md b/content/reference/services/SoftLayer_Account_Shipment/getDestinationAddress.md index 21a0b5d0b1..8582fb6833 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getDestinationAddress.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getDestinationAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getDestinationAddress-example) {#getDestinationAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getDestinationAddress' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getMasterTrackingData.md b/content/reference/services/SoftLayer_Account_Shipment/getMasterTrackingData.md index 52a7bfbbf1..d2c6b8683a 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getMasterTrackingData.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getMasterTrackingData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getMasterTrackingData-example) {#getMasterTrackingData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getMasterTrackingData' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getModifyEmployee.md b/content/reference/services/SoftLayer_Account_Shipment/getModifyEmployee.md index d4a3661701..441c6c2565 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getModifyEmployee.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getModifyEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getModifyEmployee-example) {#getModifyEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getModifyEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getModifyUser.md b/content/reference/services/SoftLayer_Account_Shipment/getModifyUser.md index 8ed3f09ae5..854ea35117 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getModifyUser.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getModifyUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getModifyUser-example) {#getModifyUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getModifyUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getObject.md b/content/reference/services/SoftLayer_Account_Shipment/getObject.md index b1c813fb60..5b7984f9ec 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getOriginationAddress.md b/content/reference/services/SoftLayer_Account_Shipment/getOriginationAddress.md index c5b0bb0d08..f9cdfef79f 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getOriginationAddress.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getOriginationAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getOriginationAddress-example) {#getOriginationAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getOriginationAddress' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getShipmentItems.md b/content/reference/services/SoftLayer_Account_Shipment/getShipmentItems.md index 8c24fb8ecd..f2de70b43a 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getShipmentItems.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getShipmentItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getShipmentItems-example) {#getShipmentItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getShipmentItems' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getStatus.md b/content/reference/services/SoftLayer_Account_Shipment/getStatus.md index 598141bc8a..0bccb71ed9 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getStatus.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getTrackingData.md b/content/reference/services/SoftLayer_Account_Shipment/getTrackingData.md index cd6544d705..06c1a8cdb1 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getTrackingData.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getTrackingData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getTrackingData-example) {#getTrackingData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getTrackingData' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getType.md b/content/reference/services/SoftLayer_Account_Shipment/getType.md index 8fc3455ee3..dffb76732a 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getType.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment/getViaAddress.md b/content/reference/services/SoftLayer_Account_Shipment/getViaAddress.md index 6931ac1fe2..763f7bcee3 100644 --- a/content/reference/services/SoftLayer_Account_Shipment/getViaAddress.md +++ b/content/reference/services/SoftLayer_Account_Shipment/getViaAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment" --- -### Curl Example +# [REST Example](#getViaAddress-example) {#getViaAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment/{SoftLayer_Account_ShipmentID}/getViaAddress' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Item/editObject.md b/content/reference/services/SoftLayer_Account_Shipment_Item/editObject.md index 767e2dcd93..b7ba564a03 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Item/editObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Item/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Item" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Item]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Item]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Item/{SoftLayer_Account_Shipment_ItemID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Item/getObject.md b/content/reference/services/SoftLayer_Account_Shipment_Item/getObject.md index 15b7437d9b..d4b053ea1d 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Item/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Item/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Item" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Item/{SoftLayer_Account_Shipment_ItemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Item/getShipment.md b/content/reference/services/SoftLayer_Account_Shipment_Item/getShipment.md index 9c180b3c8a..ad07e3844a 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Item/getShipment.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Item/getShipment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Item" --- -### Curl Example +# [REST Example](#getShipment-example) {#getShipment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Item/{SoftLayer_Account_Shipment_ItemID}/getShipment' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Item/getShipmentItemType.md b/content/reference/services/SoftLayer_Account_Shipment_Item/getShipmentItemType.md index a726521d88..3b9d23fef1 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Item/getShipmentItemType.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Item/getShipmentItemType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Item" --- -### Curl Example +# [REST Example](#getShipmentItemType-example) {#getShipmentItemType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Item/{SoftLayer_Account_Shipment_ItemID}/getShipmentItemType' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Item_Type/getObject.md b/content/reference/services/SoftLayer_Account_Shipment_Item_Type/getObject.md index d682607ba4..5d9df014d0 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Item_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Item_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Item_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Item_Type/{SoftLayer_Account_Shipment_Item_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Resource_Type/getObject.md b/content/reference/services/SoftLayer_Account_Shipment_Resource_Type/getObject.md index 6a3d58cc27..c79de73d25 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Resource_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Resource_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Resource_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Resource_Type/{SoftLayer_Account_Shipment_Resource_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Status/getObject.md b/content/reference/services/SoftLayer_Account_Shipment_Status/getObject.md index b14c9793b0..7caec227eb 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Status/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Status/{SoftLayer_Account_Shipment_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObject.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObject.md index 030505024a..0fefd29ddf 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Tracking_Data]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Tracking_Data]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/createObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObjects.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObjects.md index 32f55d6150..fb884abce8 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObjects.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Tracking_Data]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Tracking_Data]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/deleteObject.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/deleteObject.md index 8be4562303..e2e7e98d4c 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/deleteObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/editObject.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/editObject.md index e9f18644b4..13c898e747 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/editObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Tracking_Data]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account_Shipment_Tracking_Data]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateEmployee.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateEmployee.md index 4f9d3f0f0c..435f64296d 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateEmployee.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#getCreateEmployee-example) {#getCreateEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/getCreateEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateUser.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateUser.md index c71a43a74b..64e76815ba 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateUser.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getCreateUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#getCreateUser-example) {#getCreateUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/getCreateUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyEmployee.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyEmployee.md index 35588857b3..6e24380f4e 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyEmployee.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#getModifyEmployee-example) {#getModifyEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/getModifyEmployee' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyUser.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyUser.md index d68bb28521..7b10139614 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyUser.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getModifyUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#getModifyUser-example) {#getModifyUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/getModifyUser' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getObject.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getObject.md index 54a449eaf6..3b963ee082 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getShipment.md b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getShipment.md index 74a13b12c0..fed927cc9a 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getShipment.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Tracking_Data/getShipment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Tracking_Data" --- -### Curl Example +# [REST Example](#getShipment-example) {#getShipment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Tracking_Data/{SoftLayer_Account_Shipment_Tracking_DataID}/getShipment' ``` diff --git a/content/reference/services/SoftLayer_Account_Shipment_Type/getObject.md b/content/reference/services/SoftLayer_Account_Shipment_Type/getObject.md index 1d173250b0..34321931c7 100644 --- a/content/reference/services/SoftLayer_Account_Shipment_Type/getObject.md +++ b/content/reference/services/SoftLayer_Account_Shipment_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Account_Shipment_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Account_Shipment_Type/{SoftLayer_Account_Shipment_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Network_Status/getNetworkStatus.md b/content/reference/services/SoftLayer_Auxiliary_Network_Status/getNetworkStatus.md index e4824f6508..58384b305d 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Network_Status/getNetworkStatus.md +++ b/content/reference/services/SoftLayer_Auxiliary_Network_Status/getNetworkStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Network_Status" --- -### Curl Example +# [REST Example](#getNetworkStatus-example) {#getNetworkStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Network_Status/getNetworkStatus' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getAllObjects.md b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getAllObjects.md index 29dfabaf9d..e2c75fd99a 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getAllObjects.md +++ b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Notification_Emergency" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Notification_Emergency/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getCurrentNotifications.md b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getCurrentNotifications.md index 5801519ad0..ffecca8331 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getCurrentNotifications.md +++ b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getCurrentNotifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Notification_Emergency" --- -### Curl Example +# [REST Example](#getCurrentNotifications-example) {#getCurrentNotifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Notification_Emergency/getCurrentNotifications' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getObject.md b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getObject.md index 20d7a055a4..d267999446 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getObject.md +++ b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Notification_Emergency" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Notification_Emergency/{SoftLayer_Auxiliary_Notification_EmergencyID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getSignature.md b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getSignature.md index 1162ecfcd7..e58a1d38ec 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getSignature.md +++ b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getSignature.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Notification_Emergency" --- -### Curl Example +# [REST Example](#getSignature-example) {#getSignature-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Notification_Emergency/{SoftLayer_Auxiliary_Notification_EmergencyID}/getSignature' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getStatus.md b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getStatus.md index 8cdc67de75..ef95e518ac 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getStatus.md +++ b/content/reference/services/SoftLayer_Auxiliary_Notification_Emergency/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Notification_Emergency" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Notification_Emergency/{SoftLayer_Auxiliary_Notification_EmergencyID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getCourier.md b/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getCourier.md index fdac65c266..b9640aa87b 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getCourier.md +++ b/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getCourier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Shipping_Courier_Type" --- -### Curl Example +# [REST Example](#getCourier-example) {#getCourier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Shipping_Courier_Type/{SoftLayer_Auxiliary_Shipping_Courier_TypeID}/getCourier' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getObject.md b/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getObject.md index 066dfd0a36..cb7cca813d 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getObject.md +++ b/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Shipping_Courier_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Shipping_Courier_Type/{SoftLayer_Auxiliary_Shipping_Courier_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getTypeByKeyName.md b/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getTypeByKeyName.md index f5209f69c8..35a08f1f6f 100644 --- a/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getTypeByKeyName.md +++ b/content/reference/services/SoftLayer_Auxiliary_Shipping_Courier_Type/getTypeByKeyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Auxiliary_Shipping_Courier_Type" --- -### Curl Example +# [REST Example](#getTypeByKeyName-example) {#getTypeByKeyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Auxiliary_Shipping_Courier_Type/getTypeByKeyName' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency/getAllObjects.md b/content/reference/services/SoftLayer_Billing_Currency/getAllObjects.md index b538f62e4f..4d99e5808d 100644 --- a/content/reference/services/SoftLayer_Billing_Currency/getAllObjects.md +++ b/content/reference/services/SoftLayer_Billing_Currency/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency/getCurrentExchangeRate.md b/content/reference/services/SoftLayer_Billing_Currency/getCurrentExchangeRate.md index bdf66b4e51..395a48b696 100644 --- a/content/reference/services/SoftLayer_Billing_Currency/getCurrentExchangeRate.md +++ b/content/reference/services/SoftLayer_Billing_Currency/getCurrentExchangeRate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency" --- -### Curl Example +# [REST Example](#getCurrentExchangeRate-example) {#getCurrentExchangeRate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency/{SoftLayer_Billing_CurrencyID}/getCurrentExchangeRate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency/getObject.md b/content/reference/services/SoftLayer_Billing_Currency/getObject.md index 05b28dc244..311d08fbbd 100644 --- a/content/reference/services/SoftLayer_Billing_Currency/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Currency/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency/{SoftLayer_Billing_CurrencyID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency/getPrice.md b/content/reference/services/SoftLayer_Billing_Currency/getPrice.md index 61ace75c4d..f45ebcdf6b 100644 --- a/content/reference/services/SoftLayer_Billing_Currency/getPrice.md +++ b/content/reference/services/SoftLayer_Billing_Currency/getPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency" --- -### Curl Example +# [REST Example](#getPrice-example) {#getPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [float, SoftLayer_Container_Billing_Currency_Format]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [float, SoftLayer_Container_Billing_Currency_Format]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency/{SoftLayer_Billing_CurrencyID}/getPrice' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_Country/getCountriesWithListOfEligibleCurrencies.md b/content/reference/services/SoftLayer_Billing_Currency_Country/getCountriesWithListOfEligibleCurrencies.md index d82c546cf2..85ab33ad86 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_Country/getCountriesWithListOfEligibleCurrencies.md +++ b/content/reference/services/SoftLayer_Billing_Currency_Country/getCountriesWithListOfEligibleCurrencies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_Country" --- -### Curl Example +# [REST Example](#getCountriesWithListOfEligibleCurrencies-example) {#getCountriesWithListOfEligibleCurrencies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_Country/getCountriesWithListOfEligibleCurrencies' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_Country/getObject.md b/content/reference/services/SoftLayer_Billing_Currency_Country/getObject.md index 64080e3dfb..d1c00ef891 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_Country/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Currency_Country/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_Country" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_Country/{SoftLayer_Billing_Currency_CountryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getAllCurrencyExchangeRates.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getAllCurrencyExchangeRates.md index a9402b0799..cd47d2a251 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getAllCurrencyExchangeRates.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getAllCurrencyExchangeRates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getAllCurrencyExchangeRates-example) {#getAllCurrencyExchangeRates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/{SoftLayer_Billing_Currency_ExchangeRateID}/getAllCurrencyExchangeRates' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getCurrencies.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getCurrencies.md index 306da3e59b..02118a1c54 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getCurrencies.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getCurrencies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getCurrencies-example) {#getCurrencies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/getCurrencies' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getExchangeRate.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getExchangeRate.md index 5744f24a87..b7035dce95 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getExchangeRate.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getExchangeRate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getExchangeRate-example) {#getExchangeRate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/getExchangeRate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getFundingCurrency.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getFundingCurrency.md index 8e3f7c5b53..c5f7f98cef 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getFundingCurrency.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getFundingCurrency.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getFundingCurrency-example) {#getFundingCurrency-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/{SoftLayer_Billing_Currency_ExchangeRateID}/getFundingCurrency' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getLocalCurrency.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getLocalCurrency.md index 8412421d7a..4e0da22029 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getLocalCurrency.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getLocalCurrency.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getLocalCurrency-example) {#getLocalCurrency-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/{SoftLayer_Billing_Currency_ExchangeRateID}/getLocalCurrency' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getObject.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getObject.md index bce45d4b58..42faf1d877 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/{SoftLayer_Billing_Currency_ExchangeRateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getPrice.md b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getPrice.md index 8f5a4fc668..bf50d30f7f 100644 --- a/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getPrice.md +++ b/content/reference/services/SoftLayer_Billing_Currency_ExchangeRate/getPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Currency_ExchangeRate" --- -### Curl Example +# [REST Example](#getPrice-example) {#getPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [float, SoftLayer_Container_Billing_Currency_Format]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [float, SoftLayer_Container_Billing_Currency_Format]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Currency_ExchangeRate/{SoftLayer_Billing_Currency_ExchangeRateID}/getPrice' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getAccount.md b/content/reference/services/SoftLayer_Billing_Info/getAccount.md index 004945bce1..3b8f44af94 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Info/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getAchInformation.md b/content/reference/services/SoftLayer_Billing_Info/getAchInformation.md index 63a8a1a2aa..7c2ed25ad2 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getAchInformation.md +++ b/content/reference/services/SoftLayer_Billing_Info/getAchInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getAchInformation-example) {#getAchInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getAchInformation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getCurrency.md b/content/reference/services/SoftLayer_Billing_Info/getCurrency.md index 306b0509fe..e5b3bbe1a2 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getCurrency.md +++ b/content/reference/services/SoftLayer_Billing_Info/getCurrency.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getCurrency-example) {#getCurrency-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getCurrency' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getCurrentBillingCycle.md b/content/reference/services/SoftLayer_Billing_Info/getCurrentBillingCycle.md index 8de682cc74..39d52bde71 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getCurrentBillingCycle.md +++ b/content/reference/services/SoftLayer_Billing_Info/getCurrentBillingCycle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getCurrentBillingCycle-example) {#getCurrentBillingCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getCurrentBillingCycle' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getLastBillDate.md b/content/reference/services/SoftLayer_Billing_Info/getLastBillDate.md index f0489156dd..9dffb1dd06 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getLastBillDate.md +++ b/content/reference/services/SoftLayer_Billing_Info/getLastBillDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getLastBillDate-example) {#getLastBillDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getLastBillDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getNextBillDate.md b/content/reference/services/SoftLayer_Billing_Info/getNextBillDate.md index 35b35b803b..c7b7188d2b 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getNextBillDate.md +++ b/content/reference/services/SoftLayer_Billing_Info/getNextBillDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getNextBillDate-example) {#getNextBillDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getNextBillDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Info/getObject.md b/content/reference/services/SoftLayer_Billing_Info/getObject.md index c2d008ef53..27c2900ee1 100644 --- a/content/reference/services/SoftLayer_Billing_Info/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Info/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Info" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Info/{SoftLayer_Billing_InfoID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/emailInvoices.md b/content/reference/services/SoftLayer_Billing_Invoice/emailInvoices.md index b2d1aeb1f4..87c6f55a75 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/emailInvoices.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/emailInvoices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#emailInvoices-example) {#emailInvoices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Billing_Invoice_Email]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Billing_Invoice_Email]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/emailInvoices' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getAccount.md b/content/reference/services/SoftLayer_Billing_Invoice/getAccount.md index 835269313f..382af3e51f 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getAmount.md index 7e9bf62870..48ef081985 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getAmount-example) {#getAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getBrandAtInvoiceCreation.md b/content/reference/services/SoftLayer_Billing_Invoice/getBrandAtInvoiceCreation.md index 20c1044803..6e935e812d 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getBrandAtInvoiceCreation.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getBrandAtInvoiceCreation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getBrandAtInvoiceCreation-example) {#getBrandAtInvoiceCreation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getBrandAtInvoiceCreation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getChargebackType.md b/content/reference/services/SoftLayer_Billing_Invoice/getChargebackType.md index 625697868c..4dad412491 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getChargebackType.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getChargebackType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getChargebackType-example) {#getChargebackType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getChargebackType' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getDetailedPdfGeneratedFlag.md b/content/reference/services/SoftLayer_Billing_Invoice/getDetailedPdfGeneratedFlag.md index 1185f90ddc..dc35e16a65 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getDetailedPdfGeneratedFlag.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getDetailedPdfGeneratedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getDetailedPdfGeneratedFlag-example) {#getDetailedPdfGeneratedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getDetailedPdfGeneratedFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getExcel.md b/content/reference/services/SoftLayer_Billing_Invoice/getExcel.md index 0eb8a2a4ca..9a6bf5b97e 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getExcel.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getExcel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getExcel-example) {#getExcel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getExcel' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTopLevelItems.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTopLevelItems.md index 003a8e968f..9970cff928 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTopLevelItems.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTopLevelItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTopLevelItems-example) {#getInvoiceTopLevelItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTopLevelItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalAmount.md index efd6fcb27b..17ead77738 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTotalAmount-example) {#getInvoiceTotalAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTotalAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeAmount.md index 975a3a255c..d592a26339 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTotalOneTimeAmount-example) {#getInvoiceTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeTaxAmount.md index 02c1e0421e..30f655bc9d 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTotalOneTimeTaxAmount-example) {#getInvoiceTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalPreTaxAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalPreTaxAmount.md index 0954ddd383..55abfa29bc 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalPreTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalPreTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTotalPreTaxAmount-example) {#getInvoiceTotalPreTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTotalPreTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringAmount.md index 1a19bcf170..3f30bb8db7 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTotalRecurringAmount-example) {#getInvoiceTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringTaxAmount.md index fe74096e80..a9541ef9d1 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getInvoiceTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getInvoiceTotalRecurringTaxAmount-example) {#getInvoiceTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getInvoiceTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getItems.md b/content/reference/services/SoftLayer_Billing_Invoice/getItems.md index 53a522c49c..d84ec014e7 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getItems.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getItems-example) {#getItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getLocalCurrencyExchangeRate.md b/content/reference/services/SoftLayer_Billing_Invoice/getLocalCurrencyExchangeRate.md index fde41f8b69..df09fe1fb0 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getLocalCurrencyExchangeRate.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getLocalCurrencyExchangeRate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getLocalCurrencyExchangeRate-example) {#getLocalCurrencyExchangeRate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getLocalCurrencyExchangeRate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getObject.md b/content/reference/services/SoftLayer_Billing_Invoice/getObject.md index 96033dce69..dd2256c185 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPayment.md b/content/reference/services/SoftLayer_Billing_Invoice/getPayment.md index 7ff9c047e9..d655576dea 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPayment.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPayment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPayment-example) {#getPayment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPayment' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPayments.md b/content/reference/services/SoftLayer_Billing_Invoice/getPayments.md index 1e92ec1fb2..85d6f10369 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPayments.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPayments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPayments-example) {#getPayments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPayments' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPdf.md b/content/reference/services/SoftLayer_Billing_Invoice/getPdf.md index ad540a8912..372efd2acf 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPdf.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPdf-example) {#getPdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPdf' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailed.md b/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailed.md index 9fe7a46d21..76800125f6 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailed.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPdfDetailed-example) {#getPdfDetailed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPdfDetailed' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailedFilename.md b/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailedFilename.md index 6fae1f5519..a5ecc0ec79 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailedFilename.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPdfDetailedFilename.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPdfDetailedFilename-example) {#getPdfDetailedFilename-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPdfDetailedFilename' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPdfFileSize.md b/content/reference/services/SoftLayer_Billing_Invoice/getPdfFileSize.md index ccaa7ec17d..2dd2317e14 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPdfFileSize.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPdfFileSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPdfFileSize-example) {#getPdfFileSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPdfFileSize' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPdfFilename.md b/content/reference/services/SoftLayer_Billing_Invoice/getPdfFilename.md index 48c5bf7b50..a88d846b98 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPdfFilename.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPdfFilename.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPdfFilename-example) {#getPdfFilename-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPdfFilename' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryExcel.md b/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryExcel.md index 8c260c9f69..3d9fa2615d 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryExcel.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryExcel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPreliminaryExcel-example) {#getPreliminaryExcel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPreliminaryExcel' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdf.md b/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdf.md index 7427cfbbd0..279cbffc8c 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdf.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPreliminaryPdf-example) {#getPreliminaryPdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPreliminaryPdf' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdfDetailed.md b/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdfDetailed.md index 0e7b262587..e2248be4c7 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdfDetailed.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getPreliminaryPdfDetailed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getPreliminaryPdfDetailed-example) {#getPreliminaryPdfDetailed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getPreliminaryPdfDetailed' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getSellerRegistration.md b/content/reference/services/SoftLayer_Billing_Invoice/getSellerRegistration.md index 4f5e1f216d..c38067b63b 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getSellerRegistration.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getSellerRegistration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getSellerRegistration-example) {#getSellerRegistration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getSellerRegistration' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfo.md b/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfo.md index f994f01d7e..5d8c8bb8f4 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfo.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getTaxInfo-example) {#getTaxInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getTaxInfo' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfoHistory.md b/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfoHistory.md index 64a93023bf..2dbb15436d 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfoHistory.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getTaxInfoHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getTaxInfoHistory-example) {#getTaxInfoHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getTaxInfoHistory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getTaxMessage.md b/content/reference/services/SoftLayer_Billing_Invoice/getTaxMessage.md index d013366367..ddb0fb8c26 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getTaxMessage.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getTaxMessage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getTaxMessage-example) {#getTaxMessage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getTaxMessage' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getTaxType.md b/content/reference/services/SoftLayer_Billing_Invoice/getTaxType.md index 9eac9463a9..db955bbc01 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getTaxType.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getTaxType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getTaxType-example) {#getTaxType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getTaxType' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getXlsFilename.md b/content/reference/services/SoftLayer_Billing_Invoice/getXlsFilename.md index 9ec127d85e..2b55ea30d3 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getXlsFilename.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getXlsFilename.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getXlsFilename-example) {#getXlsFilename-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getXlsFilename' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice/getZeroFeeItemCounts.md b/content/reference/services/SoftLayer_Billing_Invoice/getZeroFeeItemCounts.md index cfc6ef1a44..8e356b018d 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice/getZeroFeeItemCounts.md +++ b/content/reference/services/SoftLayer_Billing_Invoice/getZeroFeeItemCounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice" --- -### Curl Example +# [REST Example](#getZeroFeeItemCounts-example) {#getZeroFeeItemCounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice/{SoftLayer_Billing_InvoiceID}/getZeroFeeItemCounts' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedChildren.md index 1b63564600..2bd0a53175 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getAssociatedChildren-example) {#getAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedInvoiceItem.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedInvoiceItem.md index d01d32d313..68030cd984 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedInvoiceItem.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getAssociatedInvoiceItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getAssociatedInvoiceItem-example) {#getAssociatedInvoiceItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getAssociatedInvoiceItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getBillingItem.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getBillingItem.md index 767f3fd7c2..20a33f2eb9 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getCategory.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getCategory.md index 2c2a0c7e58..e2a4cecd83 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getCategory.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getCategory-example) {#getCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getChildren.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getChildren.md index 9923d860a8..5cb5ce17e3 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getChildren.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getDPart.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getDPart.md index 7fcb447401..66787d2a0d 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getDPart.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getDPart.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getDPart-example) {#getDPart-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getDPart' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getFilteredAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getFilteredAssociatedChildren.md index f62012ec90..33324c7054 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getFilteredAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getFilteredAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getFilteredAssociatedChildren-example) {#getFilteredAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getFilteredAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getHourlyFlag.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getHourlyFlag.md index 44ca80699c..cc385f6dfb 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getHourlyFlag.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getHourlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getHourlyFlag-example) {#getHourlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getHourlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getInvoice.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getInvoice.md index cec571a896..1ede8bfb13 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getInvoice.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getInvoice-example) {#getInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getInvoice' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getLocation.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getLocation.md index 463643e9dc..0ac37eb18b 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getLocation.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getNonZeroAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getNonZeroAssociatedChildren.md index 8ffad1dbc4..a15669ffe8 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getNonZeroAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getNonZeroAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getNonZeroAssociatedChildren-example) {#getNonZeroAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getNonZeroAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getObject.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getObject.md index 82e3c71842..82b67093d8 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getParent.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getParent.md index 268e2f117f..e896bb87c1 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getParent.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getProduct.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getProduct.md index 5583614d81..7a58fa636b 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getProduct.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getProduct.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getProduct-example) {#getProduct-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getProduct' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTopLevelProductGroupName.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTopLevelProductGroupName.md index 3e641fa2f2..bfe4450a9e 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTopLevelProductGroupName.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTopLevelProductGroupName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getTopLevelProductGroupName-example) {#getTopLevelProductGroupName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getTopLevelProductGroupName' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeAmount.md index ff6be88c2a..a2d7c22850 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getTotalOneTimeAmount-example) {#getTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeTaxAmount.md index 65b5748e7e..cd630bccd8 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getTotalOneTimeTaxAmount-example) {#getTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringAmount.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringAmount.md index b7f73230fc..0f99043c52 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getTotalRecurringAmount-example) {#getTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringTaxAmount.md index b9a71b85ae..b98c9aac25 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getTotalRecurringTaxAmount-example) {#getTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Item/getUsageChargeFlag.md b/content/reference/services/SoftLayer_Billing_Invoice_Item/getUsageChargeFlag.md index d4a54281ce..16357ed6c3 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Item/getUsageChargeFlag.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Item/getUsageChargeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Item" --- -### Curl Example +# [REST Example](#getUsageChargeFlag-example) {#getUsageChargeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Item/{SoftLayer_Billing_Invoice_ItemID}/getUsageChargeFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Next/getExcel.md b/content/reference/services/SoftLayer_Billing_Invoice_Next/getExcel.md index 23360aa7ca..672693f74c 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Next/getExcel.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Next/getExcel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Next" --- -### Curl Example +# [REST Example](#getExcel-example) {#getExcel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Next/{SoftLayer_Billing_Invoice_NextID}/getExcel' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdf.md b/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdf.md index 1949a8fefc..89363e4bd2 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdf.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Next" --- -### Curl Example +# [REST Example](#getPdf-example) {#getPdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Next/{SoftLayer_Billing_Invoice_NextID}/getPdf' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdfDetailed.md b/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdfDetailed.md index c23944ab3c..b8e9832313 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdfDetailed.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Next/getPdfDetailed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Next" --- -### Curl Example +# [REST Example](#getPdfDetailed-example) {#getPdfDetailed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Next/{SoftLayer_Billing_Invoice_NextID}/getPdfDetailed' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getAllObjects.md b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getAllObjects.md index dd1df19250..ac6c50a2ed 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getAllObjects.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Tax_Status" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Tax_Status/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getObject.md b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getObject.md index eb73ed96e8..ead6c4c4d1 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Tax_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Tax_Status/{SoftLayer_Billing_Invoice_Tax_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getAllObjects.md b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getAllObjects.md index 135722dfb6..b0845f0a74 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Tax_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Tax_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getObject.md b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getObject.md index 4ca64d4dc1..bfc875a02c 100644 --- a/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Invoice_Tax_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Invoice_Tax_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Invoice_Tax_Type/{SoftLayer_Billing_Invoice_Tax_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/cancelItem.md b/content/reference/services/SoftLayer_Billing_Item/cancelItem.md index 871354ce8b..8a51e3f6ac 100644 --- a/content/reference/services/SoftLayer_Billing_Item/cancelItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/cancelItem.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#cancelItem-example) {#cancelItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean, boolean, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean, boolean, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/cancelItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/cancelService.md b/content/reference/services/SoftLayer_Billing_Item/cancelService.md index b72f7461d5..5cd574eabd 100644 --- a/content/reference/services/SoftLayer_Billing_Item/cancelService.md +++ b/content/reference/services/SoftLayer_Billing_Item/cancelService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#cancelService-example) {#cancelService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/cancelService' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/cancelServiceOnAnniversaryDate.md b/content/reference/services/SoftLayer_Billing_Item/cancelServiceOnAnniversaryDate.md index d0f0e9e8e3..9f54b4f4bf 100644 --- a/content/reference/services/SoftLayer_Billing_Item/cancelServiceOnAnniversaryDate.md +++ b/content/reference/services/SoftLayer_Billing_Item/cancelServiceOnAnniversaryDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#cancelServiceOnAnniversaryDate-example) {#cancelServiceOnAnniversaryDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/cancelServiceOnAnniversaryDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getAccount.md b/content/reference/services/SoftLayer_Billing_Item/getAccount.md index 0c55383fcd..fb6a2a7d05 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Item/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveAgreement.md b/content/reference/services/SoftLayer_Billing_Item/getActiveAgreement.md index b72671727f..84c39fb1ad 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveAgreement.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveAgreement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveAgreement-example) {#getActiveAgreement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveAgreement' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveAgreementFlag.md b/content/reference/services/SoftLayer_Billing_Item/getActiveAgreementFlag.md index ddab63fc17..1e03a9e803 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveAgreementFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveAgreementFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveAgreementFlag-example) {#getActiveAgreementFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveAgreementFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedChildren.md index fb3b8d9e7e..c39805713f 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveAssociatedChildren-example) {#getActiveAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedGuestDiskBillingItems.md b/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedGuestDiskBillingItems.md index 7ebde4b85a..0585e9574c 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedGuestDiskBillingItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveAssociatedGuestDiskBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveAssociatedGuestDiskBillingItems-example) {#getActiveAssociatedGuestDiskBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveAssociatedGuestDiskBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveBundledItems.md b/content/reference/services/SoftLayer_Billing_Item/getActiveBundledItems.md index ec32864129..a6dcfe8c59 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveBundledItems-example) {#getActiveBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveCancellationItem.md b/content/reference/services/SoftLayer_Billing_Item/getActiveCancellationItem.md index 36bc53590c..8312a8876c 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveCancellationItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveCancellationItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveCancellationItem-example) {#getActiveCancellationItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveCancellationItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveChildren.md b/content/reference/services/SoftLayer_Billing_Item/getActiveChildren.md index 052f87e901..b06e704427 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveChildren-example) {#getActiveChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveFlag.md b/content/reference/services/SoftLayer_Billing_Item/getActiveFlag.md index f0ac48d832..247861af37 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveFlag-example) {#getActiveFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolAssociatedGuestDiskBillingItems.md b/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolAssociatedGuestDiskBillingItems.md index 1cc6b3b8f5..188c066f7b 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolAssociatedGuestDiskBillingItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolAssociatedGuestDiskBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveSparePoolAssociatedGuestDiskBillingItems-example) {#getActiveSparePoolAssociatedGuestDiskBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveSparePoolAssociatedGuestDiskBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolBundledItems.md b/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolBundledItems.md index c1ecff7eec..80734eade8 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getActiveSparePoolBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getActiveSparePoolBundledItems-example) {#getActiveSparePoolBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getActiveSparePoolBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItem.md b/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItem.md index 9241f1994a..eed6ebbede 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getAssociatedBillingItem-example) {#getAssociatedBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getAssociatedBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItemHistory.md b/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItemHistory.md index e7dec33777..11594898fe 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItemHistory.md +++ b/content/reference/services/SoftLayer_Billing_Item/getAssociatedBillingItemHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getAssociatedBillingItemHistory-example) {#getAssociatedBillingItemHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getAssociatedBillingItemHistory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Item/getAssociatedChildren.md index 05e55ccb55..cef0c1de45 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getAssociatedChildren-example) {#getAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getAssociatedParent.md b/content/reference/services/SoftLayer_Billing_Item/getAssociatedParent.md index ae9986b77d..ff8f037f59 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getAssociatedParent.md +++ b/content/reference/services/SoftLayer_Billing_Item/getAssociatedParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getAssociatedParent-example) {#getAssociatedParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getAssociatedParent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getAvailableMatchingVlans.md b/content/reference/services/SoftLayer_Billing_Item/getAvailableMatchingVlans.md index cc5da8955f..4c677d9728 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getAvailableMatchingVlans.md +++ b/content/reference/services/SoftLayer_Billing_Item/getAvailableMatchingVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getAvailableMatchingVlans-example) {#getAvailableMatchingVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getAvailableMatchingVlans' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Billing_Item/getBandwidthAllocation.md index 95808cad4d..d9a0e0916d 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Billing_Item/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getBillableChildren.md b/content/reference/services/SoftLayer_Billing_Item/getBillableChildren.md index ec1487cb06..191d0410a2 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getBillableChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getBillableChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getBillableChildren-example) {#getBillableChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getBillableChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getBundledItems.md b/content/reference/services/SoftLayer_Billing_Item/getBundledItems.md index 011d1f1243..649c0cffd6 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getBundledItems-example) {#getBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getCanceledChildren.md b/content/reference/services/SoftLayer_Billing_Item/getCanceledChildren.md index 20f77d5787..3d58cf3dc1 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getCanceledChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getCanceledChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getCanceledChildren-example) {#getCanceledChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getCanceledChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getCancellationReason.md b/content/reference/services/SoftLayer_Billing_Item/getCancellationReason.md index 5bc31e54aa..d4530211cb 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getCancellationReason.md +++ b/content/reference/services/SoftLayer_Billing_Item/getCancellationReason.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getCancellationReason-example) {#getCancellationReason-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getCancellationReason' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getCancellationRequests.md b/content/reference/services/SoftLayer_Billing_Item/getCancellationRequests.md index 3713906736..b349ee0168 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getCancellationRequests.md +++ b/content/reference/services/SoftLayer_Billing_Item/getCancellationRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getCancellationRequests-example) {#getCancellationRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getCancellationRequests' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getCategory.md b/content/reference/services/SoftLayer_Billing_Item/getCategory.md index 1465974139..ca07d72bd2 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getCategory.md +++ b/content/reference/services/SoftLayer_Billing_Item/getCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getCategory-example) {#getCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getChildren.md b/content/reference/services/SoftLayer_Billing_Item/getChildren.md index 1336fc09f2..1c736ea034 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getChildrenWithActiveAgreement.md b/content/reference/services/SoftLayer_Billing_Item/getChildrenWithActiveAgreement.md index e2abc314d7..f63c1e6694 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getChildrenWithActiveAgreement.md +++ b/content/reference/services/SoftLayer_Billing_Item/getChildrenWithActiveAgreement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getChildrenWithActiveAgreement-example) {#getChildrenWithActiveAgreement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getChildrenWithActiveAgreement' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getDowngradeItems.md b/content/reference/services/SoftLayer_Billing_Item/getDowngradeItems.md index cc1dde3a4c..63545241be 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getDowngradeItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getDowngradeItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getDowngradeItems-example) {#getDowngradeItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getDowngradeItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getFilteredNextInvoiceChildren.md b/content/reference/services/SoftLayer_Billing_Item/getFilteredNextInvoiceChildren.md index 1dfa316d39..cbd55ddcea 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getFilteredNextInvoiceChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getFilteredNextInvoiceChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getFilteredNextInvoiceChildren-example) {#getFilteredNextInvoiceChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getFilteredNextInvoiceChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getHourlyFlag.md b/content/reference/services/SoftLayer_Billing_Item/getHourlyFlag.md index ea81845716..0e95f0ff6c 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getHourlyFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item/getHourlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getHourlyFlag-example) {#getHourlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getHourlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getInvoiceItem.md b/content/reference/services/SoftLayer_Billing_Item/getInvoiceItem.md index 44ca724906..f0d399e8eb 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getInvoiceItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getInvoiceItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getInvoiceItem-example) {#getInvoiceItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getInvoiceItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getInvoiceItems.md b/content/reference/services/SoftLayer_Billing_Item/getInvoiceItems.md index 5849cec38f..1eba07b3f9 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getInvoiceItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getInvoiceItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getInvoiceItems-example) {#getInvoiceItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getInvoiceItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getItem.md b/content/reference/services/SoftLayer_Billing_Item/getItem.md index ef9c1ab44c..dcf90523be 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getLocation.md b/content/reference/services/SoftLayer_Billing_Item/getLocation.md index b5e64ee130..cd356314b3 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getLocation.md +++ b/content/reference/services/SoftLayer_Billing_Item/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceChildren.md b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceChildren.md index 723af129a5..64e05a7516 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getNextInvoiceChildren-example) {#getNextInvoiceChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getNextInvoiceChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeAmount.md index cb32ceb7ad..321a7651e4 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalOneTimeAmount-example) {#getNextInvoiceTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getNextInvoiceTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeTaxAmount.md index 0b41e47692..2b645c3bc1 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalOneTimeTaxAmount-example) {#getNextInvoiceTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getNextInvoiceTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringAmount.md b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringAmount.md index 0182b76ca3..d03f11651e 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringAmount-example) {#getNextInvoiceTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getNextInvoiceTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringTaxAmount.md index 20ccd35dc0..c9861d2f7b 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item/getNextInvoiceTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringTaxAmount-example) {#getNextInvoiceTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getNextInvoiceTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getNonZeroNextInvoiceChildren.md b/content/reference/services/SoftLayer_Billing_Item/getNonZeroNextInvoiceChildren.md index 60a7d8ceae..0376ee7f19 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getNonZeroNextInvoiceChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item/getNonZeroNextInvoiceChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getNonZeroNextInvoiceChildren-example) {#getNonZeroNextInvoiceChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getNonZeroNextInvoiceChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getObject.md b/content/reference/services/SoftLayer_Billing_Item/getObject.md index 2a2af90555..acd8a237a5 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Item/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getOrderItem.md b/content/reference/services/SoftLayer_Billing_Item/getOrderItem.md index 71f3732271..11b40ce814 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getOrderItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getOrderItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getOrderItem-example) {#getOrderItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getOrderItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getOriginalLocation.md b/content/reference/services/SoftLayer_Billing_Item/getOriginalLocation.md index 7ac6153cfc..b28e38d022 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getOriginalLocation.md +++ b/content/reference/services/SoftLayer_Billing_Item/getOriginalLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getOriginalLocation-example) {#getOriginalLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getOriginalLocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getPackage.md b/content/reference/services/SoftLayer_Billing_Item/getPackage.md index dcf8784de6..f7ba35c9a6 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getPackage.md +++ b/content/reference/services/SoftLayer_Billing_Item/getPackage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getPackage-example) {#getPackage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getPackage' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getParent.md b/content/reference/services/SoftLayer_Billing_Item/getParent.md index c80262a256..14e5d4e26f 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getParent.md +++ b/content/reference/services/SoftLayer_Billing_Item/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getParentVirtualGuestBillingItem.md b/content/reference/services/SoftLayer_Billing_Item/getParentVirtualGuestBillingItem.md index d1572e3a58..8511a1c533 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getParentVirtualGuestBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getParentVirtualGuestBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getParentVirtualGuestBillingItem-example) {#getParentVirtualGuestBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getParentVirtualGuestBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getPendingCancellationFlag.md b/content/reference/services/SoftLayer_Billing_Item/getPendingCancellationFlag.md index c0ce4af4d6..bbc68c0adf 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getPendingCancellationFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item/getPendingCancellationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getPendingCancellationFlag-example) {#getPendingCancellationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getPendingCancellationFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getPendingOrderItem.md b/content/reference/services/SoftLayer_Billing_Item/getPendingOrderItem.md index 783bde1b6e..6fad559fc3 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getPendingOrderItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getPendingOrderItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getPendingOrderItem-example) {#getPendingOrderItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getPendingOrderItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getProvisionTransaction.md b/content/reference/services/SoftLayer_Billing_Item/getProvisionTransaction.md index a669b88111..58c8132dab 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getProvisionTransaction.md +++ b/content/reference/services/SoftLayer_Billing_Item/getProvisionTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getProvisionTransaction-example) {#getProvisionTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getProvisionTransaction' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getServiceBillingItemsByCategory.md b/content/reference/services/SoftLayer_Billing_Item/getServiceBillingItemsByCategory.md index 4b27905250..ab4a5bda33 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getServiceBillingItemsByCategory.md +++ b/content/reference/services/SoftLayer_Billing_Item/getServiceBillingItemsByCategory.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getServiceBillingItemsByCategory-example) {#getServiceBillingItemsByCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/getServiceBillingItemsByCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getSoftwareDescription.md b/content/reference/services/SoftLayer_Billing_Item/getSoftwareDescription.md index 829ecd8cb2..c63ee147d4 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Billing_Item/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getUpgradeItem.md b/content/reference/services/SoftLayer_Billing_Item/getUpgradeItem.md index cb5437b819..f9fee2c4cf 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getUpgradeItem.md +++ b/content/reference/services/SoftLayer_Billing_Item/getUpgradeItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getUpgradeItem-example) {#getUpgradeItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getUpgradeItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/getUpgradeItems.md b/content/reference/services/SoftLayer_Billing_Item/getUpgradeItems.md index a08769e937..30a1129bf8 100644 --- a/content/reference/services/SoftLayer_Billing_Item/getUpgradeItems.md +++ b/content/reference/services/SoftLayer_Billing_Item/getUpgradeItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#getUpgradeItems-example) {#getUpgradeItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/getUpgradeItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/removeAssociationId.md b/content/reference/services/SoftLayer_Billing_Item/removeAssociationId.md index 0eae552c22..eca99180a1 100644 --- a/content/reference/services/SoftLayer_Billing_Item/removeAssociationId.md +++ b/content/reference/services/SoftLayer_Billing_Item/removeAssociationId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#removeAssociationId-example) {#removeAssociationId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/removeAssociationId' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/setAssociationId.md b/content/reference/services/SoftLayer_Billing_Item/setAssociationId.md index dd1d63c14e..7dd9cdb442 100644 --- a/content/reference/services/SoftLayer_Billing_Item/setAssociationId.md +++ b/content/reference/services/SoftLayer_Billing_Item/setAssociationId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#setAssociationId-example) {#setAssociationId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/setAssociationId' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item/voidCancelService.md b/content/reference/services/SoftLayer_Billing_Item/voidCancelService.md index 6323646f86..8971da8c18 100644 --- a/content/reference/services/SoftLayer_Billing_Item/voidCancelService.md +++ b/content/reference/services/SoftLayer_Billing_Item/voidCancelService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item" --- -### Curl Example +# [REST Example](#voidCancelService-example) {#voidCancelService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item/{SoftLayer_Billing_ItemID}/voidCancelService' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getAllCancellationReasons.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getAllCancellationReasons.md index 6a18659423..614b6ef45b 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getAllCancellationReasons.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getAllCancellationReasons.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason" --- -### Curl Example +# [REST Example](#getAllCancellationReasons-example) {#getAllCancellationReasons-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason/getAllCancellationReasons' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingCancellationReasonCategory.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingCancellationReasonCategory.md index 869ecb1c18..c47af26441 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingCancellationReasonCategory.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingCancellationReasonCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason" --- -### Curl Example +# [REST Example](#getBillingCancellationReasonCategory-example) {#getBillingCancellationReasonCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason/{SoftLayer_Billing_Item_Cancellation_ReasonID}/getBillingCancellationReasonCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingItems.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingItems.md index b09051c746..6b7b6dd62b 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason" --- -### Curl Example +# [REST Example](#getBillingItems-example) {#getBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason/{SoftLayer_Billing_Item_Cancellation_ReasonID}/getBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getObject.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getObject.md index e4aef6d59d..d9703b7fcd 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason/{SoftLayer_Billing_Item_Cancellation_ReasonID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getTranslatedReason.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getTranslatedReason.md index d33002065f..c16d1eb36d 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getTranslatedReason.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason/getTranslatedReason.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason" --- -### Curl Example +# [REST Example](#getTranslatedReason-example) {#getTranslatedReason-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason/{SoftLayer_Billing_Item_Cancellation_ReasonID}/getTranslatedReason' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getAllCancellationReasonCategories.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getAllCancellationReasonCategories.md index 28cbcf10c3..62953d86e9 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getAllCancellationReasonCategories.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getAllCancellationReasonCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason_Category" --- -### Curl Example +# [REST Example](#getAllCancellationReasonCategories-example) {#getAllCancellationReasonCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason_Category/getAllCancellationReasonCategories' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getBillingCancellationReasons.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getBillingCancellationReasons.md index 312a1111ba..854aeb66d5 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getBillingCancellationReasons.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getBillingCancellationReasons.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason_Category" --- -### Curl Example +# [REST Example](#getBillingCancellationReasons-example) {#getBillingCancellationReasons-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason_Category/{SoftLayer_Billing_Item_Cancellation_Reason_CategoryID}/getBillingCancellationReasons' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getObject.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getObject.md index 9040eb7a84..94b5c683a3 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Reason_Category/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Reason_Category" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Reason_Category/{SoftLayer_Billing_Item_Cancellation_Reason_CategoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/createObject.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/createObject.md index 39834e9088..420668b611 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/createObject.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Item_Cancellation_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Billing_Item_Cancellation_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/createObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAccount.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAccount.md index 3b1a796413..c858f035b9 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAllCancellationRequests.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAllCancellationRequests.md index aa28b112c7..fe91f5b31c 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAllCancellationRequests.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getAllCancellationRequests.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getAllCancellationRequests-example) {#getAllCancellationRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/getAllCancellationRequests' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getCancellationCutoffDate.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getCancellationCutoffDate.md index 97ff110479..c1659cfff2 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getCancellationCutoffDate.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getCancellationCutoffDate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getCancellationCutoffDate-example) {#getCancellationCutoffDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/getCancellationCutoffDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getItems.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getItems.md index 6f7d8147ca..eafee7838c 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getItems-example) {#getItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/getItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getObject.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getObject.md index 01817738ab..039e79fd8d 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getStatus.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getStatus.md index bbc98f8112..524b750c4b 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getStatus.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getTicket.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getTicket.md index 8636817c88..77d7240e0c 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getTicket.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getUser.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getUser.md index 4ab6e08815..090a4f189c 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getUser.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/removeCancellationItem.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/removeCancellationItem.md index cdff2a7357..4cbc465db9 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/removeCancellationItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/removeCancellationItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#removeCancellationItem-example) {#removeCancellationItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/removeCancellationItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/validateBillingItemForCancellation.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/validateBillingItemForCancellation.md index 91eeab5ed9..f1fd8dc71f 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/validateBillingItemForCancellation.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/validateBillingItemForCancellation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#validateBillingItemForCancellation-example) {#validateBillingItemForCancellation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/validateBillingItemForCancellation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/void.md b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/void.md index 9bffc97745..c795423e07 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/void.md +++ b/content/reference/services/SoftLayer_Billing_Item_Cancellation_Request/void.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Cancellation_Request" --- -### Curl Example +# [REST Example](#void-example) {#void-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/{SoftLayer_Billing_Item_Cancellation_RequestID}/void' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Chronicle/getAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Item_Chronicle/getAssociatedChildren.md index 603542af63..576b28702b 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Chronicle/getAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Chronicle/getAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Chronicle" --- -### Curl Example +# [REST Example](#getAssociatedChildren-example) {#getAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Chronicle/{SoftLayer_Billing_Item_ChronicleID}/getAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Chronicle/getObject.md b/content/reference/services/SoftLayer_Billing_Item_Chronicle/getObject.md index 7ecf7757af..1195d18d04 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Chronicle/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Item_Chronicle/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Chronicle" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Chronicle/{SoftLayer_Billing_Item_ChronicleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Chronicle/getProduct.md b/content/reference/services/SoftLayer_Billing_Item_Chronicle/getProduct.md index 08338697d0..9992e6f401 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Chronicle/getProduct.md +++ b/content/reference/services/SoftLayer_Billing_Item_Chronicle/getProduct.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Chronicle" --- -### Curl Example +# [REST Example](#getProduct-example) {#getProduct-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Chronicle/{SoftLayer_Billing_Item_ChronicleID}/getProduct' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelItem.md index 9e7bf7d421..fae329de7c 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelItem.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#cancelItem-example) {#cancelItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean, boolean, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean, boolean, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/cancelItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelService.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelService.md index 14210fe095..de5273653e 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelService.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#cancelService-example) {#cancelService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/cancelService' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelServiceOnAnniversaryDate.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelServiceOnAnniversaryDate.md index bb591ba9e9..b9bd67bef3 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelServiceOnAnniversaryDate.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/cancelServiceOnAnniversaryDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#cancelServiceOnAnniversaryDate-example) {#cancelServiceOnAnniversaryDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/cancelServiceOnAnniversaryDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAccount.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAccount.md index 808fe523c7..b9432c55da 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreement.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreement.md index 64df66311f..c748a43880 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreement.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveAgreement-example) {#getActiveAgreement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveAgreement' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreementFlag.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreementFlag.md index b69ba3450b..cc7334126e 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreementFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAgreementFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveAgreementFlag-example) {#getActiveAgreementFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveAgreementFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedChildren.md index 583ff599f4..bd9b29d38e 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveAssociatedChildren-example) {#getActiveAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedGuestDiskBillingItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedGuestDiskBillingItems.md index 1f8938bf66..0518d4d28d 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedGuestDiskBillingItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveAssociatedGuestDiskBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveAssociatedGuestDiskBillingItems-example) {#getActiveAssociatedGuestDiskBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveAssociatedGuestDiskBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveBundledItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveBundledItems.md index c1c06ad4b6..73e2c0a24b 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveBundledItems-example) {#getActiveBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveCancellationItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveCancellationItem.md index 286ae9468c..144de546bc 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveCancellationItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveCancellationItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveCancellationItem-example) {#getActiveCancellationItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveCancellationItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveChildren.md index 8843c8d4b8..37ede9acab 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveChildren-example) {#getActiveChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveFlag.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveFlag.md index 0bd67f7aa4..76e155fe56 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveFlag-example) {#getActiveFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolAssociatedGuestDiskBillingItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolAssociatedGuestDiskBillingItems.md index 55823aaf11..bec326cf29 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolAssociatedGuestDiskBillingItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolAssociatedGuestDiskBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveSparePoolAssociatedGuestDiskBillingItems-example) {#getActiveSparePoolAssociatedGuestDiskBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveSparePoolAssociatedGuestDiskBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolBundledItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolBundledItems.md index f9cbc0a34c..f29864b0ad 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getActiveSparePoolBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getActiveSparePoolBundledItems-example) {#getActiveSparePoolBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getActiveSparePoolBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItem.md index 051ca64053..710e839ef7 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAssociatedBillingItem-example) {#getAssociatedBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getAssociatedBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItemHistory.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItemHistory.md index 3bb2d95174..5442cf9f96 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItemHistory.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedBillingItemHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAssociatedBillingItemHistory-example) {#getAssociatedBillingItemHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getAssociatedBillingItemHistory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedChildren.md index 583171565a..fad6d4cc0a 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAssociatedChildren-example) {#getAssociatedChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getAssociatedChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedParent.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedParent.md index f16a7f0b9e..a65682548f 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedParent.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAssociatedParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAssociatedParent-example) {#getAssociatedParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getAssociatedParent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAvailableMatchingVlans.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAvailableMatchingVlans.md index 57e5e8ea05..57d94e1f7d 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAvailableMatchingVlans.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getAvailableMatchingVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAvailableMatchingVlans-example) {#getAvailableMatchingVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getAvailableMatchingVlans' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBandwidthAllocation.md index dd88e0f4df..b86f4c52fa 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBillableChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBillableChildren.md index b7012aec5d..fd1763eb3f 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBillableChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBillableChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getBillableChildren-example) {#getBillableChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getBillableChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBundledItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBundledItems.md index a0cd9d13ce..39426069e5 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getBundledItems-example) {#getBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCanceledChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCanceledChildren.md index 9f858095c8..37d7352fe0 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCanceledChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCanceledChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getCanceledChildren-example) {#getCanceledChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getCanceledChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationReason.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationReason.md index 7e28f476d4..445c93603e 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationReason.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationReason.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getCancellationReason-example) {#getCancellationReason-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getCancellationReason' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationRequests.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationRequests.md index 28aba8f3f5..6798c0b47c 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationRequests.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCancellationRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getCancellationRequests-example) {#getCancellationRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getCancellationRequests' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCategory.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCategory.md index 19074cd260..745cf444e6 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCategory.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getCategory-example) {#getCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildren.md index 117c8ad16c..e15953cda5 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildrenWithActiveAgreement.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildrenWithActiveAgreement.md index 4839cb9d77..0d396a3b86 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildrenWithActiveAgreement.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getChildrenWithActiveAgreement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getChildrenWithActiveAgreement-example) {#getChildrenWithActiveAgreement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getChildrenWithActiveAgreement' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getDowngradeItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getDowngradeItems.md index 8c33afa5e9..b922f75df0 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getDowngradeItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getDowngradeItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getDowngradeItems-example) {#getDowngradeItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getDowngradeItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getFilteredNextInvoiceChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getFilteredNextInvoiceChildren.md index 381db7a926..3e81a6ebc3 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getFilteredNextInvoiceChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getFilteredNextInvoiceChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getFilteredNextInvoiceChildren-example) {#getFilteredNextInvoiceChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getFilteredNextInvoiceChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getHourlyFlag.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getHourlyFlag.md index d14be87b08..e4060825ab 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getHourlyFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getHourlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getHourlyFlag-example) {#getHourlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getHourlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItem.md index 5a3e771036..16ea08eb94 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getInvoiceItem-example) {#getInvoiceItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getInvoiceItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItems.md index 6ab89138b1..bfa66b6a93 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getInvoiceItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getInvoiceItems-example) {#getInvoiceItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getInvoiceItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getItem.md index cbdf55d2a0..7923f09e53 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getLocation.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getLocation.md index 3b79b97873..f37d403231 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getLocation.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceChildren.md index b37fde18ce..beec651f94 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getNextInvoiceChildren-example) {#getNextInvoiceChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getNextInvoiceChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeAmount.md index cba34befee..477d3e32e5 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalOneTimeAmount-example) {#getNextInvoiceTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getNextInvoiceTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeTaxAmount.md index eb3c84d16f..c398f2a72e 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalOneTimeTaxAmount-example) {#getNextInvoiceTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getNextInvoiceTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringAmount.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringAmount.md index 38f64946bc..1ec8077d9f 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringAmount-example) {#getNextInvoiceTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getNextInvoiceTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringTaxAmount.md index b872a436a0..6500c10e11 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNextInvoiceTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getNextInvoiceTotalRecurringTaxAmount-example) {#getNextInvoiceTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getNextInvoiceTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNonZeroNextInvoiceChildren.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNonZeroNextInvoiceChildren.md index 069bba441e..ae83883edf 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNonZeroNextInvoiceChildren.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getNonZeroNextInvoiceChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getNonZeroNextInvoiceChildren-example) {#getNonZeroNextInvoiceChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getNonZeroNextInvoiceChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getObject.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getObject.md index 8d8d72ba1c..f8670fac35 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOrderItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOrderItem.md index 0d547771f7..726b55b4eb 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOrderItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOrderItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getOrderItem-example) {#getOrderItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getOrderItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOriginalLocation.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOriginalLocation.md index 4b44cb5726..6e40db0b39 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOriginalLocation.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getOriginalLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getOriginalLocation-example) {#getOriginalLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getOriginalLocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPackage.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPackage.md index 2e9329b100..01c1a15d5f 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPackage.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPackage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getPackage-example) {#getPackage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getPackage' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParent.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParent.md index 009ebae34c..e19d3221d6 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParent.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParentVirtualGuestBillingItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParentVirtualGuestBillingItem.md index 93be6d18eb..35ed18dfff 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParentVirtualGuestBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getParentVirtualGuestBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getParentVirtualGuestBillingItem-example) {#getParentVirtualGuestBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getParentVirtualGuestBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingCancellationFlag.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingCancellationFlag.md index fd4f8a463a..9668096db5 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingCancellationFlag.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingCancellationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getPendingCancellationFlag-example) {#getPendingCancellationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getPendingCancellationFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingOrderItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingOrderItem.md index 97ce2f4594..6e0d87ce00 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingOrderItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getPendingOrderItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getPendingOrderItem-example) {#getPendingOrderItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getPendingOrderItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getProvisionTransaction.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getProvisionTransaction.md index d7748a86af..b548af5f24 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getProvisionTransaction.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getProvisionTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getProvisionTransaction-example) {#getProvisionTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getProvisionTransaction' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getResource.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getResource.md index 7b774c43e5..8b81765107 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getResource.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getResource-example) {#getResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getResource' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getServiceBillingItemsByCategory.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getServiceBillingItemsByCategory.md index e1d3ffa0f5..7deca036d3 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getServiceBillingItemsByCategory.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getServiceBillingItemsByCategory.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getServiceBillingItemsByCategory-example) {#getServiceBillingItemsByCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/getServiceBillingItemsByCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getSoftwareDescription.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getSoftwareDescription.md index 97845e339d..64a2f7dcf2 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItem.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItem.md index 106c4f5ba6..ad05e33f40 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItem.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getUpgradeItem-example) {#getUpgradeItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getUpgradeItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItems.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItems.md index 0fff76e7e8..d4ca9c0631 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItems.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/getUpgradeItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getUpgradeItems-example) {#getUpgradeItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/getUpgradeItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/removeAssociationId.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/removeAssociationId.md index 61eed514e6..843197e4ef 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/removeAssociationId.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/removeAssociationId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#removeAssociationId-example) {#removeAssociationId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/removeAssociationId' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/setAssociationId.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/setAssociationId.md index 7e9a8a2dee..2debb2f75f 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/setAssociationId.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/setAssociationId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#setAssociationId-example) {#setAssociationId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/setAssociationId' ``` diff --git a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/voidCancelService.md b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/voidCancelService.md index 92f8159811..eed0592b57 100644 --- a/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/voidCancelService.md +++ b/content/reference/services/SoftLayer_Billing_Item_Virtual_DedicatedHost/voidCancelService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Item_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#voidCancelService-example) {#voidCancelService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Virtual_DedicatedHost/{SoftLayer_Billing_Item_Virtual_DedicatedHostID}/voidCancelService' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/approveModifiedOrder.md b/content/reference/services/SoftLayer_Billing_Order/approveModifiedOrder.md index a2008337e2..eb28f13fde 100644 --- a/content/reference/services/SoftLayer_Billing_Order/approveModifiedOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order/approveModifiedOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#approveModifiedOrder-example) {#approveModifiedOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/approveModifiedOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getAccount.md b/content/reference/services/SoftLayer_Billing_Order/getAccount.md index a5d65103c5..9ac633400a 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getAllObjects.md b/content/reference/services/SoftLayer_Billing_Order/getAllObjects.md index 5341497a9a..20af5637c1 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getAllObjects.md +++ b/content/reference/services/SoftLayer_Billing_Order/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getBrand.md b/content/reference/services/SoftLayer_Billing_Order/getBrand.md index 9a2bd828b9..21c8e51e9a 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getBrand.md +++ b/content/reference/services/SoftLayer_Billing_Order/getBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getBrand-example) {#getBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getBrand' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getCart.md b/content/reference/services/SoftLayer_Billing_Order/getCart.md index d1b041885f..814ee0fd6c 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getCart.md +++ b/content/reference/services/SoftLayer_Billing_Order/getCart.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getCart-example) {#getCart-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getCart' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getCoreRestrictedItems.md b/content/reference/services/SoftLayer_Billing_Order/getCoreRestrictedItems.md index 2e99796dbd..030239d0d2 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getCoreRestrictedItems.md +++ b/content/reference/services/SoftLayer_Billing_Order/getCoreRestrictedItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getCoreRestrictedItems-example) {#getCoreRestrictedItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getCoreRestrictedItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getCreditCardTransactions.md b/content/reference/services/SoftLayer_Billing_Order/getCreditCardTransactions.md index d5952b8710..edc0514126 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getCreditCardTransactions.md +++ b/content/reference/services/SoftLayer_Billing_Order/getCreditCardTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getCreditCardTransactions-example) {#getCreditCardTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getCreditCardTransactions' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getExchangeRate.md b/content/reference/services/SoftLayer_Billing_Order/getExchangeRate.md index 8af338d4fc..efd13778ea 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getExchangeRate.md +++ b/content/reference/services/SoftLayer_Billing_Order/getExchangeRate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getExchangeRate-example) {#getExchangeRate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getExchangeRate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getInitialInvoice.md b/content/reference/services/SoftLayer_Billing_Order/getInitialInvoice.md index a4e87c372d..275d6cdce7 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getInitialInvoice.md +++ b/content/reference/services/SoftLayer_Billing_Order/getInitialInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getInitialInvoice-example) {#getInitialInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getInitialInvoice' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getItems.md b/content/reference/services/SoftLayer_Billing_Order/getItems.md index d20786d134..115f822438 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getItems.md +++ b/content/reference/services/SoftLayer_Billing_Order/getItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getItems-example) {#getItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getObject.md b/content/reference/services/SoftLayer_Billing_Order/getObject.md index 5cd1a5d4a5..15365daa99 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Order/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderApprovalDate.md b/content/reference/services/SoftLayer_Billing_Order/getOrderApprovalDate.md index c1fd78a0ef..5db5b88aef 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderApprovalDate.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderApprovalDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderApprovalDate-example) {#getOrderApprovalDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderApprovalDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderNonServerMonthlyAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderNonServerMonthlyAmount.md index dc8c61ac5a..4b7c6b8688 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderNonServerMonthlyAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderNonServerMonthlyAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderNonServerMonthlyAmount-example) {#getOrderNonServerMonthlyAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderNonServerMonthlyAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderServerMonthlyAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderServerMonthlyAmount.md index 4866d1b4f3..471bd8bbec 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderServerMonthlyAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderServerMonthlyAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderServerMonthlyAmount-example) {#getOrderServerMonthlyAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderServerMonthlyAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderStatuses.md b/content/reference/services/SoftLayer_Billing_Order/getOrderStatuses.md index 6c6340bcc4..ef6685f27e 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderStatuses.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderStatuses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderStatuses-example) {#getOrderStatuses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/getOrderStatuses' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTopLevelItems.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTopLevelItems.md index 37486688c1..c448bb9fdd 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTopLevelItems.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTopLevelItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTopLevelItems-example) {#getOrderTopLevelItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTopLevelItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalAmount.md index d52558af3a..92eb634065 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalAmount-example) {#getOrderTotalAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTime.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTime.md index cccf0b64da..a3beba2c22 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTime.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTime.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalOneTime-example) {#getOrderTotalOneTime-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalOneTime' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeAmount.md index 5425737f90..05c8814ed1 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalOneTimeAmount-example) {#getOrderTotalOneTimeAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalOneTimeAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeTaxAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeTaxAmount.md index 03adb80e9f..f4665c7257 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalOneTimeTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalOneTimeTaxAmount-example) {#getOrderTotalOneTimeTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalOneTimeTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurring.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurring.md index 818b42cd50..b7db947c75 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurring.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurring.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalRecurring-example) {#getOrderTotalRecurring-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalRecurring' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringAmount.md index 7b51a588b1..88493f6e79 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalRecurringAmount-example) {#getOrderTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringTaxAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringTaxAmount.md index f273caebfe..2e8b44885f 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringTaxAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalRecurringTaxAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalRecurringTaxAmount-example) {#getOrderTotalRecurringTaxAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalRecurringTaxAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalSetupAmount.md b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalSetupAmount.md index 045c3cbf87..b7eb23f76b 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderTotalSetupAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderTotalSetupAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderTotalSetupAmount-example) {#getOrderTotalSetupAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderTotalSetupAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getOrderType.md b/content/reference/services/SoftLayer_Billing_Order/getOrderType.md index b1ba53bfaa..680e415e34 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getOrderType.md +++ b/content/reference/services/SoftLayer_Billing_Order/getOrderType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getOrderType-example) {#getOrderType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getOrderType' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getPaypalTransactions.md b/content/reference/services/SoftLayer_Billing_Order/getPaypalTransactions.md index 4d94d974fd..cabd97a782 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getPaypalTransactions.md +++ b/content/reference/services/SoftLayer_Billing_Order/getPaypalTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getPaypalTransactions-example) {#getPaypalTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getPaypalTransactions' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getPdf.md b/content/reference/services/SoftLayer_Billing_Order/getPdf.md index 6ec618cbcc..eff5531962 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getPdf.md +++ b/content/reference/services/SoftLayer_Billing_Order/getPdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getPdf-example) {#getPdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getPdf' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getPdfFilename.md b/content/reference/services/SoftLayer_Billing_Order/getPdfFilename.md index a5ae0c2eeb..8333ef7d13 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getPdfFilename.md +++ b/content/reference/services/SoftLayer_Billing_Order/getPdfFilename.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getPdfFilename-example) {#getPdfFilename-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getPdfFilename' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getPresaleEvent.md b/content/reference/services/SoftLayer_Billing_Order/getPresaleEvent.md index d2c6b75723..b5aab69c5c 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getPresaleEvent.md +++ b/content/reference/services/SoftLayer_Billing_Order/getPresaleEvent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getPresaleEvent-example) {#getPresaleEvent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getPresaleEvent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getQuote.md b/content/reference/services/SoftLayer_Billing_Order/getQuote.md index cca1f362af..9b306c3eff 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order/getQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getQuote-example) {#getQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getRecalculatedOrderContainer.md b/content/reference/services/SoftLayer_Billing_Order/getRecalculatedOrderContainer.md index 7b729a74c1..dd1d6a50fb 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getRecalculatedOrderContainer.md +++ b/content/reference/services/SoftLayer_Billing_Order/getRecalculatedOrderContainer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getRecalculatedOrderContainer-example) {#getRecalculatedOrderContainer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getRecalculatedOrderContainer' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getReceipt.md b/content/reference/services/SoftLayer_Billing_Order/getReceipt.md index 13dec210df..39b2704fba 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getReceipt.md +++ b/content/reference/services/SoftLayer_Billing_Order/getReceipt.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getReceipt-example) {#getReceipt-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getReceipt' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getReferralPartner.md b/content/reference/services/SoftLayer_Billing_Order/getReferralPartner.md index 87fb59894a..fbc88ba0bb 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getReferralPartner.md +++ b/content/reference/services/SoftLayer_Billing_Order/getReferralPartner.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getReferralPartner-example) {#getReferralPartner-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getReferralPartner' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getUpgradeRequestFlag.md b/content/reference/services/SoftLayer_Billing_Order/getUpgradeRequestFlag.md index 3e0b162129..e3ff1cad01 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getUpgradeRequestFlag.md +++ b/content/reference/services/SoftLayer_Billing_Order/getUpgradeRequestFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getUpgradeRequestFlag-example) {#getUpgradeRequestFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getUpgradeRequestFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/getUserRecord.md b/content/reference/services/SoftLayer_Billing_Order/getUserRecord.md index f9fa9fdc3b..7144de91d8 100644 --- a/content/reference/services/SoftLayer_Billing_Order/getUserRecord.md +++ b/content/reference/services/SoftLayer_Billing_Order/getUserRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#getUserRecord-example) {#getUserRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/getUserRecord' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order/isPendingEditApproval.md b/content/reference/services/SoftLayer_Billing_Order/isPendingEditApproval.md index 199116da6e..0b8655b87a 100644 --- a/content/reference/services/SoftLayer_Billing_Order/isPendingEditApproval.md +++ b/content/reference/services/SoftLayer_Billing_Order/isPendingEditApproval.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order" --- -### Curl Example +# [REST Example](#isPendingEditApproval-example) {#isPendingEditApproval-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order/{SoftLayer_Billing_OrderID}/isPendingEditApproval' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/claim.md b/content/reference/services/SoftLayer_Billing_Order_Cart/claim.md index eff9e2877f..d3fc71f8a1 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/claim.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/claim.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#claim-example) {#claim-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/claim' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/createCart.md b/content/reference/services/SoftLayer_Billing_Order_Cart/createCart.md index 445e79202a..d0a1bb3072 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/createCart.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/createCart.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#createCart-example) {#createCart-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/createCart' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/deleteCart.md b/content/reference/services/SoftLayer_Billing_Order_Cart/deleteCart.md index 4dba398892..484dcc1e8e 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/deleteCart.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/deleteCart.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#deleteCart-example) {#deleteCart-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/deleteCart' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/deleteQuote.md b/content/reference/services/SoftLayer_Billing_Order_Cart/deleteQuote.md index bc8568091b..cdf41f75a6 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/deleteQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/deleteQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#deleteQuote-example) {#deleteQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/deleteQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getAccount.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getAccount.md index 373cb1fc2f..676bc605ec 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getCartByCartKey.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getCartByCartKey.md index 434a394653..8f2bbe8e15 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getCartByCartKey.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getCartByCartKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getCartByCartKey-example) {#getCartByCartKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/getCartByCartKey' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getDoNotContactFlag.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getDoNotContactFlag.md index 3d7656f81a..49dfc5f501 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getDoNotContactFlag.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getDoNotContactFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getDoNotContactFlag-example) {#getDoNotContactFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getDoNotContactFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getObject.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getObject.md index a07a5c7a37..567bfb8d81 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getOrder.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getOrder.md index bdee400500..b37ae9c471 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getOrder-example) {#getOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getOrdersFromQuote.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getOrdersFromQuote.md index 76ac4fea94..784f9ab8dd 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getOrdersFromQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getOrdersFromQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getOrdersFromQuote-example) {#getOrdersFromQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getOrdersFromQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getPdf.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getPdf.md index 0d358fd37f..1700c3e588 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getPdf.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getPdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getPdf-example) {#getPdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getPdf' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getQuoteByQuoteKey.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getQuoteByQuoteKey.md index a0cf042b47..55df6deaa0 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getQuoteByQuoteKey.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getQuoteByQuoteKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getQuoteByQuoteKey-example) {#getQuoteByQuoteKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/getQuoteByQuoteKey' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/getRecalculatedOrderContainer.md b/content/reference/services/SoftLayer_Billing_Order_Cart/getRecalculatedOrderContainer.md index 5f4514a8d1..f3f184f08e 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/getRecalculatedOrderContainer.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/getRecalculatedOrderContainer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#getRecalculatedOrderContainer-example) {#getRecalculatedOrderContainer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/getRecalculatedOrderContainer' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/placeOrder.md b/content/reference/services/SoftLayer_Billing_Order_Cart/placeOrder.md index b090ccae8c..3298fc8ac4 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/placeOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/placeOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#placeOrder-example) {#placeOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/placeOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/placeQuote.md b/content/reference/services/SoftLayer_Billing_Order_Cart/placeQuote.md index e77fd4caa2..82d3afc494 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/placeQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/placeQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#placeQuote-example) {#placeQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/placeQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/saveQuote.md b/content/reference/services/SoftLayer_Billing_Order_Cart/saveQuote.md index 3266f0d6f9..5789313a70 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/saveQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/saveQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#saveQuote-example) {#saveQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/saveQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/updateCart.md b/content/reference/services/SoftLayer_Billing_Order_Cart/updateCart.md index cb9bbbd3c1..69fb11ad95 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/updateCart.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/updateCart.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#updateCart-example) {#updateCart-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/updateCart' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/verifyOrder.md b/content/reference/services/SoftLayer_Billing_Order_Cart/verifyOrder.md index 89b9f654b8..a5e98ae4d7 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/verifyOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/verifyOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#verifyOrder-example) {#verifyOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/verifyOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Cart/withdrawGdprAcceptance.md b/content/reference/services/SoftLayer_Billing_Order_Cart/withdrawGdprAcceptance.md index 7eb21bc1bf..601636dc68 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Cart/withdrawGdprAcceptance.md +++ b/content/reference/services/SoftLayer_Billing_Order_Cart/withdrawGdprAcceptance.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Cart" --- -### Curl Example +# [REST Example](#withdrawGdprAcceptance-example) {#withdrawGdprAcceptance-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Cart/{SoftLayer_Billing_Order_CartID}/withdrawGdprAcceptance' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getBillingItem.md b/content/reference/services/SoftLayer_Billing_Order_Item/getBillingItem.md index 3d5c6e2162..71666093b3 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getBundledItems.md b/content/reference/services/SoftLayer_Billing_Order_Item/getBundledItems.md index ef1e745e66..204878eb65 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getBundledItems.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getBundledItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getBundledItems-example) {#getBundledItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getBundledItems' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getCategory.md b/content/reference/services/SoftLayer_Billing_Order_Item/getCategory.md index 579a32aee1..a3169d2b4d 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getCategory.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getCategory-example) {#getCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getCategory' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getChildren.md b/content/reference/services/SoftLayer_Billing_Order_Item/getChildren.md index e6499dd613..dc625929ee 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getChildren.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Billing_Order_Item/getGlobalIdentifier.md index 4c0d3cd547..dc2e79e012 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getHardwareGenericComponent.md b/content/reference/services/SoftLayer_Billing_Order_Item/getHardwareGenericComponent.md index fa87081be3..9f2a8a5790 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getHardwareGenericComponent.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getHardwareGenericComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getHardwareGenericComponent-example) {#getHardwareGenericComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getHardwareGenericComponent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getItem.md b/content/reference/services/SoftLayer_Billing_Order_Item/getItem.md index d93809b735..165ae46603 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getItem.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getItemCategoryAnswers.md b/content/reference/services/SoftLayer_Billing_Order_Item/getItemCategoryAnswers.md index be8828e2c2..76cacf5543 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getItemCategoryAnswers.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getItemCategoryAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getItemCategoryAnswers-example) {#getItemCategoryAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getItemCategoryAnswers' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getItemPrice.md b/content/reference/services/SoftLayer_Billing_Order_Item/getItemPrice.md index 59a9207623..37e41d6930 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getItemPrice.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getItemPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getItemPrice-example) {#getItemPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getItemPrice' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getLocation.md b/content/reference/services/SoftLayer_Billing_Order_Item/getLocation.md index f5dfa05543..f8869e110c 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getLocation.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getNextOrderChildren.md b/content/reference/services/SoftLayer_Billing_Order_Item/getNextOrderChildren.md index df6b054025..479f48d9fb 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getNextOrderChildren.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getNextOrderChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getNextOrderChildren-example) {#getNextOrderChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getNextOrderChildren' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getObject.md b/content/reference/services/SoftLayer_Billing_Order_Item/getObject.md index 186ef7f775..63c5d6408f 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getOldBillingItem.md b/content/reference/services/SoftLayer_Billing_Order_Item/getOldBillingItem.md index 662e449651..c46a957325 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getOldBillingItem.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getOldBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getOldBillingItem-example) {#getOldBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getOldBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getOrder.md b/content/reference/services/SoftLayer_Billing_Order_Item/getOrder.md index 203fac1da2..34db9b5c25 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getOrder-example) {#getOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getOrderApprovalDate.md b/content/reference/services/SoftLayer_Billing_Order_Item/getOrderApprovalDate.md index bd7cfa8f1a..0a268942e2 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getOrderApprovalDate.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getOrderApprovalDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getOrderApprovalDate-example) {#getOrderApprovalDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getOrderApprovalDate' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getPackage.md b/content/reference/services/SoftLayer_Billing_Order_Item/getPackage.md index 813290c8ce..0c6c48abe8 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getPackage.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getPackage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getPackage-example) {#getPackage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getPackage' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getParent.md b/content/reference/services/SoftLayer_Billing_Order_Item/getParent.md index ef90ba9c45..a03ef5b32b 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getParent.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getPreset.md b/content/reference/services/SoftLayer_Billing_Order_Item/getPreset.md index 81b3aebdd8..3fcc45f199 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getPreset.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getPreset-example) {#getPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getPreset' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getPromoCode.md b/content/reference/services/SoftLayer_Billing_Order_Item/getPromoCode.md index d8ae76194a..db7d10d8be 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getPromoCode.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getPromoCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getPromoCode-example) {#getPromoCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getPromoCode' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getRedundantPowerSupplyCount.md b/content/reference/services/SoftLayer_Billing_Order_Item/getRedundantPowerSupplyCount.md index c57c9b31ad..304e6eaa14 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getRedundantPowerSupplyCount.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getRedundantPowerSupplyCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getRedundantPowerSupplyCount-example) {#getRedundantPowerSupplyCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getRedundantPowerSupplyCount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getSoftwareDescription.md b/content/reference/services/SoftLayer_Billing_Order_Item/getSoftwareDescription.md index fe8a378a24..59e677e212 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getStorageGroups.md b/content/reference/services/SoftLayer_Billing_Order_Item/getStorageGroups.md index 940cf8388c..8075ffdfa1 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getTotalRecurringAmount.md b/content/reference/services/SoftLayer_Billing_Order_Item/getTotalRecurringAmount.md index 54292aee80..c3b67e3e9f 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getTotalRecurringAmount.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getTotalRecurringAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getTotalRecurringAmount-example) {#getTotalRecurringAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getTotalRecurringAmount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Item/getUpgradeItem.md b/content/reference/services/SoftLayer_Billing_Order_Item/getUpgradeItem.md index 44c2bd78e8..6793d075ec 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Item/getUpgradeItem.md +++ b/content/reference/services/SoftLayer_Billing_Order_Item/getUpgradeItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Item" --- -### Curl Example +# [REST Example](#getUpgradeItem-example) {#getUpgradeItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Item/{SoftLayer_Billing_Order_ItemID}/getUpgradeItem' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/claim.md b/content/reference/services/SoftLayer_Billing_Order_Quote/claim.md index 41ba04baa1..5ed89ac505 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/claim.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/claim.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#claim-example) {#claim-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/claim' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/deleteQuote.md b/content/reference/services/SoftLayer_Billing_Order_Quote/deleteQuote.md index f0f615523f..03b4985231 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/deleteQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/deleteQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#deleteQuote-example) {#deleteQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/deleteQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getAccount.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getAccount.md index 279d3cb085..9fa6934a5a 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getAccount.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getDoNotContactFlag.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getDoNotContactFlag.md index ab53ea8663..cf0308dda8 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getDoNotContactFlag.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getDoNotContactFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getDoNotContactFlag-example) {#getDoNotContactFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getDoNotContactFlag' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getObject.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getObject.md index e11a2b9da4..b90e9db6e3 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getObject.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getOrder.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getOrder.md index e5b1c290a0..50608fb8ad 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getOrder-example) {#getOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getOrdersFromQuote.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getOrdersFromQuote.md index ed2ec52b20..189cd73efa 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getOrdersFromQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getOrdersFromQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getOrdersFromQuote-example) {#getOrdersFromQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getOrdersFromQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getPdf.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getPdf.md index c0b99690e1..25e22ab8cf 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getPdf.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getPdf.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getPdf-example) {#getPdf-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getPdf' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getQuoteByQuoteKey.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getQuoteByQuoteKey.md index 0a66e585fb..857fbdb654 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getQuoteByQuoteKey.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getQuoteByQuoteKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getQuoteByQuoteKey-example) {#getQuoteByQuoteKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/getQuoteByQuoteKey' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/getRecalculatedOrderContainer.md b/content/reference/services/SoftLayer_Billing_Order_Quote/getRecalculatedOrderContainer.md index b716897223..d0d039340b 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/getRecalculatedOrderContainer.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/getRecalculatedOrderContainer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#getRecalculatedOrderContainer-example) {#getRecalculatedOrderContainer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/getRecalculatedOrderContainer' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/placeOrder.md b/content/reference/services/SoftLayer_Billing_Order_Quote/placeOrder.md index cb0036193c..4cb7a13c9c 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/placeOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/placeOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#placeOrder-example) {#placeOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/placeOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/placeQuote.md b/content/reference/services/SoftLayer_Billing_Order_Quote/placeQuote.md index d7c2e9c8e8..04a9d2127e 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/placeQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/placeQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#placeQuote-example) {#placeQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/placeQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/saveQuote.md b/content/reference/services/SoftLayer_Billing_Order_Quote/saveQuote.md index e4995ca811..709ec795f9 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/saveQuote.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/saveQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#saveQuote-example) {#saveQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/saveQuote' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/verifyOrder.md b/content/reference/services/SoftLayer_Billing_Order_Quote/verifyOrder.md index c003a24241..9cea253778 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/verifyOrder.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/verifyOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#verifyOrder-example) {#verifyOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/verifyOrder' ``` diff --git a/content/reference/services/SoftLayer_Billing_Order_Quote/withdrawGdprAcceptance.md b/content/reference/services/SoftLayer_Billing_Order_Quote/withdrawGdprAcceptance.md index cf252a29ee..0fb8dfc606 100644 --- a/content/reference/services/SoftLayer_Billing_Order_Quote/withdrawGdprAcceptance.md +++ b/content/reference/services/SoftLayer_Billing_Order_Quote/withdrawGdprAcceptance.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Billing_Order_Quote" --- -### Curl Example +# [REST Example](#withdrawGdprAcceptance-example) {#withdrawGdprAcceptance-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Billing_Order_Quote/{SoftLayer_Billing_Order_QuoteID}/withdrawGdprAcceptance' ``` diff --git a/content/reference/services/SoftLayer_Brand/createCustomerAccount.md b/content/reference/services/SoftLayer_Brand/createCustomerAccount.md index cdce9174c9..9ccb6a9983 100644 --- a/content/reference/services/SoftLayer_Brand/createCustomerAccount.md +++ b/content/reference/services/SoftLayer_Brand/createCustomerAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#createCustomerAccount-example) {#createCustomerAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/createCustomerAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/createObject.md b/content/reference/services/SoftLayer_Brand/createObject.md index faa645db78..e971fa3412 100644 --- a/content/reference/services/SoftLayer_Brand/createObject.md +++ b/content/reference/services/SoftLayer_Brand/createObject.md @@ -108,8 +108,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Brand]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Brand]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/createObject' ``` diff --git a/content/reference/services/SoftLayer_Brand/disableAccount.md b/content/reference/services/SoftLayer_Brand/disableAccount.md index c5e2c28fb1..8ffbd076d2 100644 --- a/content/reference/services/SoftLayer_Brand/disableAccount.md +++ b/content/reference/services/SoftLayer_Brand/disableAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#disableAccount-example) {#disableAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/disableAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/getAccount.md b/content/reference/services/SoftLayer_Brand/getAccount.md index e3b5d4bf64..d405035a7e 100644 --- a/content/reference/services/SoftLayer_Brand/getAccount.md +++ b/content/reference/services/SoftLayer_Brand/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/getAllOwnedAccounts.md b/content/reference/services/SoftLayer_Brand/getAllOwnedAccounts.md index e01ae5cdc3..189bb319d6 100644 --- a/content/reference/services/SoftLayer_Brand/getAllOwnedAccounts.md +++ b/content/reference/services/SoftLayer_Brand/getAllOwnedAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getAllOwnedAccounts-example) {#getAllOwnedAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getAllOwnedAccounts' ``` diff --git a/content/reference/services/SoftLayer_Brand/getAllTicketSubjects.md b/content/reference/services/SoftLayer_Brand/getAllTicketSubjects.md index bfa121e59d..36569942b2 100644 --- a/content/reference/services/SoftLayer_Brand/getAllTicketSubjects.md +++ b/content/reference/services/SoftLayer_Brand/getAllTicketSubjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getAllTicketSubjects-example) {#getAllTicketSubjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getAllTicketSubjects' ``` diff --git a/content/reference/services/SoftLayer_Brand/getAllowAccountCreationFlag.md b/content/reference/services/SoftLayer_Brand/getAllowAccountCreationFlag.md index 4a0732869d..1ad478ea2c 100644 --- a/content/reference/services/SoftLayer_Brand/getAllowAccountCreationFlag.md +++ b/content/reference/services/SoftLayer_Brand/getAllowAccountCreationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getAllowAccountCreationFlag-example) {#getAllowAccountCreationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getAllowAccountCreationFlag' ``` diff --git a/content/reference/services/SoftLayer_Brand/getBillingItemSnapshots.md b/content/reference/services/SoftLayer_Brand/getBillingItemSnapshots.md index 9083f78c59..abef44839f 100644 --- a/content/reference/services/SoftLayer_Brand/getBillingItemSnapshots.md +++ b/content/reference/services/SoftLayer_Brand/getBillingItemSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getBillingItemSnapshots-example) {#getBillingItemSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getBillingItemSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsForSingleOwnedAccount.md b/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsForSingleOwnedAccount.md index 5a30ab25b6..32be32536c 100644 --- a/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsForSingleOwnedAccount.md +++ b/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsForSingleOwnedAccount.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getBillingItemSnapshotsForSingleOwnedAccount-example) {#getBillingItemSnapshotsForSingleOwnedAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getBillingItemSnapshotsForSingleOwnedAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsWithExternalAccountId.md b/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsWithExternalAccountId.md index 05b3526a5d..5868a0bb93 100644 --- a/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsWithExternalAccountId.md +++ b/content/reference/services/SoftLayer_Brand/getBillingItemSnapshotsWithExternalAccountId.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getBillingItemSnapshotsWithExternalAccountId-example) {#getBillingItemSnapshotsWithExternalAccountId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getBillingItemSnapshotsWithExternalAccountId' ``` diff --git a/content/reference/services/SoftLayer_Brand/getBusinessPartner.md b/content/reference/services/SoftLayer_Brand/getBusinessPartner.md index 0a7447b73c..6e28d2cc6b 100644 --- a/content/reference/services/SoftLayer_Brand/getBusinessPartner.md +++ b/content/reference/services/SoftLayer_Brand/getBusinessPartner.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getBusinessPartner-example) {#getBusinessPartner-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getBusinessPartner' ``` diff --git a/content/reference/services/SoftLayer_Brand/getBusinessPartnerFlag.md b/content/reference/services/SoftLayer_Brand/getBusinessPartnerFlag.md index 74e1c8e862..5ae6678ac2 100644 --- a/content/reference/services/SoftLayer_Brand/getBusinessPartnerFlag.md +++ b/content/reference/services/SoftLayer_Brand/getBusinessPartnerFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getBusinessPartnerFlag-example) {#getBusinessPartnerFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getBusinessPartnerFlag' ``` diff --git a/content/reference/services/SoftLayer_Brand/getCatalog.md b/content/reference/services/SoftLayer_Brand/getCatalog.md index a3f79ceeab..1a22e0e854 100644 --- a/content/reference/services/SoftLayer_Brand/getCatalog.md +++ b/content/reference/services/SoftLayer_Brand/getCatalog.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getCatalog-example) {#getCatalog-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getCatalog' ``` diff --git a/content/reference/services/SoftLayer_Brand/getContactInformation.md b/content/reference/services/SoftLayer_Brand/getContactInformation.md index b34670b9dc..d3b5717089 100644 --- a/content/reference/services/SoftLayer_Brand/getContactInformation.md +++ b/content/reference/services/SoftLayer_Brand/getContactInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getContactInformation-example) {#getContactInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getContactInformation' ``` diff --git a/content/reference/services/SoftLayer_Brand/getContacts.md b/content/reference/services/SoftLayer_Brand/getContacts.md index de1818d81c..ae265e91e2 100644 --- a/content/reference/services/SoftLayer_Brand/getContacts.md +++ b/content/reference/services/SoftLayer_Brand/getContacts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getContacts-example) {#getContacts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getContacts' ``` diff --git a/content/reference/services/SoftLayer_Brand/getCustomerCountryLocationRestrictions.md b/content/reference/services/SoftLayer_Brand/getCustomerCountryLocationRestrictions.md index ffe586805f..11d7b25ff5 100644 --- a/content/reference/services/SoftLayer_Brand/getCustomerCountryLocationRestrictions.md +++ b/content/reference/services/SoftLayer_Brand/getCustomerCountryLocationRestrictions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getCustomerCountryLocationRestrictions-example) {#getCustomerCountryLocationRestrictions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getCustomerCountryLocationRestrictions' ``` diff --git a/content/reference/services/SoftLayer_Brand/getDistributor.md b/content/reference/services/SoftLayer_Brand/getDistributor.md index 7535ea8105..7d15412338 100644 --- a/content/reference/services/SoftLayer_Brand/getDistributor.md +++ b/content/reference/services/SoftLayer_Brand/getDistributor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getDistributor-example) {#getDistributor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getDistributor' ``` diff --git a/content/reference/services/SoftLayer_Brand/getDistributorChildFlag.md b/content/reference/services/SoftLayer_Brand/getDistributorChildFlag.md index 60ecb73915..aa9792df30 100644 --- a/content/reference/services/SoftLayer_Brand/getDistributorChildFlag.md +++ b/content/reference/services/SoftLayer_Brand/getDistributorChildFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getDistributorChildFlag-example) {#getDistributorChildFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getDistributorChildFlag' ``` diff --git a/content/reference/services/SoftLayer_Brand/getDistributorFlag.md b/content/reference/services/SoftLayer_Brand/getDistributorFlag.md index b6031a775c..6ec5328f4e 100644 --- a/content/reference/services/SoftLayer_Brand/getDistributorFlag.md +++ b/content/reference/services/SoftLayer_Brand/getDistributorFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getDistributorFlag-example) {#getDistributorFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getDistributorFlag' ``` diff --git a/content/reference/services/SoftLayer_Brand/getHardware.md b/content/reference/services/SoftLayer_Brand/getHardware.md index 5829e5f5e8..f229f07603 100644 --- a/content/reference/services/SoftLayer_Brand/getHardware.md +++ b/content/reference/services/SoftLayer_Brand/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Brand/getHasAgentAdvancedSupportFlag.md b/content/reference/services/SoftLayer_Brand/getHasAgentAdvancedSupportFlag.md index 6948e41e80..2199ec1fd3 100644 --- a/content/reference/services/SoftLayer_Brand/getHasAgentAdvancedSupportFlag.md +++ b/content/reference/services/SoftLayer_Brand/getHasAgentAdvancedSupportFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getHasAgentAdvancedSupportFlag-example) {#getHasAgentAdvancedSupportFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getHasAgentAdvancedSupportFlag' ``` diff --git a/content/reference/services/SoftLayer_Brand/getHasAgentSupportFlag.md b/content/reference/services/SoftLayer_Brand/getHasAgentSupportFlag.md index 14c249c38d..7454fe1a1d 100644 --- a/content/reference/services/SoftLayer_Brand/getHasAgentSupportFlag.md +++ b/content/reference/services/SoftLayer_Brand/getHasAgentSupportFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getHasAgentSupportFlag-example) {#getHasAgentSupportFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getHasAgentSupportFlag' ``` diff --git a/content/reference/services/SoftLayer_Brand/getMerchantName.md b/content/reference/services/SoftLayer_Brand/getMerchantName.md index 9c76fd6c52..e6a8ab73b3 100644 --- a/content/reference/services/SoftLayer_Brand/getMerchantName.md +++ b/content/reference/services/SoftLayer_Brand/getMerchantName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getMerchantName-example) {#getMerchantName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getMerchantName' ``` diff --git a/content/reference/services/SoftLayer_Brand/getObject.md b/content/reference/services/SoftLayer_Brand/getObject.md index ac5719e1ba..fc87dbd23f 100644 --- a/content/reference/services/SoftLayer_Brand/getObject.md +++ b/content/reference/services/SoftLayer_Brand/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Brand/getOpenTickets.md b/content/reference/services/SoftLayer_Brand/getOpenTickets.md index 8654f400c7..847f7bed5c 100644 --- a/content/reference/services/SoftLayer_Brand/getOpenTickets.md +++ b/content/reference/services/SoftLayer_Brand/getOpenTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getOpenTickets-example) {#getOpenTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getOpenTickets' ``` diff --git a/content/reference/services/SoftLayer_Brand/getOwnedAccounts.md b/content/reference/services/SoftLayer_Brand/getOwnedAccounts.md index ec8178398a..d23b492b93 100644 --- a/content/reference/services/SoftLayer_Brand/getOwnedAccounts.md +++ b/content/reference/services/SoftLayer_Brand/getOwnedAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getOwnedAccounts-example) {#getOwnedAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getOwnedAccounts' ``` diff --git a/content/reference/services/SoftLayer_Brand/getSecurityLevel.md b/content/reference/services/SoftLayer_Brand/getSecurityLevel.md index ef9d3fd21e..699b4699cb 100644 --- a/content/reference/services/SoftLayer_Brand/getSecurityLevel.md +++ b/content/reference/services/SoftLayer_Brand/getSecurityLevel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getSecurityLevel-example) {#getSecurityLevel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getSecurityLevel' ``` diff --git a/content/reference/services/SoftLayer_Brand/getTicketGroups.md b/content/reference/services/SoftLayer_Brand/getTicketGroups.md index 19e5b097b7..8dfbdb83dd 100644 --- a/content/reference/services/SoftLayer_Brand/getTicketGroups.md +++ b/content/reference/services/SoftLayer_Brand/getTicketGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getTicketGroups-example) {#getTicketGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getTicketGroups' ``` diff --git a/content/reference/services/SoftLayer_Brand/getTickets.md b/content/reference/services/SoftLayer_Brand/getTickets.md index 9ba82608e9..18ff5451c6 100644 --- a/content/reference/services/SoftLayer_Brand/getTickets.md +++ b/content/reference/services/SoftLayer_Brand/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_Brand/getToken.md b/content/reference/services/SoftLayer_Brand/getToken.md index 3af7286dc4..44f0dc4109 100644 --- a/content/reference/services/SoftLayer_Brand/getToken.md +++ b/content/reference/services/SoftLayer_Brand/getToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getToken-example) {#getToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getToken' ``` diff --git a/content/reference/services/SoftLayer_Brand/getUsers.md b/content/reference/services/SoftLayer_Brand/getUsers.md index 580029df1b..5e54b25874 100644 --- a/content/reference/services/SoftLayer_Brand/getUsers.md +++ b/content/reference/services/SoftLayer_Brand/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_Brand/getVirtualGuests.md b/content/reference/services/SoftLayer_Brand/getVirtualGuests.md index 69aefd36d2..1692dc5969 100644 --- a/content/reference/services/SoftLayer_Brand/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Brand/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Brand/isIbmSlicBrand.md b/content/reference/services/SoftLayer_Brand/isIbmSlicBrand.md index da0458d3e5..21aa1239bd 100644 --- a/content/reference/services/SoftLayer_Brand/isIbmSlicBrand.md +++ b/content/reference/services/SoftLayer_Brand/isIbmSlicBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#isIbmSlicBrand-example) {#isIbmSlicBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/isIbmSlicBrand' ``` diff --git a/content/reference/services/SoftLayer_Brand/isPlatformServicesBrand.md b/content/reference/services/SoftLayer_Brand/isPlatformServicesBrand.md index 26c243ec66..64a8268df6 100644 --- a/content/reference/services/SoftLayer_Brand/isPlatformServicesBrand.md +++ b/content/reference/services/SoftLayer_Brand/isPlatformServicesBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#isPlatformServicesBrand-example) {#isPlatformServicesBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/isPlatformServicesBrand' ``` diff --git a/content/reference/services/SoftLayer_Brand/migrateExternalAccount.md b/content/reference/services/SoftLayer_Brand/migrateExternalAccount.md index b2b186cdd6..9b304761cc 100644 --- a/content/reference/services/SoftLayer_Brand/migrateExternalAccount.md +++ b/content/reference/services/SoftLayer_Brand/migrateExternalAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#migrateExternalAccount-example) {#migrateExternalAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/migrateExternalAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/reactivateAccount.md b/content/reference/services/SoftLayer_Brand/reactivateAccount.md index 7850a9f3f2..d195e78d76 100644 --- a/content/reference/services/SoftLayer_Brand/reactivateAccount.md +++ b/content/reference/services/SoftLayer_Brand/reactivateAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#reactivateAccount-example) {#reactivateAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/reactivateAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/refreshBillingItemSnapshot.md b/content/reference/services/SoftLayer_Brand/refreshBillingItemSnapshot.md index c112265bbf..a10f7ac0d5 100644 --- a/content/reference/services/SoftLayer_Brand/refreshBillingItemSnapshot.md +++ b/content/reference/services/SoftLayer_Brand/refreshBillingItemSnapshot.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#refreshBillingItemSnapshot-example) {#refreshBillingItemSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/refreshBillingItemSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Brand/verifyCanDisableAccount.md b/content/reference/services/SoftLayer_Brand/verifyCanDisableAccount.md index c2af15113f..e5a71a4b71 100644 --- a/content/reference/services/SoftLayer_Brand/verifyCanDisableAccount.md +++ b/content/reference/services/SoftLayer_Brand/verifyCanDisableAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#verifyCanDisableAccount-example) {#verifyCanDisableAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/verifyCanDisableAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand/verifyCanReactivateAccount.md b/content/reference/services/SoftLayer_Brand/verifyCanReactivateAccount.md index 426f23ba6b..e122a7da52 100644 --- a/content/reference/services/SoftLayer_Brand/verifyCanReactivateAccount.md +++ b/content/reference/services/SoftLayer_Brand/verifyCanReactivateAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand" --- -### Curl Example +# [REST Example](#verifyCanReactivateAccount-example) {#verifyCanReactivateAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand/{SoftLayer_BrandID}/verifyCanReactivateAccount' ``` diff --git a/content/reference/services/SoftLayer_Brand_Business_Partner/getBrand.md b/content/reference/services/SoftLayer_Brand_Business_Partner/getBrand.md index fe91614fab..9675b94ba3 100644 --- a/content/reference/services/SoftLayer_Brand_Business_Partner/getBrand.md +++ b/content/reference/services/SoftLayer_Brand_Business_Partner/getBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Business_Partner" --- -### Curl Example +# [REST Example](#getBrand-example) {#getBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Business_Partner/{SoftLayer_Brand_Business_PartnerID}/getBrand' ``` diff --git a/content/reference/services/SoftLayer_Brand_Business_Partner/getChannel.md b/content/reference/services/SoftLayer_Brand_Business_Partner/getChannel.md index 7d7ba1ac1c..c904d04329 100644 --- a/content/reference/services/SoftLayer_Brand_Business_Partner/getChannel.md +++ b/content/reference/services/SoftLayer_Brand_Business_Partner/getChannel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Business_Partner" --- -### Curl Example +# [REST Example](#getChannel-example) {#getChannel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Business_Partner/{SoftLayer_Brand_Business_PartnerID}/getChannel' ``` diff --git a/content/reference/services/SoftLayer_Brand_Business_Partner/getObject.md b/content/reference/services/SoftLayer_Brand_Business_Partner/getObject.md index 71be345a8a..ce84f56044 100644 --- a/content/reference/services/SoftLayer_Brand_Business_Partner/getObject.md +++ b/content/reference/services/SoftLayer_Brand_Business_Partner/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Business_Partner" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Business_Partner/{SoftLayer_Brand_Business_PartnerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Brand_Business_Partner/getSegment.md b/content/reference/services/SoftLayer_Brand_Business_Partner/getSegment.md index 2391576911..eff89337a6 100644 --- a/content/reference/services/SoftLayer_Brand_Business_Partner/getSegment.md +++ b/content/reference/services/SoftLayer_Brand_Business_Partner/getSegment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Business_Partner" --- -### Curl Example +# [REST Example](#getSegment-example) {#getSegment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Business_Partner/{SoftLayer_Brand_Business_PartnerID}/getSegment' ``` diff --git a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getAllObjects.md b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getAllObjects.md index 4e937a156b..1f61b13f2f 100644 --- a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getAllObjects.md +++ b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Restriction_Location_CustomerCountry" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Restriction_Location_CustomerCountry/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getBrand.md b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getBrand.md index 4e53498466..460e2a9838 100644 --- a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getBrand.md +++ b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getBrand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Restriction_Location_CustomerCountry" --- -### Curl Example +# [REST Example](#getBrand-example) {#getBrand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Restriction_Location_CustomerCountry/{SoftLayer_Brand_Restriction_Location_CustomerCountryID}/getBrand' ``` diff --git a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getLocation.md b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getLocation.md index 1d1f9a4ef1..353c3c2708 100644 --- a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getLocation.md +++ b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Restriction_Location_CustomerCountry" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Restriction_Location_CustomerCountry/{SoftLayer_Brand_Restriction_Location_CustomerCountryID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getObject.md b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getObject.md index 42d5cb2cc3..f90cffac1b 100644 --- a/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getObject.md +++ b/content/reference/services/SoftLayer_Brand_Restriction_Location_CustomerCountry/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Brand_Restriction_Location_CustomerCountry" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Brand_Restriction_Location_CustomerCountry/{SoftLayer_Brand_Restriction_Location_CustomerCountryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Business_Partner_Channel/getObject.md b/content/reference/services/SoftLayer_Business_Partner_Channel/getObject.md index 09e009cc14..2ff00c67f5 100644 --- a/content/reference/services/SoftLayer_Business_Partner_Channel/getObject.md +++ b/content/reference/services/SoftLayer_Business_Partner_Channel/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Business_Partner_Channel" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Business_Partner_Channel/{SoftLayer_Business_Partner_ChannelID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Business_Partner_Segment/getObject.md b/content/reference/services/SoftLayer_Business_Partner_Segment/getObject.md index c9e3690019..1b412edbee 100644 --- a/content/reference/services/SoftLayer_Business_Partner_Segment/getObject.md +++ b/content/reference/services/SoftLayer_Business_Partner_Segment/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Business_Partner_Segment" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Business_Partner_Segment/{SoftLayer_Business_Partner_SegmentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Company_Type/getAllObjects.md b/content/reference/services/SoftLayer_Catalyst_Company_Type/getAllObjects.md index a782597dc3..1280cf7300 100644 --- a/content/reference/services/SoftLayer_Catalyst_Company_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Catalyst_Company_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Company_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Company_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Company_Type/getObject.md b/content/reference/services/SoftLayer_Catalyst_Company_Type/getObject.md index 84221a4c82..24adadd880 100644 --- a/content/reference/services/SoftLayer_Catalyst_Company_Type/getObject.md +++ b/content/reference/services/SoftLayer_Catalyst_Company_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Company_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Company_Type/{SoftLayer_Catalyst_Company_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getAccount.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getAccount.md index fa3c8b4f62..79123af6fa 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getAccount.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/{SoftLayer_Catalyst_EnrollmentID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliate.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliate.md index 98a48d3459..dbaa29c5f3 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliate.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getAffiliate-example) {#getAffiliate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/{SoftLayer_Catalyst_EnrollmentID}/getAffiliate' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliates.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliates.md index 5e96634251..d05b97ced8 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliates.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getAffiliates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getAffiliates-example) {#getAffiliates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/getAffiliates' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyType.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyType.md index c5b08eea89..e5c3488ccd 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyType.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getCompanyType-example) {#getCompanyType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/{SoftLayer_Catalyst_EnrollmentID}/getCompanyType' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyTypes.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyTypes.md index ccbc8e1b86..2507e84692 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyTypes.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getCompanyTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getCompanyTypes-example) {#getCompanyTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/getCompanyTypes' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestAnnualRevenueOptions.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestAnnualRevenueOptions.md index 8c8d5b5387..25e5e188e5 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestAnnualRevenueOptions.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestAnnualRevenueOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getEnrollmentRequestAnnualRevenueOptions-example) {#getEnrollmentRequestAnnualRevenueOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestAnnualRevenueOptions' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestUserCountOptions.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestUserCountOptions.md index f661ec021e..8cac3da756 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestUserCountOptions.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestUserCountOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getEnrollmentRequestUserCountOptions-example) {#getEnrollmentRequestUserCountOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestUserCountOptions' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestYearsInOperationOptions.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestYearsInOperationOptions.md index 4aac6aedca..f690adda3a 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestYearsInOperationOptions.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestYearsInOperationOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getEnrollmentRequestYearsInOperationOptions-example) {#getEnrollmentRequestYearsInOperationOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/getEnrollmentRequestYearsInOperationOptions' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getIsActiveFlag.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getIsActiveFlag.md index 1d7f039d19..d999750bd3 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getIsActiveFlag.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getIsActiveFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getIsActiveFlag-example) {#getIsActiveFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/{SoftLayer_Catalyst_EnrollmentID}/getIsActiveFlag' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getObject.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getObject.md index 353a375162..81076bd431 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getObject.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/{SoftLayer_Catalyst_EnrollmentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/getRepresentative.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/getRepresentative.md index 513f3b16dd..320cd074b2 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/getRepresentative.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/getRepresentative.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#getRepresentative-example) {#getRepresentative-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/{SoftLayer_Catalyst_EnrollmentID}/getRepresentative' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/requestManualEnrollment.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/requestManualEnrollment.md index d590a7e406..f2b8993750 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/requestManualEnrollment.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/requestManualEnrollment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#requestManualEnrollment-example) {#requestManualEnrollment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Catalyst_ManualEnrollmentRequest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Catalyst_ManualEnrollmentRequest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/requestManualEnrollment' ``` diff --git a/content/reference/services/SoftLayer_Catalyst_Enrollment/requestSelfEnrollment.md b/content/reference/services/SoftLayer_Catalyst_Enrollment/requestSelfEnrollment.md index d9d6a15431..c497e0a416 100644 --- a/content/reference/services/SoftLayer_Catalyst_Enrollment/requestSelfEnrollment.md +++ b/content/reference/services/SoftLayer_Catalyst_Enrollment/requestSelfEnrollment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Catalyst_Enrollment" --- -### Curl Example +# [REST Example](#requestSelfEnrollment-example) {#requestSelfEnrollment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Catalyst_Enrollment_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Catalyst_Enrollment_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Catalyst_Enrollment/requestSelfEnrollment' ``` diff --git a/content/reference/services/SoftLayer_Compliance_Report_Type/getAllObjects.md b/content/reference/services/SoftLayer_Compliance_Report_Type/getAllObjects.md index b5fbc3e7f4..ce96b8009f 100644 --- a/content/reference/services/SoftLayer_Compliance_Report_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Compliance_Report_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Compliance_Report_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Compliance_Report_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Compliance_Report_Type/getObject.md b/content/reference/services/SoftLayer_Compliance_Report_Type/getObject.md index 95c10b3419..aac54a1f8b 100644 --- a/content/reference/services/SoftLayer_Compliance_Report_Type/getObject.md +++ b/content/reference/services/SoftLayer_Compliance_Report_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Compliance_Report_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Compliance_Report_Type/{SoftLayer_Compliance_Report_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getAllObjects.md b/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getAllObjects.md index 7fba93ed59..5c8a40362a 100644 --- a/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Storage_Group_Array_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Storage_Group_Array_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getHardwareComponentModels.md b/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getHardwareComponentModels.md index 85f0b383b5..a8a65768ab 100644 --- a/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getHardwareComponentModels.md +++ b/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getHardwareComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Storage_Group_Array_Type" --- -### Curl Example +# [REST Example](#getHardwareComponentModels-example) {#getHardwareComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Storage_Group_Array_Type/{SoftLayer_Configuration_Storage_Group_Array_TypeID}/getHardwareComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getObject.md b/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getObject.md index 882f600272..54244f8048 100644 --- a/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Storage_Group_Array_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Storage_Group_Array_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Storage_Group_Array_Type/{SoftLayer_Configuration_Storage_Group_Array_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/copyTemplate.md b/content/reference/services/SoftLayer_Configuration_Template/copyTemplate.md index e10ac0be48..9d1ce2ef0c 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/copyTemplate.md +++ b/content/reference/services/SoftLayer_Configuration_Template/copyTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#copyTemplate-example) {#copyTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Configuration_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Configuration_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/copyTemplate' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/deleteObject.md b/content/reference/services/SoftLayer_Configuration_Template/deleteObject.md index 2f446964f6..32ebfc62ec 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/deleteObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/editObject.md b/content/reference/services/SoftLayer_Configuration_Template/editObject.md index 1c88acdba3..ca914d9aba 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/editObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Configuration_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Configuration_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getAccount.md b/content/reference/services/SoftLayer_Configuration_Template/getAccount.md index 8e951edd8f..118045927e 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getAccount.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getAllObjects.md b/content/reference/services/SoftLayer_Configuration_Template/getAllObjects.md index a6ae12048d..9c3ecd75ab 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getAllObjects.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getConfigurationSections.md b/content/reference/services/SoftLayer_Configuration_Template/getConfigurationSections.md index d09f730c31..ab78d20767 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getConfigurationSections.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getConfigurationSections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getConfigurationSections-example) {#getConfigurationSections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getConfigurationSections' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getDefaultValues.md b/content/reference/services/SoftLayer_Configuration_Template/getDefaultValues.md index 4d4b13b752..e753dc31f7 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getDefaultValues.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getDefaultValues.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getDefaultValues-example) {#getDefaultValues-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getDefaultValues' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getDefinitions.md b/content/reference/services/SoftLayer_Configuration_Template/getDefinitions.md index e4d603e9da..8b416d13e8 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getDefinitions.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getDefinitions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getDefinitions-example) {#getDefinitions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getDefinitions' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getItem.md b/content/reference/services/SoftLayer_Configuration_Template/getItem.md index 02e947aea3..18492e7eac 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getItem.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getLinkedSectionReferences.md b/content/reference/services/SoftLayer_Configuration_Template/getLinkedSectionReferences.md index 9c8794953c..436d9e1026 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getLinkedSectionReferences.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getLinkedSectionReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getLinkedSectionReferences-example) {#getLinkedSectionReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getLinkedSectionReferences' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getObject.md b/content/reference/services/SoftLayer_Configuration_Template/getObject.md index 5600ba05da..d1b8c47f29 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getParent.md b/content/reference/services/SoftLayer_Configuration_Template/getParent.md index 2775fa784f..d3556935d1 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getParent.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/getUser.md b/content/reference/services/SoftLayer_Configuration_Template/getUser.md index fec4a6f500..dae60b7339 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/getUser.md +++ b/content/reference/services/SoftLayer_Configuration_Template/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template/updateDefaultValues.md b/content/reference/services/SoftLayer_Configuration_Template/updateDefaultValues.md index 2f83f6b58a..730d8b8a08 100644 --- a/content/reference/services/SoftLayer_Configuration_Template/updateDefaultValues.md +++ b/content/reference/services/SoftLayer_Configuration_Template/updateDefaultValues.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template" --- -### Curl Example +# [REST Example](#updateDefaultValues-example) {#updateDefaultValues-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Configuration_Template_Section_Definition_Value]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Configuration_Template_Section_Definition_Value]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template/{SoftLayer_Configuration_TemplateID}/updateDefaultValues' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getDefinitions.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getDefinitions.md index a0a968ce72..a73b8fe238 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getDefinitions.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getDefinitions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getDefinitions-example) {#getDefinitions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getDefinitions' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getDisallowedDeletionFlag.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getDisallowedDeletionFlag.md index 74f339a9fc..f4348b7d6e 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getDisallowedDeletionFlag.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getDisallowedDeletionFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getDisallowedDeletionFlag-example) {#getDisallowedDeletionFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getDisallowedDeletionFlag' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplate.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplate.md index d04b9af93b..0543adc9e1 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplate.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getLinkedTemplate-example) {#getLinkedTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getLinkedTemplate' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplateReference.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplateReference.md index a533f36a98..f9aaa4f3b9 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplateReference.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getLinkedTemplateReference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getLinkedTemplateReference-example) {#getLinkedTemplateReference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getLinkedTemplateReference' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getObject.md index fa19ea3d7b..95429f56c9 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getProfiles.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getProfiles.md index 20ddc603af..7455a4c837 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getProfiles.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getProfiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getProfiles-example) {#getProfiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getProfiles' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionType.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionType.md index a5d48d5900..1d05007a7f 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionType.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getSectionType-example) {#getSectionType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getSectionType' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionTypeName.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionTypeName.md index d8dfb0565c..e6fb51471e 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionTypeName.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getSectionTypeName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getSectionTypeName-example) {#getSectionTypeName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getSectionTypeName' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getSubSections.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getSubSections.md index 426e992518..e6335d6074 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getSubSections.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getSubSections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getSubSections-example) {#getSubSections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getSubSections' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/getTemplate.md b/content/reference/services/SoftLayer_Configuration_Template_Section/getTemplate.md index 79753c7cdc..3b68e8bbd9 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/getTemplate.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/getTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#getTemplate-example) {#getTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/getTemplate' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section/hasSubSections.md b/content/reference/services/SoftLayer_Configuration_Template_Section/hasSubSections.md index 267966ea6f..639e9e2511 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section/hasSubSections.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section/hasSubSections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section" --- -### Curl Example +# [REST Example](#hasSubSections-example) {#hasSubSections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section/{SoftLayer_Configuration_Template_SectionID}/hasSubSections' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getAttributes.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getAttributes.md index 4b21cf97bd..76ba71b73c 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getAttributes.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getDefaultValue.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getDefaultValue.md index 93d0ce0aa4..9160265d58 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getDefaultValue.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getDefaultValue.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getDefaultValue-example) {#getDefaultValue-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getDefaultValue' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getGroup.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getGroup.md index 2961bea334..2ecaf803ac 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getGroup.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getGroup-example) {#getGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getGroup' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getMonitoringDataFlag.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getMonitoringDataFlag.md index f554869f21..617baf0816 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getMonitoringDataFlag.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getMonitoringDataFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getMonitoringDataFlag-example) {#getMonitoringDataFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getMonitoringDataFlag' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getObject.md index c41ac525a2..8eb31e360b 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getSection.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getSection.md index 2e531380e9..94774f1057 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getSection.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getSection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getSection-example) {#getSection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getSection' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getValueType.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getValueType.md index 399b6543e2..4a2bc4473f 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getValueType.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition/getValueType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition" --- -### Curl Example +# [REST Example](#getValueType-example) {#getValueType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition/{SoftLayer_Configuration_Template_Section_DefinitionID}/getValueType' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getAllGroups.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getAllGroups.md index c8cd7751df..012d7e5f83 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getAllGroups.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getAllGroups.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Group" --- -### Curl Example +# [REST Example](#getAllGroups-example) {#getAllGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Group/getAllGroups' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getObject.md index 6628dbd001..92d15879c4 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Group/{SoftLayer_Configuration_Template_Section_Definition_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getParent.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getParent.md index 173baec812..09355c2e00 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getParent.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Group/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Group" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Group/{SoftLayer_Configuration_Template_Section_Definition_GroupID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Type/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Type/getObject.md index a24d765d99..77d986370a 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Type/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Type/{SoftLayer_Configuration_Template_Section_Definition_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getDefinition.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getDefinition.md index 65b5cff2ec..41d433d2e0 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getDefinition.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getDefinition.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Value" --- -### Curl Example +# [REST Example](#getDefinition-example) {#getDefinition-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Value/{SoftLayer_Configuration_Template_Section_Definition_ValueID}/getDefinition' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getObject.md index a008a4bfba..909af65064 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Value" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Value/{SoftLayer_Configuration_Template_Section_Definition_ValueID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getTemplate.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getTemplate.md index e39c6c03a1..9a5464f3b6 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getTemplate.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Definition_Value/getTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Definition_Value" --- -### Curl Example +# [REST Example](#getTemplate-example) {#getTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Definition_Value/{SoftLayer_Configuration_Template_Section_Definition_ValueID}/getTemplate' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getConfigurationSection.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getConfigurationSection.md index 442b8e5dbe..c020ebc324 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getConfigurationSection.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getConfigurationSection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Profile" --- -### Curl Example +# [REST Example](#getConfigurationSection-example) {#getConfigurationSection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Profile/{SoftLayer_Configuration_Template_Section_ProfileID}/getConfigurationSection' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getObject.md index 0d62fa6531..bc8f57edc5 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Profile/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Profile" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Profile/{SoftLayer_Configuration_Template_Section_ProfileID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getObject.md index c45be83379..4567bf371b 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Reference" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Reference/{SoftLayer_Configuration_Template_Section_ReferenceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getSection.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getSection.md index fcd1ee4d4a..034cf711dc 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getSection.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getSection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Reference" --- -### Curl Example +# [REST Example](#getSection-example) {#getSection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Reference/{SoftLayer_Configuration_Template_Section_ReferenceID}/getSection' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getTemplate.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getTemplate.md index a5ea04c3e0..6d49fa7453 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getTemplate.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Reference/getTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Reference" --- -### Curl Example +# [REST Example](#getTemplate-example) {#getTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Reference/{SoftLayer_Configuration_Template_Section_ReferenceID}/getTemplate' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Section_Type/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Section_Type/getObject.md index baa41747d1..756731d9b6 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Section_Type/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Section_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Section_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Section_Type/{SoftLayer_Configuration_Template_Section_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Configuration_Template_Type/getObject.md b/content/reference/services/SoftLayer_Configuration_Template_Type/getObject.md index 7036201a42..e3f6a83fee 100644 --- a/content/reference/services/SoftLayer_Configuration_Template_Type/getObject.md +++ b/content/reference/services/SoftLayer_Configuration_Template_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Configuration_Template_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Configuration_Template_Type/{SoftLayer_Configuration_Template_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createARecord.md b/content/reference/services/SoftLayer_Dns_Domain/createARecord.md index 1b2911d1f9..1b9a532af3 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createARecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createARecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createARecord-example) {#createARecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createARecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createAaaaRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createAaaaRecord.md index 7a5187dfe1..6d57a96ff5 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createAaaaRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createAaaaRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createAaaaRecord-example) {#createAaaaRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createAaaaRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createCnameRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createCnameRecord.md index a367c1a8b0..f110e548e8 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createCnameRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createCnameRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createCnameRecord-example) {#createCnameRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createCnameRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createMxRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createMxRecord.md index 2efbecfbeb..65323ff2c6 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createMxRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createMxRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createMxRecord-example) {#createMxRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createMxRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createNsRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createNsRecord.md index 6f9925a6a6..967079dbdd 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createNsRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createNsRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createNsRecord-example) {#createNsRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createNsRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createObject.md b/content/reference/services/SoftLayer_Dns_Domain/createObject.md index 64124b389d..e8248ed80e 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createObject.md @@ -29,8 +29,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/createObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createObjects.md b/content/reference/services/SoftLayer_Dns_Domain/createObjects.md index b482aaedb2..88ecc1e8a6 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createPtrRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createPtrRecord.md index 5960c6c0bd..de45dc7a27 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createPtrRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createPtrRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createPtrRecord-example) {#createPtrRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/createPtrRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createSpfRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createSpfRecord.md index 1749aa2f60..9bb35e1bf5 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createSpfRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createSpfRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createSpfRecord-example) {#createSpfRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createSpfRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/createTxtRecord.md b/content/reference/services/SoftLayer_Dns_Domain/createTxtRecord.md index 67f4ad6b4e..6986bd87dd 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/createTxtRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/createTxtRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#createTxtRecord-example) {#createTxtRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/createTxtRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/deleteObject.md b/content/reference/services/SoftLayer_Dns_Domain/deleteObject.md index 47be4d05ee..ac4eefcc33 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/deleteObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getAccount.md b/content/reference/services/SoftLayer_Dns_Domain/getAccount.md index a198aee88d..4901d9eedf 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getAccount.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getByDomainName.md b/content/reference/services/SoftLayer_Dns_Domain/getByDomainName.md index f6a8de3cb8..3190638214 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getByDomainName.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getByDomainName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getByDomainName-example) {#getByDomainName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/getByDomainName' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Dns_Domain/getManagedResourceFlag.md index a02e677a09..0e772711b2 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getObject.md b/content/reference/services/SoftLayer_Dns_Domain/getObject.md index 2440a3cdc9..d57802737b 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getResourceRecords.md b/content/reference/services/SoftLayer_Dns_Domain/getResourceRecords.md index f521cb58da..9253434e9b 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getResourceRecords.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getResourceRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getResourceRecords-example) {#getResourceRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getResourceRecords' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getSecondary.md b/content/reference/services/SoftLayer_Dns_Domain/getSecondary.md index 0c5cde6ff9..7b61811324 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getSecondary.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getSecondary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getSecondary-example) {#getSecondary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getSecondary' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getSoaResourceRecord.md b/content/reference/services/SoftLayer_Dns_Domain/getSoaResourceRecord.md index 28603a4f08..893fb8e5e9 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getSoaResourceRecord.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getSoaResourceRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getSoaResourceRecord-example) {#getSoaResourceRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getSoaResourceRecord' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain/getZoneFileContents.md b/content/reference/services/SoftLayer_Dns_Domain/getZoneFileContents.md index 8007f91938..d6e28edb1a 100644 --- a/content/reference/services/SoftLayer_Dns_Domain/getZoneFileContents.md +++ b/content/reference/services/SoftLayer_Dns_Domain/getZoneFileContents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain" --- -### Curl Example +# [REST Example](#getZoneFileContents-example) {#getZoneFileContents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain/{SoftLayer_Dns_DomainID}/getZoneFileContents' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/addNameserversToDomain.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/addNameserversToDomain.md index 2ecd17ad76..266ff0a7c8 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/addNameserversToDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/addNameserversToDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#addNameserversToDomain-example) {#addNameserversToDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/addNameserversToDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/deleteRegisteredNameserver.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/deleteRegisteredNameserver.md index eaea57c1da..a3fbc6952f 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/deleteRegisteredNameserver.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/deleteRegisteredNameserver.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#deleteRegisteredNameserver-example) {#deleteRegisteredNameserver-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/deleteRegisteredNameserver' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getAccount.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getAccount.md index 45d5a165c1..9009745d98 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getAccount.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getAuthenticationCode.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getAuthenticationCode.md index c64db938b0..b9718b683d 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getAuthenticationCode.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getAuthenticationCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getAuthenticationCode-example) {#getAuthenticationCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getAuthenticationCode' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainInformation.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainInformation.md index 537702b4a7..02cdad7b1e 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainInformation.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getDomainInformation-example) {#getDomainInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getDomainInformation' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainNameservers.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainNameservers.md index 44f699b4f0..ed1c0eb773 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainNameservers.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainNameservers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getDomainNameservers-example) {#getDomainNameservers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getDomainNameservers' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainRegistrationStatus.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainRegistrationStatus.md index a873782325..fddb2c8dd9 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainRegistrationStatus.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getDomainRegistrationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getDomainRegistrationStatus-example) {#getDomainRegistrationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getDomainRegistrationStatus' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getExtendedAttributes.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getExtendedAttributes.md index da4652a92a..c096ba4673 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getExtendedAttributes.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getExtendedAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getExtendedAttributes-example) {#getExtendedAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/getExtendedAttributes' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getObject.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getObject.md index 189a13289f..e5f1b42e71 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegisteredNameserver.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegisteredNameserver.md index bbb54154d9..c2bb0ce2e2 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegisteredNameserver.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegisteredNameserver.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getRegisteredNameserver-example) {#getRegisteredNameserver-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getRegisteredNameserver' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatus.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatus.md index 3ae439b8d2..70fd0df2f7 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatus.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getRegistrantVerificationStatus-example) {#getRegistrantVerificationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getRegistrantVerificationStatus' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatusDetail.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatusDetail.md index fa706feeef..1d09a9fd17 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatusDetail.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getRegistrantVerificationStatusDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getRegistrantVerificationStatusDetail-example) {#getRegistrantVerificationStatusDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getRegistrantVerificationStatusDetail' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getServiceProvider.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getServiceProvider.md index 7fdb94e9a4..4c2a0a3412 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/getTransferInformation.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/getTransferInformation.md index df8ba8f773..79c12317b8 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/getTransferInformation.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/getTransferInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#getTransferInformation-example) {#getTransferInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/getTransferInformation' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/lockDomain.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/lockDomain.md index a218e4945f..bf938fe5a4 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/lockDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/lockDomain.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#lockDomain-example) {#lockDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/lockDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/lookupDomain.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/lookupDomain.md index cda33c0ca0..d6edb181d3 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/lookupDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/lookupDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#lookupDomain-example) {#lookupDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/lookupDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyContact.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyContact.md index 4bb252cd4b..91efe84508 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyContact.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyContact.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#modifyContact-example) {#modifyContact-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Dns_Domain_Registration_Contact]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Dns_Domain_Registration_Contact]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/modifyContact' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyRegisteredNameserver.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyRegisteredNameserver.md index 9f2744b17d..f8e2b57252 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyRegisteredNameserver.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/modifyRegisteredNameserver.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#modifyRegisteredNameserver-example) {#modifyRegisteredNameserver-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/modifyRegisteredNameserver' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/registerNameserver.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/registerNameserver.md index 1bd818ef96..32fb84e79d 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/registerNameserver.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/registerNameserver.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#registerNameserver-example) {#registerNameserver-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/registerNameserver' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/removeNameserversFromDomain.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/removeNameserversFromDomain.md index d7e6783b3c..584da9bec7 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/removeNameserversFromDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/removeNameserversFromDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#removeNameserversFromDomain-example) {#removeNameserversFromDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/removeNameserversFromDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/sendAuthenticationCode.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/sendAuthenticationCode.md index 8bb4a46b69..d9eea31489 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/sendAuthenticationCode.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/sendAuthenticationCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#sendAuthenticationCode-example) {#sendAuthenticationCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/sendAuthenticationCode' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/sendRegistrantVerificationEmail.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/sendRegistrantVerificationEmail.md index bb9c964db3..a3a86379e7 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/sendRegistrantVerificationEmail.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/sendRegistrantVerificationEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#sendRegistrantVerificationEmail-example) {#sendRegistrantVerificationEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/sendRegistrantVerificationEmail' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/sendTransferApprovalEmail.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/sendTransferApprovalEmail.md index 24881e9de8..4f727fd75c 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/sendTransferApprovalEmail.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/sendTransferApprovalEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#sendTransferApprovalEmail-example) {#sendTransferApprovalEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/sendTransferApprovalEmail' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/setAuthenticationCode.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/setAuthenticationCode.md index f56282a481..b31539fc6d 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/setAuthenticationCode.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/setAuthenticationCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#setAuthenticationCode-example) {#setAuthenticationCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/setAuthenticationCode' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration/unlockDomain.md b/content/reference/services/SoftLayer_Dns_Domain_Registration/unlockDomain.md index bff0eb2d91..10e5b41ff1 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration/unlockDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration/unlockDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration" --- -### Curl Example +# [REST Example](#unlockDomain-example) {#unlockDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/{SoftLayer_Dns_Domain_RegistrationID}/unlockDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getAllObjects.md b/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getAllObjects.md index 1cc3366348..f558446b1e 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getAllObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getObject.md b/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getObject.md index eb05f71bd1..53d58f46f6 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration_Registrant_Verification_Status/{SoftLayer_Dns_Domain_Registration_Registrant_Verification_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getAllObjects.md b/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getAllObjects.md index c852110d26..7d7a7c923b 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getAllObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration_Status" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration_Status/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getObject.md b/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getObject.md index e3e2d34e1b..feaee654a3 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_Registration_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_Registration_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration_Status/{SoftLayer_Dns_Domain_Registration_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObject.md index d4dfe39463..0a55b24680 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/createObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObjects.md index ca0282379f..1f3565ea06 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/createObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObject.md index a2aeded8b4..cb4f841713 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/{SoftLayer_Dns_Domain_ResourceRecordID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObjects.md index 2058e30128..78f4ff0011 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/deleteObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObject.md index 21a4b8d510..74c4f38d87 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/{SoftLayer_Dns_Domain_ResourceRecordID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObjects.md index d00cbf4683..b4565fe57b 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/editObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getDomain.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getDomain.md index e9607cf349..2387362067 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#getDomain-example) {#getDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/{SoftLayer_Dns_Domain_ResourceRecordID}/getDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getObject.md index 26a110db48..aba2ae55a2 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord/{SoftLayer_Dns_Domain_ResourceRecordID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObject.md index 6e8eb4cf61..2dfaeb424b 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObjects.md index 739445d216..8b009c88fb 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObject.md index 343e243466..e25427df80 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/{SoftLayer_Dns_Domain_ResourceRecord_MxTypeID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObjects.md index 8962f9a0d2..3d3e8c7b64 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObject.md index 7e7294aa5b..07266959bf 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/{SoftLayer_Dns_Domain_ResourceRecord_MxTypeID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObjects.md index 7414a03eb1..ae2c631536 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_MxType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getDomain.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getDomain.md index ff3be6db14..703e971673 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#getDomain-example) {#getDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/{SoftLayer_Dns_Domain_ResourceRecord_MxTypeID}/getDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getObject.md index 857fde9738..21db74616a 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_MxType/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_MxType" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_MxType/{SoftLayer_Dns_Domain_ResourceRecord_MxTypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObject.md index f3d2a643be..be173e43c4 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObjects.md index f796920116..0e19337525 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObject.md index b9874cb02e..7cd2dfbb50 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/{SoftLayer_Dns_Domain_ResourceRecord_SrvTypeID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObjects.md index ac1cb5bec0..988690288b 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObject.md index 51dc3acd23..51f7789e8e 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/{SoftLayer_Dns_Domain_ResourceRecord_SrvTypeID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObjects.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObjects.md index 64009fe0ef..432615db20 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObjects.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Domain_ResourceRecord_SrvType]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getDomain.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getDomain.md index e251bb06a2..6e827b6a18 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getDomain.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#getDomain-example) {#getDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/{SoftLayer_Dns_Domain_ResourceRecord_SrvTypeID}/getDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getObject.md b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getObject.md index afe42d8d5a..6a91b6ccdf 100644 --- a/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Domain_ResourceRecord_SrvType/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Domain_ResourceRecord_SrvType" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_ResourceRecord_SrvType/{SoftLayer_Dns_Domain_ResourceRecord_SrvTypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/convertToPrimary.md b/content/reference/services/SoftLayer_Dns_Secondary/convertToPrimary.md index a251beab8c..60641f6bae 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/convertToPrimary.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/convertToPrimary.md @@ -27,8 +27,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#convertToPrimary-example) {#convertToPrimary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/convertToPrimary' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/createObject.md b/content/reference/services/SoftLayer_Dns_Secondary/createObject.md index 873e348f8b..7de3860e72 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/createObject.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Secondary]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Secondary]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/createObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/createObjects.md b/content/reference/services/SoftLayer_Dns_Secondary/createObjects.md index 7847da413f..69b206594e 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/createObjects.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Secondary]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Secondary]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/deleteObject.md b/content/reference/services/SoftLayer_Dns_Secondary/deleteObject.md index ff618f501c..5d3016b9d6 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/deleteObject.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/editObject.md b/content/reference/services/SoftLayer_Dns_Secondary/editObject.md index cec2722e01..d28f6210d2 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/editObject.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Secondary]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Dns_Secondary]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/getAccount.md b/content/reference/services/SoftLayer_Dns_Secondary/getAccount.md index 5120c2c3e8..f7a2d52058 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/getAccount.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/getByDomainName.md b/content/reference/services/SoftLayer_Dns_Secondary/getByDomainName.md index dd1ea1fae7..208a76fb5d 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/getByDomainName.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/getByDomainName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#getByDomainName-example) {#getByDomainName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/getByDomainName' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/getDomain.md b/content/reference/services/SoftLayer_Dns_Secondary/getDomain.md index fa84b1e99f..3874d88ff1 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/getDomain.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/getDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#getDomain-example) {#getDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/getDomain' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/getErrorMessages.md b/content/reference/services/SoftLayer_Dns_Secondary/getErrorMessages.md index 835d1c8747..7b737051f0 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/getErrorMessages.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/getErrorMessages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#getErrorMessages-example) {#getErrorMessages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/getErrorMessages' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/getObject.md b/content/reference/services/SoftLayer_Dns_Secondary/getObject.md index 45efcf5f36..2c93c977e2 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/getObject.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/getStatus.md b/content/reference/services/SoftLayer_Dns_Secondary/getStatus.md index 42909178ba..887faca4db 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/getStatus.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Dns_Secondary/transferNow.md b/content/reference/services/SoftLayer_Dns_Secondary/transferNow.md index 0519f48b10..3b783dad4a 100644 --- a/content/reference/services/SoftLayer_Dns_Secondary/transferNow.md +++ b/content/reference/services/SoftLayer_Dns_Secondary/transferNow.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Dns_Secondary" --- -### Curl Example +# [REST Example](#transferNow-example) {#transferNow-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Secondary/{SoftLayer_Dns_SecondaryID}/transferNow' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription/disable.md b/content/reference/services/SoftLayer_Email_Subscription/disable.md index 1900f2b821..cc1d0f39e8 100644 --- a/content/reference/services/SoftLayer_Email_Subscription/disable.md +++ b/content/reference/services/SoftLayer_Email_Subscription/disable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription" --- -### Curl Example +# [REST Example](#disable-example) {#disable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription/{SoftLayer_Email_SubscriptionID}/disable' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription/enable.md b/content/reference/services/SoftLayer_Email_Subscription/enable.md index e134de8ebf..4c7f523e6e 100644 --- a/content/reference/services/SoftLayer_Email_Subscription/enable.md +++ b/content/reference/services/SoftLayer_Email_Subscription/enable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription" --- -### Curl Example +# [REST Example](#enable-example) {#enable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription/{SoftLayer_Email_SubscriptionID}/enable' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription/getAllObjects.md b/content/reference/services/SoftLayer_Email_Subscription/getAllObjects.md index d8f77655e7..c99fa0ebde 100644 --- a/content/reference/services/SoftLayer_Email_Subscription/getAllObjects.md +++ b/content/reference/services/SoftLayer_Email_Subscription/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription/getEnabled.md b/content/reference/services/SoftLayer_Email_Subscription/getEnabled.md index 8190e150c3..498f785e99 100644 --- a/content/reference/services/SoftLayer_Email_Subscription/getEnabled.md +++ b/content/reference/services/SoftLayer_Email_Subscription/getEnabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription" --- -### Curl Example +# [REST Example](#getEnabled-example) {#getEnabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription/{SoftLayer_Email_SubscriptionID}/getEnabled' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription/getObject.md b/content/reference/services/SoftLayer_Email_Subscription/getObject.md index 3c736f22c5..e387193ceb 100644 --- a/content/reference/services/SoftLayer_Email_Subscription/getObject.md +++ b/content/reference/services/SoftLayer_Email_Subscription/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription/{SoftLayer_Email_SubscriptionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription_Group/getAllObjects.md b/content/reference/services/SoftLayer_Email_Subscription_Group/getAllObjects.md index c8f726e42a..38229cfdfe 100644 --- a/content/reference/services/SoftLayer_Email_Subscription_Group/getAllObjects.md +++ b/content/reference/services/SoftLayer_Email_Subscription_Group/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription_Group" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription_Group/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription_Group/getObject.md b/content/reference/services/SoftLayer_Email_Subscription_Group/getObject.md index fed149b16f..7207b2019d 100644 --- a/content/reference/services/SoftLayer_Email_Subscription_Group/getObject.md +++ b/content/reference/services/SoftLayer_Email_Subscription_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription_Group/{SoftLayer_Email_Subscription_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Email_Subscription_Group/getSubscriptions.md b/content/reference/services/SoftLayer_Email_Subscription_Group/getSubscriptions.md index fbd28359be..4a68b3beff 100644 --- a/content/reference/services/SoftLayer_Email_Subscription_Group/getSubscriptions.md +++ b/content/reference/services/SoftLayer_Email_Subscription_Group/getSubscriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Email_Subscription_Group" --- -### Curl Example +# [REST Example](#getSubscriptions-example) {#getSubscriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Email_Subscription_Group/{SoftLayer_Email_Subscription_GroupID}/getSubscriptions' ``` diff --git a/content/reference/services/SoftLayer_Event_Log/getAllEventNames.md b/content/reference/services/SoftLayer_Event_Log/getAllEventNames.md index 10ccddc318..7ea32a9eda 100644 --- a/content/reference/services/SoftLayer_Event_Log/getAllEventNames.md +++ b/content/reference/services/SoftLayer_Event_Log/getAllEventNames.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Event_Log" --- -### Curl Example +# [REST Example](#getAllEventNames-example) {#getAllEventNames-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Event_Log/getAllEventNames' ``` diff --git a/content/reference/services/SoftLayer_Event_Log/getAllEventObjectNames.md b/content/reference/services/SoftLayer_Event_Log/getAllEventObjectNames.md index 82f1c6d30e..d96e223b84 100644 --- a/content/reference/services/SoftLayer_Event_Log/getAllEventObjectNames.md +++ b/content/reference/services/SoftLayer_Event_Log/getAllEventObjectNames.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Event_Log" --- -### Curl Example +# [REST Example](#getAllEventObjectNames-example) {#getAllEventObjectNames-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Event_Log/getAllEventObjectNames' ``` diff --git a/content/reference/services/SoftLayer_Event_Log/getAllObjects.md b/content/reference/services/SoftLayer_Event_Log/getAllObjects.md index a29e350c94..f76cc97a1c 100644 --- a/content/reference/services/SoftLayer_Event_Log/getAllObjects.md +++ b/content/reference/services/SoftLayer_Event_Log/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Event_Log" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Event_Log/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Event_Log/getAllUserTypes.md b/content/reference/services/SoftLayer_Event_Log/getAllUserTypes.md index e7047939fd..81323c4e0d 100644 --- a/content/reference/services/SoftLayer_Event_Log/getAllUserTypes.md +++ b/content/reference/services/SoftLayer_Event_Log/getAllUserTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Event_Log" --- -### Curl Example +# [REST Example](#getAllUserTypes-example) {#getAllUserTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Event_Log/getAllUserTypes' ``` diff --git a/content/reference/services/SoftLayer_Event_Log/getUser.md b/content/reference/services/SoftLayer_Event_Log/getUser.md index 760be8086c..4731666843 100644 --- a/content/reference/services/SoftLayer_Event_Log/getUser.md +++ b/content/reference/services/SoftLayer_Event_Log/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Event_Log" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Event_Log/{SoftLayer_Event_LogID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_FlexibleCredit_Program/getAffiliatesAvailableForSelfEnrollmentByVerificationType.md b/content/reference/services/SoftLayer_FlexibleCredit_Program/getAffiliatesAvailableForSelfEnrollmentByVerificationType.md index e9ef7f6815..309e6ff09f 100644 --- a/content/reference/services/SoftLayer_FlexibleCredit_Program/getAffiliatesAvailableForSelfEnrollmentByVerificationType.md +++ b/content/reference/services/SoftLayer_FlexibleCredit_Program/getAffiliatesAvailableForSelfEnrollmentByVerificationType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_FlexibleCredit_Program" --- -### Curl Example +# [REST Example](#getAffiliatesAvailableForSelfEnrollmentByVerificationType-example) {#getAffiliatesAvailableForSelfEnrollmentByVerificationType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_FlexibleCredit_Program/{SoftLayer_FlexibleCredit_ProgramID}/getAffiliatesAvailableForSelfEnrollmentByVerificationType' ``` diff --git a/content/reference/services/SoftLayer_FlexibleCredit_Program/getCompanyTypes.md b/content/reference/services/SoftLayer_FlexibleCredit_Program/getCompanyTypes.md index be758fdf2d..2578c9176d 100644 --- a/content/reference/services/SoftLayer_FlexibleCredit_Program/getCompanyTypes.md +++ b/content/reference/services/SoftLayer_FlexibleCredit_Program/getCompanyTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_FlexibleCredit_Program" --- -### Curl Example +# [REST Example](#getCompanyTypes-example) {#getCompanyTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_FlexibleCredit_Program/getCompanyTypes' ``` diff --git a/content/reference/services/SoftLayer_FlexibleCredit_Program/getObject.md b/content/reference/services/SoftLayer_FlexibleCredit_Program/getObject.md index ca85bded0d..f7ff136362 100644 --- a/content/reference/services/SoftLayer_FlexibleCredit_Program/getObject.md +++ b/content/reference/services/SoftLayer_FlexibleCredit_Program/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_FlexibleCredit_Program" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_FlexibleCredit_Program/{SoftLayer_FlexibleCredit_ProgramID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_FlexibleCredit_Program/selfEnrollNewAccount.md b/content/reference/services/SoftLayer_FlexibleCredit_Program/selfEnrollNewAccount.md index 0de32a82e7..7d77ed6ad2 100644 --- a/content/reference/services/SoftLayer_FlexibleCredit_Program/selfEnrollNewAccount.md +++ b/content/reference/services/SoftLayer_FlexibleCredit_Program/selfEnrollNewAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_FlexibleCredit_Program" --- -### Curl Example +# [REST Example](#selfEnrollNewAccount-example) {#selfEnrollNewAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Account]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_FlexibleCredit_Program/{SoftLayer_FlexibleCredit_ProgramID}/selfEnrollNewAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorage.md index bc57b92732..df2bb8dafd 100644 --- a/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorageList.md index 2cc534b015..7d86121cc6 100644 --- a/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware/captureImage.md b/content/reference/services/SoftLayer_Hardware/captureImage.md index baf355f388..441f2cafdc 100644 --- a/content/reference/services/SoftLayer_Hardware/captureImage.md +++ b/content/reference/services/SoftLayer_Hardware/captureImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#captureImage-example) {#captureImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/captureImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/createObject.md b/content/reference/services/SoftLayer_Hardware/createObject.md index bcc72b42c6..d7ded85a30 100644 --- a/content/reference/services/SoftLayer_Hardware/createObject.md +++ b/content/reference/services/SoftLayer_Hardware/createObject.md @@ -278,8 +278,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/createObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware/deleteObject.md b/content/reference/services/SoftLayer_Hardware/deleteObject.md index 1930af8d5c..0dcac854d2 100644 --- a/content/reference/services/SoftLayer_Hardware/deleteObject.md +++ b/content/reference/services/SoftLayer_Hardware/deleteObject.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware/deleteSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware/deleteSoftwareComponentPasswords.md index 4c71b38369..6c715b0e56 100644 --- a/content/reference/services/SoftLayer_Hardware/deleteSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware/deleteSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#deleteSoftwareComponentPasswords-example) {#deleteSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/deleteSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware/deleteTag.md b/content/reference/services/SoftLayer_Hardware/deleteTag.md index 6fae9e0b5b..b1a0d490c5 100644 --- a/content/reference/services/SoftLayer_Hardware/deleteTag.md +++ b/content/reference/services/SoftLayer_Hardware/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/editSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware/editSoftwareComponentPasswords.md index 7708205928..3155701191 100644 --- a/content/reference/services/SoftLayer_Hardware/editSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware/editSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#editSoftwareComponentPasswords-example) {#editSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/editSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware/executeRemoteScript.md b/content/reference/services/SoftLayer_Hardware/executeRemoteScript.md index 5caa833f8e..6519fda2a7 100644 --- a/content/reference/services/SoftLayer_Hardware/executeRemoteScript.md +++ b/content/reference/services/SoftLayer_Hardware/executeRemoteScript.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#executeRemoteScript-example) {#executeRemoteScript-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/executeRemoteScript' ``` diff --git a/content/reference/services/SoftLayer_Hardware/findByIpAddress.md b/content/reference/services/SoftLayer_Hardware/findByIpAddress.md index 96e988913e..c37a228337 100644 --- a/content/reference/services/SoftLayer_Hardware/findByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware/findByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#findByIpAddress-example) {#findByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/findByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware/generateOrderTemplate.md b/content/reference/services/SoftLayer_Hardware/generateOrderTemplate.md index a11a649c15..140fd10f37 100644 --- a/content/reference/services/SoftLayer_Hardware/generateOrderTemplate.md +++ b/content/reference/services/SoftLayer_Hardware/generateOrderTemplate.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#generateOrderTemplate-example) {#generateOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/generateOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAccount.md b/content/reference/services/SoftLayer_Hardware/getAccount.md index d0bcbbd8b1..f38f38e360 100644 --- a/content/reference/services/SoftLayer_Hardware/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getActiveComponents.md b/content/reference/services/SoftLayer_Hardware/getActiveComponents.md index 7ea7ecd4ed..fd9e5348b4 100644 --- a/content/reference/services/SoftLayer_Hardware/getActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getActiveComponents-example) {#getActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getActiveNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware/getActiveNetworkMonitorIncident.md index 7e0aa1d5f4..cfe69ec520 100644 --- a/content/reference/services/SoftLayer_Hardware/getActiveNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware/getActiveNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getActiveNetworkMonitorIncident-example) {#getActiveNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getActiveNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAllPowerComponents.md b/content/reference/services/SoftLayer_Hardware/getAllPowerComponents.md index d872e1f498..fcd7772aed 100644 --- a/content/reference/services/SoftLayer_Hardware/getAllPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getAllPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAllPowerComponents-example) {#getAllPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAllPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAllowedHost.md b/content/reference/services/SoftLayer_Hardware/getAllowedHost.md index 46b024b543..4c4f5878e5 100644 --- a/content/reference/services/SoftLayer_Hardware/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Hardware/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorage.md index 4ccebec39a..618b4e5b12 100644 --- a/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorageReplicas.md index 2b18a26f9e..50723ab4fc 100644 --- a/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Hardware/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAntivirusSpywareSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware/getAntivirusSpywareSoftwareComponent.md index f84550ae67..139b26e37f 100644 --- a/content/reference/services/SoftLayer_Hardware/getAntivirusSpywareSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getAntivirusSpywareSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAntivirusSpywareSoftwareComponent-example) {#getAntivirusSpywareSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAntivirusSpywareSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Hardware/getAttachedNetworkStorages.md index 236e7c081f..1c605406cc 100644 --- a/content/reference/services/SoftLayer_Hardware/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAttributes.md b/content/reference/services/SoftLayer_Hardware/getAttributes.md index 4fe6156003..806fdac025 100644 --- a/content/reference/services/SoftLayer_Hardware/getAttributes.md +++ b/content/reference/services/SoftLayer_Hardware/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAvailableBillingTermChangePrices.md b/content/reference/services/SoftLayer_Hardware/getAvailableBillingTermChangePrices.md index e3410ce3b9..f05e09d5d8 100644 --- a/content/reference/services/SoftLayer_Hardware/getAvailableBillingTermChangePrices.md +++ b/content/reference/services/SoftLayer_Hardware/getAvailableBillingTermChangePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAvailableBillingTermChangePrices-example) {#getAvailableBillingTermChangePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAvailableBillingTermChangePrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Hardware/getAvailableNetworkStorages.md index e6368b881d..74f01897ac 100644 --- a/content/reference/services/SoftLayer_Hardware/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware/getAverageDailyPublicBandwidthUsage.md index 1950fdb7c5..f48988cb3e 100644 --- a/content/reference/services/SoftLayer_Hardware/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBackendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware/getBackendIncomingBandwidth.md index 563b79772b..245f783979 100644 --- a/content/reference/services/SoftLayer_Hardware/getBackendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware/getBackendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBackendIncomingBandwidth-example) {#getBackendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBackendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware/getBackendNetworkComponents.md index 7bc1cccc54..144ded3777 100644 --- a/content/reference/services/SoftLayer_Hardware/getBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBackendNetworkComponents-example) {#getBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBackendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware/getBackendOutgoingBandwidth.md index 1cf91a1c08..e7414e0928 100644 --- a/content/reference/services/SoftLayer_Hardware/getBackendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware/getBackendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBackendOutgoingBandwidth-example) {#getBackendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBackendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBackendRouters.md b/content/reference/services/SoftLayer_Hardware/getBackendRouters.md index 1ba6c09c1c..d8427b41a8 100644 --- a/content/reference/services/SoftLayer_Hardware/getBackendRouters.md +++ b/content/reference/services/SoftLayer_Hardware/getBackendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBackendRouters-example) {#getBackendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBackendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware/getBandwidthAllocation.md index 45af9eeb10..3f4524087c 100644 --- a/content/reference/services/SoftLayer_Hardware/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBandwidthAllotmentDetail.md b/content/reference/services/SoftLayer_Hardware/getBandwidthAllotmentDetail.md index 5a321c4415..92307f7e7b 100644 --- a/content/reference/services/SoftLayer_Hardware/getBandwidthAllotmentDetail.md +++ b/content/reference/services/SoftLayer_Hardware/getBandwidthAllotmentDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentDetail-example) {#getBandwidthAllotmentDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBandwidthAllotmentDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBenchmarkCertifications.md b/content/reference/services/SoftLayer_Hardware/getBenchmarkCertifications.md index 82a7414fc3..67bc5de775 100644 --- a/content/reference/services/SoftLayer_Hardware/getBenchmarkCertifications.md +++ b/content/reference/services/SoftLayer_Hardware/getBenchmarkCertifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBenchmarkCertifications-example) {#getBenchmarkCertifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBenchmarkCertifications' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBillingItem.md b/content/reference/services/SoftLayer_Hardware/getBillingItem.md index f407f8e924..ab21fc147b 100644 --- a/content/reference/services/SoftLayer_Hardware/getBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware/getBillingItemFlag.md index 9334c2b865..b2042da010 100644 --- a/content/reference/services/SoftLayer_Hardware/getBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBillingItemFlag-example) {#getBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBlockCancelBecauseDisconnectedFlag.md b/content/reference/services/SoftLayer_Hardware/getBlockCancelBecauseDisconnectedFlag.md index 397ef51e39..d220efabd9 100644 --- a/content/reference/services/SoftLayer_Hardware/getBlockCancelBecauseDisconnectedFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getBlockCancelBecauseDisconnectedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBlockCancelBecauseDisconnectedFlag-example) {#getBlockCancelBecauseDisconnectedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBlockCancelBecauseDisconnectedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getBusinessContinuanceInsuranceFlag.md b/content/reference/services/SoftLayer_Hardware/getBusinessContinuanceInsuranceFlag.md index 7e4439b29b..dba16c409b 100644 --- a/content/reference/services/SoftLayer_Hardware/getBusinessContinuanceInsuranceFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getBusinessContinuanceInsuranceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getBusinessContinuanceInsuranceFlag-example) {#getBusinessContinuanceInsuranceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getBusinessContinuanceInsuranceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getChildrenHardware.md b/content/reference/services/SoftLayer_Hardware/getChildrenHardware.md index 3c2f95076e..0cd165b501 100644 --- a/content/reference/services/SoftLayer_Hardware/getChildrenHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getChildrenHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getChildrenHardware-example) {#getChildrenHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getChildrenHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getComponentDetailsXML.md b/content/reference/services/SoftLayer_Hardware/getComponentDetailsXML.md index e1b905c7ac..99df12ae52 100644 --- a/content/reference/services/SoftLayer_Hardware/getComponentDetailsXML.md +++ b/content/reference/services/SoftLayer_Hardware/getComponentDetailsXML.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getComponentDetailsXML-example) {#getComponentDetailsXML-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getComponentDetailsXML' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getComponents.md b/content/reference/services/SoftLayer_Hardware/getComponents.md index ec8ccea029..3cfa13aa93 100644 --- a/content/reference/services/SoftLayer_Hardware/getComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getComponents-example) {#getComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getContinuousDataProtectionSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware/getContinuousDataProtectionSoftwareComponent.md index 02073b4287..c086ee8865 100644 --- a/content/reference/services/SoftLayer_Hardware/getContinuousDataProtectionSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getContinuousDataProtectionSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getContinuousDataProtectionSoftwareComponent-example) {#getContinuousDataProtectionSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getContinuousDataProtectionSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getCreateObjectOptions.md b/content/reference/services/SoftLayer_Hardware/getCreateObjectOptions.md index 0197fa2e0b..9b10bb0871 100644 --- a/content/reference/services/SoftLayer_Hardware/getCreateObjectOptions.md +++ b/content/reference/services/SoftLayer_Hardware/getCreateObjectOptions.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getCreateObjectOptions-example) {#getCreateObjectOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/getCreateObjectOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getCurrentBillableBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware/getCurrentBillableBandwidthUsage.md index a6e7cac2b3..fcb9510910 100644 --- a/content/reference/services/SoftLayer_Hardware/getCurrentBillableBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware/getCurrentBillableBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getCurrentBillableBandwidthUsage-example) {#getCurrentBillableBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getCurrentBillableBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getCurrentBillingDetail.md b/content/reference/services/SoftLayer_Hardware/getCurrentBillingDetail.md index f9dab4ea59..9d2000b70c 100644 --- a/content/reference/services/SoftLayer_Hardware/getCurrentBillingDetail.md +++ b/content/reference/services/SoftLayer_Hardware/getCurrentBillingDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getCurrentBillingDetail-example) {#getCurrentBillingDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getCurrentBillingDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getCurrentBillingTotal.md b/content/reference/services/SoftLayer_Hardware/getCurrentBillingTotal.md index d5af36e430..b855d4e0c0 100644 --- a/content/reference/services/SoftLayer_Hardware/getCurrentBillingTotal.md +++ b/content/reference/services/SoftLayer_Hardware/getCurrentBillingTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getCurrentBillingTotal-example) {#getCurrentBillingTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getCurrentBillingTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDailyAverage.md b/content/reference/services/SoftLayer_Hardware/getDailyAverage.md index dc39f42fa8..bbf9428138 100644 --- a/content/reference/services/SoftLayer_Hardware/getDailyAverage.md +++ b/content/reference/services/SoftLayer_Hardware/getDailyAverage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDailyAverage-example) {#getDailyAverage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDailyAverage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDatacenter.md b/content/reference/services/SoftLayer_Hardware/getDatacenter.md index a3e860cea1..c1b02e517c 100644 --- a/content/reference/services/SoftLayer_Hardware/getDatacenter.md +++ b/content/reference/services/SoftLayer_Hardware/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDatacenterName.md b/content/reference/services/SoftLayer_Hardware/getDatacenterName.md index 81691a5a9b..0f6c80889c 100644 --- a/content/reference/services/SoftLayer_Hardware/getDatacenterName.md +++ b/content/reference/services/SoftLayer_Hardware/getDatacenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDatacenterName-example) {#getDatacenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDatacenterName' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDaysInSparePool.md b/content/reference/services/SoftLayer_Hardware/getDaysInSparePool.md index 61169d6ed6..04d63f5cc1 100644 --- a/content/reference/services/SoftLayer_Hardware/getDaysInSparePool.md +++ b/content/reference/services/SoftLayer_Hardware/getDaysInSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDaysInSparePool-example) {#getDaysInSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDaysInSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownlinkHardware.md b/content/reference/services/SoftLayer_Hardware/getDownlinkHardware.md index cae1538089..fe809874b2 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownlinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getDownlinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownlinkHardware-example) {#getDownlinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownlinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownlinkNetworkHardware.md b/content/reference/services/SoftLayer_Hardware/getDownlinkNetworkHardware.md index dc764773b5..dd89f44ce4 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownlinkNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getDownlinkNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownlinkNetworkHardware-example) {#getDownlinkNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownlinkNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownlinkServers.md b/content/reference/services/SoftLayer_Hardware/getDownlinkServers.md index 6a54060439..fd78b70891 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownlinkServers.md +++ b/content/reference/services/SoftLayer_Hardware/getDownlinkServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownlinkServers-example) {#getDownlinkServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownlinkServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownlinkVirtualGuests.md b/content/reference/services/SoftLayer_Hardware/getDownlinkVirtualGuests.md index 00867a3837..2412c61257 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownlinkVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware/getDownlinkVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownlinkVirtualGuests-example) {#getDownlinkVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownlinkVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownstreamHardwareBindings.md b/content/reference/services/SoftLayer_Hardware/getDownstreamHardwareBindings.md index 5ba66a8ee1..c9dbb9d4ee 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownstreamHardwareBindings.md +++ b/content/reference/services/SoftLayer_Hardware/getDownstreamHardwareBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownstreamHardwareBindings-example) {#getDownstreamHardwareBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownstreamHardwareBindings' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardware.md b/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardware.md index dedb62597d..9ef9e5de8c 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardware-example) {#getDownstreamNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownstreamNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardwareWithIncidents.md b/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardwareWithIncidents.md index 076da45187..9a61fc35f1 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardwareWithIncidents.md +++ b/content/reference/services/SoftLayer_Hardware/getDownstreamNetworkHardwareWithIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardwareWithIncidents-example) {#getDownstreamNetworkHardwareWithIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownstreamNetworkHardwareWithIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownstreamServers.md b/content/reference/services/SoftLayer_Hardware/getDownstreamServers.md index bc6e724eb5..a03d6a7754 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownstreamServers.md +++ b/content/reference/services/SoftLayer_Hardware/getDownstreamServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownstreamServers-example) {#getDownstreamServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownstreamServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDownstreamVirtualGuests.md b/content/reference/services/SoftLayer_Hardware/getDownstreamVirtualGuests.md index 546ba3a11a..8a8efe89a9 100644 --- a/content/reference/services/SoftLayer_Hardware/getDownstreamVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware/getDownstreamVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDownstreamVirtualGuests-example) {#getDownstreamVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDownstreamVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getDriveControllers.md b/content/reference/services/SoftLayer_Hardware/getDriveControllers.md index 4e05ad026f..ffef2272a7 100644 --- a/content/reference/services/SoftLayer_Hardware/getDriveControllers.md +++ b/content/reference/services/SoftLayer_Hardware/getDriveControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getDriveControllers-example) {#getDriveControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getDriveControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Hardware/getEvaultNetworkStorage.md index 4297c24c23..6dad4f33dd 100644 --- a/content/reference/services/SoftLayer_Hardware/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFirewallServiceComponent.md b/content/reference/services/SoftLayer_Hardware/getFirewallServiceComponent.md index 076bc67a52..db9de9bd9e 100644 --- a/content/reference/services/SoftLayer_Hardware/getFirewallServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getFirewallServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFirewallServiceComponent-example) {#getFirewallServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFirewallServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFixedConfigurationPreset.md b/content/reference/services/SoftLayer_Hardware/getFixedConfigurationPreset.md index 11898c6f58..3b97fdd2bf 100644 --- a/content/reference/services/SoftLayer_Hardware/getFixedConfigurationPreset.md +++ b/content/reference/services/SoftLayer_Hardware/getFixedConfigurationPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFixedConfigurationPreset-example) {#getFixedConfigurationPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFixedConfigurationPreset' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFrontendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware/getFrontendIncomingBandwidth.md index ce0f1951c6..1c45a6b6c7 100644 --- a/content/reference/services/SoftLayer_Hardware/getFrontendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware/getFrontendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFrontendIncomingBandwidth-example) {#getFrontendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFrontendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFrontendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware/getFrontendNetworkComponents.md index 899493b755..51859188e1 100644 --- a/content/reference/services/SoftLayer_Hardware/getFrontendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getFrontendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFrontendNetworkComponents-example) {#getFrontendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFrontendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFrontendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware/getFrontendOutgoingBandwidth.md index 173cb8bbd5..9d72955145 100644 --- a/content/reference/services/SoftLayer_Hardware/getFrontendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware/getFrontendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFrontendOutgoingBandwidth-example) {#getFrontendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFrontendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFrontendRouters.md b/content/reference/services/SoftLayer_Hardware/getFrontendRouters.md index c5487ba65b..11308d1538 100644 --- a/content/reference/services/SoftLayer_Hardware/getFrontendRouters.md +++ b/content/reference/services/SoftLayer_Hardware/getFrontendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFrontendRouters-example) {#getFrontendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFrontendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getFutureBillingItem.md b/content/reference/services/SoftLayer_Hardware/getFutureBillingItem.md index 933d8ec2ff..87e54df449 100644 --- a/content/reference/services/SoftLayer_Hardware/getFutureBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware/getFutureBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getFutureBillingItem-example) {#getFutureBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getFutureBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Hardware/getGlobalIdentifier.md index 0d755339ce..7f28e4d395 100644 --- a/content/reference/services/SoftLayer_Hardware/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Hardware/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHardDrives.md b/content/reference/services/SoftLayer_Hardware/getHardDrives.md index b742fb2f4b..aa7514268e 100644 --- a/content/reference/services/SoftLayer_Hardware/getHardDrives.md +++ b/content/reference/services/SoftLayer_Hardware/getHardDrives.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHardDrives-example) {#getHardDrives-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHardDrives' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHardwareChassis.md b/content/reference/services/SoftLayer_Hardware/getHardwareChassis.md index 5d3619a489..d5524c19c5 100644 --- a/content/reference/services/SoftLayer_Hardware/getHardwareChassis.md +++ b/content/reference/services/SoftLayer_Hardware/getHardwareChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHardwareChassis-example) {#getHardwareChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHardwareChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHardwareFunction.md b/content/reference/services/SoftLayer_Hardware/getHardwareFunction.md index 457a2cc218..a7c847fc99 100644 --- a/content/reference/services/SoftLayer_Hardware/getHardwareFunction.md +++ b/content/reference/services/SoftLayer_Hardware/getHardwareFunction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHardwareFunction-example) {#getHardwareFunction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHardwareFunction' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHardwareFunctionDescription.md b/content/reference/services/SoftLayer_Hardware/getHardwareFunctionDescription.md index 4a025ba82d..8d225da2ee 100644 --- a/content/reference/services/SoftLayer_Hardware/getHardwareFunctionDescription.md +++ b/content/reference/services/SoftLayer_Hardware/getHardwareFunctionDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHardwareFunctionDescription-example) {#getHardwareFunctionDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHardwareFunctionDescription' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHardwareState.md b/content/reference/services/SoftLayer_Hardware/getHardwareState.md index 74daca71f0..faa69ffd0e 100644 --- a/content/reference/services/SoftLayer_Hardware/getHardwareState.md +++ b/content/reference/services/SoftLayer_Hardware/getHardwareState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHardwareState-example) {#getHardwareState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHardwareState' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHardwareStatus.md b/content/reference/services/SoftLayer_Hardware/getHardwareStatus.md index d3ccf79f89..d2036e4dc4 100644 --- a/content/reference/services/SoftLayer_Hardware/getHardwareStatus.md +++ b/content/reference/services/SoftLayer_Hardware/getHardwareStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHardwareStatus-example) {#getHardwareStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHardwareStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHasTrustedPlatformModuleBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware/getHasTrustedPlatformModuleBillingItemFlag.md index 3525b7d042..f95c80048a 100644 --- a/content/reference/services/SoftLayer_Hardware/getHasTrustedPlatformModuleBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getHasTrustedPlatformModuleBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHasTrustedPlatformModuleBillingItemFlag-example) {#getHasTrustedPlatformModuleBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHasTrustedPlatformModuleBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHostIpsSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware/getHostIpsSoftwareComponent.md index c90cfac00b..38ff8e5f98 100644 --- a/content/reference/services/SoftLayer_Hardware/getHostIpsSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getHostIpsSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHostIpsSoftwareComponent-example) {#getHostIpsSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHostIpsSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHourlyBandwidth.md b/content/reference/services/SoftLayer_Hardware/getHourlyBandwidth.md index 59dc579c52..f0f719cf9b 100644 --- a/content/reference/services/SoftLayer_Hardware/getHourlyBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware/getHourlyBandwidth.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHourlyBandwidth-example) {#getHourlyBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHourlyBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getHourlyBillingFlag.md b/content/reference/services/SoftLayer_Hardware/getHourlyBillingFlag.md index 6a38dd8e51..3ee12939d5 100644 --- a/content/reference/services/SoftLayer_Hardware/getHourlyBillingFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getHourlyBillingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getHourlyBillingFlag-example) {#getHourlyBillingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getHourlyBillingFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getInboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware/getInboundBandwidthUsage.md index c758e47acd..bab9c1960b 100644 --- a/content/reference/services/SoftLayer_Hardware/getInboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware/getInboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getInboundBandwidthUsage-example) {#getInboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getInboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware/getInboundPublicBandwidthUsage.md index aec642106b..8564f53cab 100644 --- a/content/reference/services/SoftLayer_Hardware/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getIsBillingTermChangeAvailableFlag.md b/content/reference/services/SoftLayer_Hardware/getIsBillingTermChangeAvailableFlag.md index 1cebd5be3c..0f08450600 100644 --- a/content/reference/services/SoftLayer_Hardware/getIsBillingTermChangeAvailableFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getIsBillingTermChangeAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getIsBillingTermChangeAvailableFlag-example) {#getIsBillingTermChangeAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getIsBillingTermChangeAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getLastTransaction.md b/content/reference/services/SoftLayer_Hardware/getLastTransaction.md index ac46816ea9..9b16e0babd 100644 --- a/content/reference/services/SoftLayer_Hardware/getLastTransaction.md +++ b/content/reference/services/SoftLayer_Hardware/getLastTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getLastTransaction-example) {#getLastTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getLastTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getLatestNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware/getLatestNetworkMonitorIncident.md index a21477633f..df119f9e47 100644 --- a/content/reference/services/SoftLayer_Hardware/getLatestNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware/getLatestNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getLatestNetworkMonitorIncident-example) {#getLatestNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getLatestNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getLocation.md b/content/reference/services/SoftLayer_Hardware/getLocation.md index fa0c5d4195..3f0a52ee72 100644 --- a/content/reference/services/SoftLayer_Hardware/getLocation.md +++ b/content/reference/services/SoftLayer_Hardware/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getLocationPathString.md b/content/reference/services/SoftLayer_Hardware/getLocationPathString.md index d93cbfdce2..6783b8aaab 100644 --- a/content/reference/services/SoftLayer_Hardware/getLocationPathString.md +++ b/content/reference/services/SoftLayer_Hardware/getLocationPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getLocationPathString-example) {#getLocationPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getLocationPathString' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getLockboxNetworkStorage.md b/content/reference/services/SoftLayer_Hardware/getLockboxNetworkStorage.md index ca7b253e5e..bdc11f4038 100644 --- a/content/reference/services/SoftLayer_Hardware/getLockboxNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware/getLockboxNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getLockboxNetworkStorage-example) {#getLockboxNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getLockboxNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Hardware/getManagedResourceFlag.md index f8d9a9426f..493f5d9c24 100644 --- a/content/reference/services/SoftLayer_Hardware/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMemory.md b/content/reference/services/SoftLayer_Hardware/getMemory.md index a34b2ae532..fc89a04eb1 100644 --- a/content/reference/services/SoftLayer_Hardware/getMemory.md +++ b/content/reference/services/SoftLayer_Hardware/getMemory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMemory-example) {#getMemory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMemory' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMemoryCapacity.md b/content/reference/services/SoftLayer_Hardware/getMemoryCapacity.md index 46adf2189b..b246530f36 100644 --- a/content/reference/services/SoftLayer_Hardware/getMemoryCapacity.md +++ b/content/reference/services/SoftLayer_Hardware/getMemoryCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMemoryCapacity-example) {#getMemoryCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMemoryCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Hardware/getMetricTrackingObject.md index 12f040bb44..d4d95ea238 100644 --- a/content/reference/services/SoftLayer_Hardware/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Hardware/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getModules.md b/content/reference/services/SoftLayer_Hardware/getModules.md index b22fcc3cd8..f69df3761f 100644 --- a/content/reference/services/SoftLayer_Hardware/getModules.md +++ b/content/reference/services/SoftLayer_Hardware/getModules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getModules-example) {#getModules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getModules' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMonitoringRobot.md b/content/reference/services/SoftLayer_Hardware/getMonitoringRobot.md index 42fcadfd1a..f36eedd134 100644 --- a/content/reference/services/SoftLayer_Hardware/getMonitoringRobot.md +++ b/content/reference/services/SoftLayer_Hardware/getMonitoringRobot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMonitoringRobot-example) {#getMonitoringRobot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMonitoringRobot' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMonitoringServiceComponent.md b/content/reference/services/SoftLayer_Hardware/getMonitoringServiceComponent.md index 1f2fc0b5e6..2584f8067a 100644 --- a/content/reference/services/SoftLayer_Hardware/getMonitoringServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getMonitoringServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMonitoringServiceComponent-example) {#getMonitoringServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMonitoringServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMonitoringServiceEligibilityFlag.md b/content/reference/services/SoftLayer_Hardware/getMonitoringServiceEligibilityFlag.md index f37545d081..39477bea6f 100644 --- a/content/reference/services/SoftLayer_Hardware/getMonitoringServiceEligibilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getMonitoringServiceEligibilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMonitoringServiceEligibilityFlag-example) {#getMonitoringServiceEligibilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMonitoringServiceEligibilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getMotherboard.md b/content/reference/services/SoftLayer_Hardware/getMotherboard.md index 6451ce3582..6479f09f05 100644 --- a/content/reference/services/SoftLayer_Hardware/getMotherboard.md +++ b/content/reference/services/SoftLayer_Hardware/getMotherboard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getMotherboard-example) {#getMotherboard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getMotherboard' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkCards.md b/content/reference/services/SoftLayer_Hardware/getNetworkCards.md index 6fd5dd8cb7..c93c23b083 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkCards.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkCards.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkCards-example) {#getNetworkCards-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkCards' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkComponents.md b/content/reference/services/SoftLayer_Hardware/getNetworkComponents.md index 535a052d48..99517abe2f 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMember.md b/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMember.md index 68169f5eae..130c7b26d7 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMember.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkGatewayMember-example) {#getNetworkGatewayMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkGatewayMember' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMemberFlag.md b/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMemberFlag.md index 3658f13a6e..ea96ac6b8f 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMemberFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkGatewayMemberFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkGatewayMemberFlag-example) {#getNetworkGatewayMemberFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkGatewayMemberFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkManagementIpAddress.md b/content/reference/services/SoftLayer_Hardware/getNetworkManagementIpAddress.md index c8d3b8dbd8..c69b4de9b0 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkManagementIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkManagementIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkManagementIpAddress-example) {#getNetworkManagementIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkManagementIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownHardware.md b/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownHardware.md index 39417d6c38..4374c8b251 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownHardware-example) {#getNetworkMonitorAttachedDownHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkMonitorAttachedDownHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownVirtualGuests.md b/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownVirtualGuests.md index fc63064763..656599cc5e 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkMonitorAttachedDownVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownVirtualGuests-example) {#getNetworkMonitorAttachedDownVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkMonitorAttachedDownVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkMonitorIncidents.md b/content/reference/services/SoftLayer_Hardware/getNetworkMonitorIncidents.md index 7d9d912ac9..4bfd76b2a2 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkMonitorIncidents.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkMonitorIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkMonitorIncidents-example) {#getNetworkMonitorIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkMonitorIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkMonitors.md b/content/reference/services/SoftLayer_Hardware/getNetworkMonitors.md index 6f2db6eb73..676fefee63 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkMonitors.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkMonitors-example) {#getNetworkMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkMonitors' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkStatus.md b/content/reference/services/SoftLayer_Hardware/getNetworkStatus.md index e239c4a1a8..168a317d71 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkStatus.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkStatus-example) {#getNetworkStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkStatusAttribute.md b/content/reference/services/SoftLayer_Hardware/getNetworkStatusAttribute.md index 941be08f2a..2958480ba9 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkStatusAttribute.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkStatusAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkStatusAttribute-example) {#getNetworkStatusAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkStatusAttribute' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkStorage.md b/content/reference/services/SoftLayer_Hardware/getNetworkStorage.md index 7cf09b5980..6227ada922 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNetworkVlans.md b/content/reference/services/SoftLayer_Hardware/getNetworkVlans.md index cc5d1729c4..d9db5263d5 100644 --- a/content/reference/services/SoftLayer_Hardware/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Hardware/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNextBillingCycleBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware/getNextBillingCycleBandwidthAllocation.md index 64108259c5..4de21679f9 100644 --- a/content/reference/services/SoftLayer_Hardware/getNextBillingCycleBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware/getNextBillingCycleBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNextBillingCycleBandwidthAllocation-example) {#getNextBillingCycleBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNextBillingCycleBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNotesHistory.md b/content/reference/services/SoftLayer_Hardware/getNotesHistory.md index 3c1433a9a2..c5f95b13f6 100644 --- a/content/reference/services/SoftLayer_Hardware/getNotesHistory.md +++ b/content/reference/services/SoftLayer_Hardware/getNotesHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNotesHistory-example) {#getNotesHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNotesHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNvRamCapacity.md b/content/reference/services/SoftLayer_Hardware/getNvRamCapacity.md index 129c1716fc..602096c804 100644 --- a/content/reference/services/SoftLayer_Hardware/getNvRamCapacity.md +++ b/content/reference/services/SoftLayer_Hardware/getNvRamCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNvRamCapacity-example) {#getNvRamCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNvRamCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getNvRamComponentModels.md b/content/reference/services/SoftLayer_Hardware/getNvRamComponentModels.md index 55a9344dab..e560b668f1 100644 --- a/content/reference/services/SoftLayer_Hardware/getNvRamComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware/getNvRamComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getNvRamComponentModels-example) {#getNvRamComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getNvRamComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getObject.md b/content/reference/services/SoftLayer_Hardware/getObject.md index 82b12cf324..c9383f09be 100644 --- a/content/reference/services/SoftLayer_Hardware/getObject.md +++ b/content/reference/services/SoftLayer_Hardware/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getOperatingSystem.md b/content/reference/services/SoftLayer_Hardware/getOperatingSystem.md index ad15b95fff..ee8c46275a 100644 --- a/content/reference/services/SoftLayer_Hardware/getOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware/getOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getOperatingSystem-example) {#getOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getOperatingSystemReferenceCode.md b/content/reference/services/SoftLayer_Hardware/getOperatingSystemReferenceCode.md index 80dbedbccd..af943969c3 100644 --- a/content/reference/services/SoftLayer_Hardware/getOperatingSystemReferenceCode.md +++ b/content/reference/services/SoftLayer_Hardware/getOperatingSystemReferenceCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getOperatingSystemReferenceCode-example) {#getOperatingSystemReferenceCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getOperatingSystemReferenceCode' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getOutboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware/getOutboundBandwidthUsage.md index 37ce0e6eca..6f526cf6a6 100644 --- a/content/reference/services/SoftLayer_Hardware/getOutboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware/getOutboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getOutboundBandwidthUsage-example) {#getOutboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getOutboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware/getOutboundPublicBandwidthUsage.md index ad671a9847..f0b0278f5a 100644 --- a/content/reference/services/SoftLayer_Hardware/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getParentBay.md b/content/reference/services/SoftLayer_Hardware/getParentBay.md index c27147e75d..dbf65d6fed 100644 --- a/content/reference/services/SoftLayer_Hardware/getParentBay.md +++ b/content/reference/services/SoftLayer_Hardware/getParentBay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getParentBay-example) {#getParentBay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getParentBay' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getParentHardware.md b/content/reference/services/SoftLayer_Hardware/getParentHardware.md index 852fb93dcc..1bcd8e1f6b 100644 --- a/content/reference/services/SoftLayer_Hardware/getParentHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getParentHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getParentHardware-example) {#getParentHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getParentHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPointOfPresenceLocation.md b/content/reference/services/SoftLayer_Hardware/getPointOfPresenceLocation.md index 727d627d5f..fbd8aabc8f 100644 --- a/content/reference/services/SoftLayer_Hardware/getPointOfPresenceLocation.md +++ b/content/reference/services/SoftLayer_Hardware/getPointOfPresenceLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPointOfPresenceLocation-example) {#getPointOfPresenceLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPointOfPresenceLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPowerComponents.md b/content/reference/services/SoftLayer_Hardware/getPowerComponents.md index 34bd1b86d4..32633ab21a 100644 --- a/content/reference/services/SoftLayer_Hardware/getPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPowerComponents-example) {#getPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPowerSupply.md b/content/reference/services/SoftLayer_Hardware/getPowerSupply.md index bc200d3933..f60652cd3e 100644 --- a/content/reference/services/SoftLayer_Hardware/getPowerSupply.md +++ b/content/reference/services/SoftLayer_Hardware/getPowerSupply.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPowerSupply-example) {#getPowerSupply-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPowerSupply' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Hardware/getPrimaryBackendIpAddress.md index e4566df566..5a65d6324d 100644 --- a/content/reference/services/SoftLayer_Hardware/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPrimaryBackendNetworkComponent.md b/content/reference/services/SoftLayer_Hardware/getPrimaryBackendNetworkComponent.md index 8381348294..b630c5fda5 100644 --- a/content/reference/services/SoftLayer_Hardware/getPrimaryBackendNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getPrimaryBackendNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPrimaryBackendNetworkComponent-example) {#getPrimaryBackendNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPrimaryBackendNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Hardware/getPrimaryIpAddress.md index 06846ef54d..d337f3d7d9 100644 --- a/content/reference/services/SoftLayer_Hardware/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPrimaryNetworkComponent.md b/content/reference/services/SoftLayer_Hardware/getPrimaryNetworkComponent.md index 3c8d0238f1..5e475ac318 100644 --- a/content/reference/services/SoftLayer_Hardware/getPrimaryNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getPrimaryNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPrimaryNetworkComponent-example) {#getPrimaryNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPrimaryNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPrivateBandwidthData.md b/content/reference/services/SoftLayer_Hardware/getPrivateBandwidthData.md index c2792135ba..bdffecc8a1 100644 --- a/content/reference/services/SoftLayer_Hardware/getPrivateBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware/getPrivateBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPrivateBandwidthData-example) {#getPrivateBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPrivateBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Hardware/getPrivateNetworkOnlyFlag.md index 8ef9203219..c1b50da3f5 100644 --- a/content/reference/services/SoftLayer_Hardware/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Hardware/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getProcessorCoreAmount.md b/content/reference/services/SoftLayer_Hardware/getProcessorCoreAmount.md index 96e4fc0bb8..26fd79db57 100644 --- a/content/reference/services/SoftLayer_Hardware/getProcessorCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware/getProcessorCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getProcessorCoreAmount-example) {#getProcessorCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getProcessorCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getProcessorPhysicalCoreAmount.md b/content/reference/services/SoftLayer_Hardware/getProcessorPhysicalCoreAmount.md index 50e892c6b6..6b27b2069e 100644 --- a/content/reference/services/SoftLayer_Hardware/getProcessorPhysicalCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware/getProcessorPhysicalCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getProcessorPhysicalCoreAmount-example) {#getProcessorPhysicalCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getProcessorPhysicalCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getProcessors.md b/content/reference/services/SoftLayer_Hardware/getProcessors.md index 406bffad29..366e10a47d 100644 --- a/content/reference/services/SoftLayer_Hardware/getProcessors.md +++ b/content/reference/services/SoftLayer_Hardware/getProcessors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getProcessors-example) {#getProcessors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getProcessors' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getPublicBandwidthData.md b/content/reference/services/SoftLayer_Hardware/getPublicBandwidthData.md index 343a3e9b4b..29f72de819 100644 --- a/content/reference/services/SoftLayer_Hardware/getPublicBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware/getPublicBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getPublicBandwidthData-example) {#getPublicBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getPublicBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getRack.md b/content/reference/services/SoftLayer_Hardware/getRack.md index 82251108f7..188e1219d4 100644 --- a/content/reference/services/SoftLayer_Hardware/getRack.md +++ b/content/reference/services/SoftLayer_Hardware/getRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getRack-example) {#getRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getRaidControllers.md b/content/reference/services/SoftLayer_Hardware/getRaidControllers.md index 28ac1d3485..53e53d7c20 100644 --- a/content/reference/services/SoftLayer_Hardware/getRaidControllers.md +++ b/content/reference/services/SoftLayer_Hardware/getRaidControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getRaidControllers-example) {#getRaidControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getRaidControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getRecentEvents.md b/content/reference/services/SoftLayer_Hardware/getRecentEvents.md index 6f565e9743..d1a2db5b4a 100644 --- a/content/reference/services/SoftLayer_Hardware/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Hardware/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getRemoteManagementAccounts.md b/content/reference/services/SoftLayer_Hardware/getRemoteManagementAccounts.md index 11a7cf7f82..b35d3b4323 100644 --- a/content/reference/services/SoftLayer_Hardware/getRemoteManagementAccounts.md +++ b/content/reference/services/SoftLayer_Hardware/getRemoteManagementAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getRemoteManagementAccounts-example) {#getRemoteManagementAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getRemoteManagementAccounts' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getRemoteManagementComponent.md b/content/reference/services/SoftLayer_Hardware/getRemoteManagementComponent.md index bff2219b4a..dd7cab173a 100644 --- a/content/reference/services/SoftLayer_Hardware/getRemoteManagementComponent.md +++ b/content/reference/services/SoftLayer_Hardware/getRemoteManagementComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getRemoteManagementComponent-example) {#getRemoteManagementComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getRemoteManagementComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getResourceConfigurations.md b/content/reference/services/SoftLayer_Hardware/getResourceConfigurations.md index 7b5e609de5..1277fabfd6 100644 --- a/content/reference/services/SoftLayer_Hardware/getResourceConfigurations.md +++ b/content/reference/services/SoftLayer_Hardware/getResourceConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getResourceConfigurations-example) {#getResourceConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getResourceConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getResourceGroupMemberReferences.md b/content/reference/services/SoftLayer_Hardware/getResourceGroupMemberReferences.md index bfcbfd942c..f881ed758b 100644 --- a/content/reference/services/SoftLayer_Hardware/getResourceGroupMemberReferences.md +++ b/content/reference/services/SoftLayer_Hardware/getResourceGroupMemberReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getResourceGroupMemberReferences-example) {#getResourceGroupMemberReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getResourceGroupMemberReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getResourceGroupRoles.md b/content/reference/services/SoftLayer_Hardware/getResourceGroupRoles.md index 0c9f474bee..8fc5fe7792 100644 --- a/content/reference/services/SoftLayer_Hardware/getResourceGroupRoles.md +++ b/content/reference/services/SoftLayer_Hardware/getResourceGroupRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getResourceGroupRoles-example) {#getResourceGroupRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getResourceGroupRoles' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getResourceGroups.md b/content/reference/services/SoftLayer_Hardware/getResourceGroups.md index 107cb2e39f..3b63b42d1c 100644 --- a/content/reference/services/SoftLayer_Hardware/getResourceGroups.md +++ b/content/reference/services/SoftLayer_Hardware/getResourceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getResourceGroups-example) {#getResourceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getResourceGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getRouters.md b/content/reference/services/SoftLayer_Hardware/getRouters.md index 35ac63bea6..252768d87a 100644 --- a/content/reference/services/SoftLayer_Hardware/getRouters.md +++ b/content/reference/services/SoftLayer_Hardware/getRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getRouters-example) {#getRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Hardware/getSecurityScanRequests.md index 6adbcdf9e8..1ef30e4cd4 100644 --- a/content/reference/services/SoftLayer_Hardware/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Hardware/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getSensorData.md b/content/reference/services/SoftLayer_Hardware/getSensorData.md index f3f4b3ded9..7078f01e33 100644 --- a/content/reference/services/SoftLayer_Hardware/getSensorData.md +++ b/content/reference/services/SoftLayer_Hardware/getSensorData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getSensorData-example) {#getSensorData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getSensorData' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getSensorDataWithGraphs.md b/content/reference/services/SoftLayer_Hardware/getSensorDataWithGraphs.md index 6ea9158c19..75b052630b 100644 --- a/content/reference/services/SoftLayer_Hardware/getSensorDataWithGraphs.md +++ b/content/reference/services/SoftLayer_Hardware/getSensorDataWithGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getSensorDataWithGraphs-example) {#getSensorDataWithGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getSensorDataWithGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getServerFanSpeedGraphs.md b/content/reference/services/SoftLayer_Hardware/getServerFanSpeedGraphs.md index 1ee970d96d..d06ab7642b 100644 --- a/content/reference/services/SoftLayer_Hardware/getServerFanSpeedGraphs.md +++ b/content/reference/services/SoftLayer_Hardware/getServerFanSpeedGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getServerFanSpeedGraphs-example) {#getServerFanSpeedGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getServerFanSpeedGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getServerPowerState.md b/content/reference/services/SoftLayer_Hardware/getServerPowerState.md index f6e3f121b4..e0c4c1d004 100644 --- a/content/reference/services/SoftLayer_Hardware/getServerPowerState.md +++ b/content/reference/services/SoftLayer_Hardware/getServerPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getServerPowerState-example) {#getServerPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getServerPowerState' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getServerRoom.md b/content/reference/services/SoftLayer_Hardware/getServerRoom.md index e14ed65962..94332c8480 100644 --- a/content/reference/services/SoftLayer_Hardware/getServerRoom.md +++ b/content/reference/services/SoftLayer_Hardware/getServerRoom.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getServerRoom-example) {#getServerRoom-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getServerRoom' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getServerTemperatureGraphs.md b/content/reference/services/SoftLayer_Hardware/getServerTemperatureGraphs.md index 2e66d0f3ff..da4c82b393 100644 --- a/content/reference/services/SoftLayer_Hardware/getServerTemperatureGraphs.md +++ b/content/reference/services/SoftLayer_Hardware/getServerTemperatureGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getServerTemperatureGraphs-example) {#getServerTemperatureGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getServerTemperatureGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getServiceProvider.md b/content/reference/services/SoftLayer_Hardware/getServiceProvider.md index 1fc39211fb..caf4e5aa67 100644 --- a/content/reference/services/SoftLayer_Hardware/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Hardware/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getSoftwareComponents.md b/content/reference/services/SoftLayer_Hardware/getSoftwareComponents.md index 4f0753c688..5fd8b2ffcf 100644 --- a/content/reference/services/SoftLayer_Hardware/getSoftwareComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getSoftwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getSoftwareComponents-example) {#getSoftwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getSoftwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getSparePoolBillingItem.md b/content/reference/services/SoftLayer_Hardware/getSparePoolBillingItem.md index 94f5342850..8638271413 100644 --- a/content/reference/services/SoftLayer_Hardware/getSparePoolBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware/getSparePoolBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getSparePoolBillingItem-example) {#getSparePoolBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getSparePoolBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getSshKeys.md b/content/reference/services/SoftLayer_Hardware/getSshKeys.md index afc33a5128..c033b399df 100644 --- a/content/reference/services/SoftLayer_Hardware/getSshKeys.md +++ b/content/reference/services/SoftLayer_Hardware/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getStorageGroups.md b/content/reference/services/SoftLayer_Hardware/getStorageGroups.md index 87df304fe6..b763719694 100644 --- a/content/reference/services/SoftLayer_Hardware/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getStorageNetworkComponents.md b/content/reference/services/SoftLayer_Hardware/getStorageNetworkComponents.md index 7fe15cc95d..b2d1204b3f 100644 --- a/content/reference/services/SoftLayer_Hardware/getStorageNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getStorageNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getStorageNetworkComponents-example) {#getStorageNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getStorageNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getTagReferences.md b/content/reference/services/SoftLayer_Hardware/getTagReferences.md index 966488200d..e31c8aa7fe 100644 --- a/content/reference/services/SoftLayer_Hardware/getTagReferences.md +++ b/content/reference/services/SoftLayer_Hardware/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getTopLevelLocation.md b/content/reference/services/SoftLayer_Hardware/getTopLevelLocation.md index 8de4228f19..3d0045bcba 100644 --- a/content/reference/services/SoftLayer_Hardware/getTopLevelLocation.md +++ b/content/reference/services/SoftLayer_Hardware/getTopLevelLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getTopLevelLocation-example) {#getTopLevelLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getTopLevelLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getTransactionHistory.md b/content/reference/services/SoftLayer_Hardware/getTransactionHistory.md index 1de31289c1..ee5a3c48a9 100644 --- a/content/reference/services/SoftLayer_Hardware/getTransactionHistory.md +++ b/content/reference/services/SoftLayer_Hardware/getTransactionHistory.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getTransactionHistory-example) {#getTransactionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getTransactionHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Hardware/getUpgradeItemPrices.md index 1980a3b0aa..2d252103d8 100644 --- a/content/reference/services/SoftLayer_Hardware/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Hardware/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getUpgradeRequest.md b/content/reference/services/SoftLayer_Hardware/getUpgradeRequest.md index f5fed6f55e..7b712c9f0a 100644 --- a/content/reference/services/SoftLayer_Hardware/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Hardware/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getUpgradeableActiveComponents.md b/content/reference/services/SoftLayer_Hardware/getUpgradeableActiveComponents.md index 64860e6e9b..6494716ba0 100644 --- a/content/reference/services/SoftLayer_Hardware/getUpgradeableActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getUpgradeableActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getUpgradeableActiveComponents-example) {#getUpgradeableActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getUpgradeableActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getUplinkHardware.md b/content/reference/services/SoftLayer_Hardware/getUplinkHardware.md index 9523997086..bbecfae25e 100644 --- a/content/reference/services/SoftLayer_Hardware/getUplinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware/getUplinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getUplinkHardware-example) {#getUplinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getUplinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getUplinkNetworkComponents.md b/content/reference/services/SoftLayer_Hardware/getUplinkNetworkComponents.md index d83a6b68a1..5b2d6dc40d 100644 --- a/content/reference/services/SoftLayer_Hardware/getUplinkNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware/getUplinkNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getUplinkNetworkComponents-example) {#getUplinkNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getUplinkNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getUserData.md b/content/reference/services/SoftLayer_Hardware/getUserData.md index f13cc05804..2d271eec08 100644 --- a/content/reference/services/SoftLayer_Hardware/getUserData.md +++ b/content/reference/services/SoftLayer_Hardware/getUserData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getUserData-example) {#getUserData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getUserData' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualChassis.md b/content/reference/services/SoftLayer_Hardware/getVirtualChassis.md index 6a57e88cc3..74178292e5 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualChassis.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualChassis-example) {#getVirtualChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualChassisSiblings.md b/content/reference/services/SoftLayer_Hardware/getVirtualChassisSiblings.md index a152670fdc..f279c04162 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualChassisSiblings.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualChassisSiblings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualChassisSiblings-example) {#getVirtualChassisSiblings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualChassisSiblings' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualHost.md b/content/reference/services/SoftLayer_Hardware/getVirtualHost.md index f296f0f1ed..f70693f2db 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualHost-example) {#getVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualLicenses.md b/content/reference/services/SoftLayer_Hardware/getVirtualLicenses.md index 7ae851d4d7..6e737bc142 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualLicenses-example) {#getVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualRack.md b/content/reference/services/SoftLayer_Hardware/getVirtualRack.md index 749fd883c2..d85af2efda 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualRack.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualRack-example) {#getVirtualRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualRackId.md b/content/reference/services/SoftLayer_Hardware/getVirtualRackId.md index cf3e9ece0e..c82dc8f2d8 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualRackId.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualRackId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualRackId-example) {#getVirtualRackId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualRackId' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualRackName.md b/content/reference/services/SoftLayer_Hardware/getVirtualRackName.md index 9930f78914..a106484e61 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualRackName.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualRackName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualRackName-example) {#getVirtualRackName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualRackName' ``` diff --git a/content/reference/services/SoftLayer_Hardware/getVirtualizationPlatform.md b/content/reference/services/SoftLayer_Hardware/getVirtualizationPlatform.md index 469b783cb3..1830388971 100644 --- a/content/reference/services/SoftLayer_Hardware/getVirtualizationPlatform.md +++ b/content/reference/services/SoftLayer_Hardware/getVirtualizationPlatform.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#getVirtualizationPlatform-example) {#getVirtualizationPlatform-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/getVirtualizationPlatform' ``` diff --git a/content/reference/services/SoftLayer_Hardware/importVirtualHost.md b/content/reference/services/SoftLayer_Hardware/importVirtualHost.md index 09014e803f..3a65290266 100644 --- a/content/reference/services/SoftLayer_Hardware/importVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware/importVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#importVirtualHost-example) {#importVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/importVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware/isPingable.md b/content/reference/services/SoftLayer_Hardware/isPingable.md index ce67005dad..ef00dd8934 100644 --- a/content/reference/services/SoftLayer_Hardware/isPingable.md +++ b/content/reference/services/SoftLayer_Hardware/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware/ping.md b/content/reference/services/SoftLayer_Hardware/ping.md index 6d50aa14bb..bf21259610 100644 --- a/content/reference/services/SoftLayer_Hardware/ping.md +++ b/content/reference/services/SoftLayer_Hardware/ping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#ping-example) {#ping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/ping' ``` diff --git a/content/reference/services/SoftLayer_Hardware/powerCycle.md b/content/reference/services/SoftLayer_Hardware/powerCycle.md index 243e7ee96e..c237ae8b31 100644 --- a/content/reference/services/SoftLayer_Hardware/powerCycle.md +++ b/content/reference/services/SoftLayer_Hardware/powerCycle.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#powerCycle-example) {#powerCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/powerCycle' ``` diff --git a/content/reference/services/SoftLayer_Hardware/powerOff.md b/content/reference/services/SoftLayer_Hardware/powerOff.md index c62e8956ed..3b37a3d6f3 100644 --- a/content/reference/services/SoftLayer_Hardware/powerOff.md +++ b/content/reference/services/SoftLayer_Hardware/powerOff.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#powerOff-example) {#powerOff-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/powerOff' ``` diff --git a/content/reference/services/SoftLayer_Hardware/powerOn.md b/content/reference/services/SoftLayer_Hardware/powerOn.md index 46aec3b5c4..481036c537 100644 --- a/content/reference/services/SoftLayer_Hardware/powerOn.md +++ b/content/reference/services/SoftLayer_Hardware/powerOn.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#powerOn-example) {#powerOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/powerOn' ``` diff --git a/content/reference/services/SoftLayer_Hardware/rebootDefault.md b/content/reference/services/SoftLayer_Hardware/rebootDefault.md index 8479edd4c6..daab66266d 100644 --- a/content/reference/services/SoftLayer_Hardware/rebootDefault.md +++ b/content/reference/services/SoftLayer_Hardware/rebootDefault.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#rebootDefault-example) {#rebootDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/rebootDefault' ``` diff --git a/content/reference/services/SoftLayer_Hardware/rebootHard.md b/content/reference/services/SoftLayer_Hardware/rebootHard.md index bec3add99d..a2060c4e29 100644 --- a/content/reference/services/SoftLayer_Hardware/rebootHard.md +++ b/content/reference/services/SoftLayer_Hardware/rebootHard.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#rebootHard-example) {#rebootHard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/rebootHard' ``` diff --git a/content/reference/services/SoftLayer_Hardware/rebootSoft.md b/content/reference/services/SoftLayer_Hardware/rebootSoft.md index 0d8ab2721d..61ababf02d 100644 --- a/content/reference/services/SoftLayer_Hardware/rebootSoft.md +++ b/content/reference/services/SoftLayer_Hardware/rebootSoft.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#rebootSoft-example) {#rebootSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/rebootSoft' ``` diff --git a/content/reference/services/SoftLayer_Hardware/refreshDeviceStatus.md b/content/reference/services/SoftLayer_Hardware/refreshDeviceStatus.md index 4360b5fa9e..7a5d1ed6c0 100644 --- a/content/reference/services/SoftLayer_Hardware/refreshDeviceStatus.md +++ b/content/reference/services/SoftLayer_Hardware/refreshDeviceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#refreshDeviceStatus-example) {#refreshDeviceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/refreshDeviceStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorage.md index 8f2a7676bc..a482697a6c 100644 --- a/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorage-example) {#removeAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/removeAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorageList.md index 4d82540f6f..9a61ae1490 100644 --- a/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware/removeTags.md b/content/reference/services/SoftLayer_Hardware/removeTags.md index 8818e98ac2..e97f820257 100644 --- a/content/reference/services/SoftLayer_Hardware/removeTags.md +++ b/content/reference/services/SoftLayer_Hardware/removeTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#removeTags-example) {#removeTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/removeTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware/setTags.md b/content/reference/services/SoftLayer_Hardware/setTags.md index 0c1aac583a..dae98ae14a 100644 --- a/content/reference/services/SoftLayer_Hardware/setTags.md +++ b/content/reference/services/SoftLayer_Hardware/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware/updateIpmiPassword.md b/content/reference/services/SoftLayer_Hardware/updateIpmiPassword.md index b53f4a0f49..3a49d7915d 100644 --- a/content/reference/services/SoftLayer_Hardware/updateIpmiPassword.md +++ b/content/reference/services/SoftLayer_Hardware/updateIpmiPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware" --- -### Curl Example +# [REST Example](#updateIpmiPassword-example) {#updateIpmiPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware/{SoftLayer_HardwareID}/updateIpmiPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getAccount.md b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getAccount.md index 4953157b47..40ef4e062d 100644 --- a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Benchmark_Certification" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Benchmark_Certification/{SoftLayer_Hardware_Benchmark_CertificationID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getHardware.md b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getHardware.md index 21eb1b2775..ac070f0ef4 100644 --- a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Benchmark_Certification" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Benchmark_Certification/{SoftLayer_Hardware_Benchmark_CertificationID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getObject.md b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getObject.md index 4f31ce343d..091be1c4e5 100644 --- a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Benchmark_Certification" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Benchmark_Certification/{SoftLayer_Hardware_Benchmark_CertificationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getResultFile.md b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getResultFile.md index 8c572baa45..29e7bdae11 100644 --- a/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getResultFile.md +++ b/content/reference/services/SoftLayer_Hardware_Benchmark_Certification/getResultFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Benchmark_Certification" --- -### Curl Example +# [REST Example](#getResultFile-example) {#getResultFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Benchmark_Certification/{SoftLayer_Hardware_Benchmark_CertificationID}/getResultFile' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Blade/getHardwareChild.md b/content/reference/services/SoftLayer_Hardware_Blade/getHardwareChild.md index abd12e3a9f..973b42ab72 100644 --- a/content/reference/services/SoftLayer_Hardware_Blade/getHardwareChild.md +++ b/content/reference/services/SoftLayer_Hardware_Blade/getHardwareChild.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Blade" --- -### Curl Example +# [REST Example](#getHardwareChild-example) {#getHardwareChild-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Blade/{SoftLayer_Hardware_BladeID}/getHardwareChild' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Blade/getHardwareParent.md b/content/reference/services/SoftLayer_Hardware_Blade/getHardwareParent.md index 87ddc3a4b7..eb33c75520 100644 --- a/content/reference/services/SoftLayer_Hardware_Blade/getHardwareParent.md +++ b/content/reference/services/SoftLayer_Hardware_Blade/getHardwareParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Blade" --- -### Curl Example +# [REST Example](#getHardwareParent-example) {#getHardwareParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Blade/{SoftLayer_Hardware_BladeID}/getHardwareParent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Blade/getObject.md b/content/reference/services/SoftLayer_Hardware_Blade/getObject.md index 1e0a31cf01..f8dc570db8 100644 --- a/content/reference/services/SoftLayer_Hardware_Blade/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Blade/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Blade" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Blade/{SoftLayer_Hardware_BladeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Locator/getGenericComponentModelAvailability.md b/content/reference/services/SoftLayer_Hardware_Component_Locator/getGenericComponentModelAvailability.md index 546612cb92..586aab9efa 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Locator/getGenericComponentModelAvailability.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Locator/getGenericComponentModelAvailability.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Locator" --- -### Curl Example +# [REST Example](#getGenericComponentModelAvailability-example) {#getGenericComponentModelAvailability-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Locator/getGenericComponentModelAvailability' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Locator/getPackageItemsAvailability.md b/content/reference/services/SoftLayer_Hardware_Component_Locator/getPackageItemsAvailability.md index 8685c50493..e61e20334a 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Locator/getPackageItemsAvailability.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Locator/getPackageItemsAvailability.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Locator" --- -### Curl Example +# [REST Example](#getPackageItemsAvailability-example) {#getPackageItemsAvailability-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Locator/getPackageItemsAvailability' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Locator/getServerPackageAvailability.md b/content/reference/services/SoftLayer_Hardware_Component_Locator/getServerPackageAvailability.md index 86c4713ed7..3aeb797080 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Locator/getServerPackageAvailability.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Locator/getServerPackageAvailability.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Locator" --- -### Curl Example +# [REST Example](#getServerPackageAvailability-example) {#getServerPackageAvailability-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Locator/getServerPackageAvailability' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getArchitectureType.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getArchitectureType.md index cc696d0ca6..f4c944d3cd 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getArchitectureType.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getArchitectureType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getArchitectureType-example) {#getArchitectureType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getArchitectureType' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getAttributes.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getAttributes.md index 4a97bc8e50..8aff5299c2 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getAttributes.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleArrayTypes.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleArrayTypes.md index 1ae73a98f1..60131ca178 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleArrayTypes.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleArrayTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getCompatibleArrayTypes-example) {#getCompatibleArrayTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getCompatibleArrayTypes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleChildComponentModels.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleChildComponentModels.md index dd204a385d..7384bc0f59 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleChildComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleChildComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getCompatibleChildComponentModels-example) {#getCompatibleChildComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getCompatibleChildComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleParentComponentModels.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleParentComponentModels.md index 9da68f0eac..8454c31e07 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleParentComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getCompatibleParentComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getCompatibleParentComponentModels-example) {#getCompatibleParentComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getCompatibleParentComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwareQuantity.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwareQuantity.md index 42ecd47bed..256613cbc6 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwareQuantity.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwareQuantity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getFirmwareQuantity-example) {#getFirmwareQuantity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getFirmwareQuantity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwares.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwares.md index e80ad08c66..f8cbabee20 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwares.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getFirmwares.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getFirmwares-example) {#getFirmwares-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getFirmwares' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareComponents.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareComponents.md index 015ab3dfeb..4d56e774e1 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getHardwareComponents-example) {#getHardwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getHardwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareGenericComponentModel.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareGenericComponentModel.md index ad3b54cbb1..8c60f47e60 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareGenericComponentModel.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getHardwareGenericComponentModel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getHardwareGenericComponentModel-example) {#getHardwareGenericComponentModel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getHardwareGenericComponentModel' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getInfinibandCompatibleAttribute.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getInfinibandCompatibleAttribute.md index 5daad02b84..faa5961c2c 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getInfinibandCompatibleAttribute.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getInfinibandCompatibleAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getInfinibandCompatibleAttribute-example) {#getInfinibandCompatibleAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getInfinibandCompatibleAttribute' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getIsFlexSkuCompatible.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getIsFlexSkuCompatible.md index aeda2ff9ee..3d56236d6e 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getIsFlexSkuCompatible.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getIsFlexSkuCompatible.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getIsFlexSkuCompatible-example) {#getIsFlexSkuCompatible-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getIsFlexSkuCompatible' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getIsInfinibandCompatible.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getIsInfinibandCompatible.md index d18a52c0e0..20482ae1ff 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getIsInfinibandCompatible.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getIsInfinibandCompatible.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getIsInfinibandCompatible-example) {#getIsInfinibandCompatible-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getIsInfinibandCompatible' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getObject.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getObject.md index cae65b6976..1eea0daeb5 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getQualifiedFirmwares.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getQualifiedFirmwares.md index b4e13b9b37..5d1f733d74 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getQualifiedFirmwares.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getQualifiedFirmwares.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getQualifiedFirmwares-example) {#getQualifiedFirmwares-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getQualifiedFirmwares' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getRebootTime.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getRebootTime.md index 7e46944ea2..4fc2c6066f 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getRebootTime.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getRebootTime.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getRebootTime-example) {#getRebootTime-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getRebootTime' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getType.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getType.md index 66876da7c3..ccbe37576d 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getType.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Model/getValidAttributeTypes.md b/content/reference/services/SoftLayer_Hardware_Component_Model/getValidAttributeTypes.md index 7752c6a3bb..5dab64d3ce 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Model/getValidAttributeTypes.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Model/getValidAttributeTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Model" --- -### Curl Example +# [REST Example](#getValidAttributeTypes-example) {#getValidAttributeTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Model/{SoftLayer_Hardware_Component_ModelID}/getValidAttributeTypes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getAllObjects.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getAllObjects.md index 4d812fd15e..69ec2bb980 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getAllObjects.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_OperatingSystem" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_OperatingSystem/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getByDescription.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getByDescription.md index bf73172bcd..f85bef6a4c 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getByDescription.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getByDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_OperatingSystem" --- -### Curl Example +# [REST Example](#getByDescription-example) {#getByDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_OperatingSystem/getByDescription' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getObject.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getObject.md index ce9f07534b..4034149961 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_OperatingSystem" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_OperatingSystem/{SoftLayer_Hardware_Component_Partition_OperatingSystemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getPartitionTemplates.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getPartitionTemplates.md index 1c17af1b58..b3da6e9253 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getPartitionTemplates.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_OperatingSystem/getPartitionTemplates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_OperatingSystem" --- -### Curl Example +# [REST Example](#getPartitionTemplates-example) {#getPartitionTemplates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_OperatingSystem/{SoftLayer_Hardware_Component_Partition_OperatingSystemID}/getPartitionTemplates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getAccount.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getAccount.md index 4b03e37e5b..afc517e391 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_Template" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_Template/{SoftLayer_Hardware_Component_Partition_TemplateID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getData.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getData.md index 716fde8542..81de12c1c3 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getData.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_Template" --- -### Curl Example +# [REST Example](#getData-example) {#getData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_Template/{SoftLayer_Hardware_Component_Partition_TemplateID}/getData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getExpireDate.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getExpireDate.md index 5ed88d7e81..8f9ebaae03 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getExpireDate.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getExpireDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_Template" --- -### Curl Example +# [REST Example](#getExpireDate-example) {#getExpireDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_Template/{SoftLayer_Hardware_Component_Partition_TemplateID}/getExpireDate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getObject.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getObject.md index aaf3497623..07ebcec0d7 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_Template" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_Template/{SoftLayer_Hardware_Component_Partition_TemplateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionOperatingSystem.md index 2e158d3e46..7428fc8f33 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_Template" --- -### Curl Example +# [REST Example](#getPartitionOperatingSystem-example) {#getPartitionOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_Template/{SoftLayer_Hardware_Component_Partition_TemplateID}/getPartitionOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionTemplatePartition.md b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionTemplatePartition.md index 902d5da462..d32e0e3535 100644 --- a/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionTemplatePartition.md +++ b/content/reference/services/SoftLayer_Hardware_Component_Partition_Template/getPartitionTemplatePartition.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Component_Partition_Template" --- -### Curl Example +# [REST Example](#getPartitionTemplatePartition-example) {#getPartitionTemplatePartition-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Component_Partition_Template/{SoftLayer_Hardware_Component_Partition_TemplateID}/getPartitionTemplatePartition' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorage.md index 5c5a54ff9a..26bc92639f 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorageList.md index bcc2869dff..72b6de9e2b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_Router/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/captureImage.md b/content/reference/services/SoftLayer_Hardware_Router/captureImage.md index 68c34a15b1..8384809b6c 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/captureImage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/captureImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#captureImage-example) {#captureImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/captureImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/createObject.md b/content/reference/services/SoftLayer_Hardware_Router/createObject.md index d85ad0b459..d1205ae5d4 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/createObject.md +++ b/content/reference/services/SoftLayer_Hardware_Router/createObject.md @@ -278,8 +278,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/createObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/deleteObject.md b/content/reference/services/SoftLayer_Hardware_Router/deleteObject.md index b82b8265f7..ddef03d060 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/deleteObject.md +++ b/content/reference/services/SoftLayer_Hardware_Router/deleteObject.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/deleteSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_Router/deleteSoftwareComponentPasswords.md index e54d77376e..64b8448da4 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/deleteSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_Router/deleteSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#deleteSoftwareComponentPasswords-example) {#deleteSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/deleteSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/deleteTag.md b/content/reference/services/SoftLayer_Hardware_Router/deleteTag.md index 87b65561ce..43f997df25 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/deleteTag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/editSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_Router/editSoftwareComponentPasswords.md index 2bbbe4622f..9ee945ac33 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/editSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_Router/editSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#editSoftwareComponentPasswords-example) {#editSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/editSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/executeRemoteScript.md b/content/reference/services/SoftLayer_Hardware_Router/executeRemoteScript.md index 516e241905..dc45e8dbf7 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/executeRemoteScript.md +++ b/content/reference/services/SoftLayer_Hardware_Router/executeRemoteScript.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#executeRemoteScript-example) {#executeRemoteScript-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/executeRemoteScript' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/findByIpAddress.md b/content/reference/services/SoftLayer_Hardware_Router/findByIpAddress.md index 17ff81d83a..3501135081 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/findByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Router/findByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#findByIpAddress-example) {#findByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/findByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/generateOrderTemplate.md b/content/reference/services/SoftLayer_Hardware_Router/generateOrderTemplate.md index a200f108cf..f63ad2b92a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/generateOrderTemplate.md +++ b/content/reference/services/SoftLayer_Hardware_Router/generateOrderTemplate.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#generateOrderTemplate-example) {#generateOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/generateOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAccount.md b/content/reference/services/SoftLayer_Hardware_Router/getAccount.md index 2fe891e57a..6d2a8b00f4 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getActiveComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getActiveComponents.md index a0e72aad33..f6250d68d9 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getActiveComponents-example) {#getActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getActiveNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_Router/getActiveNetworkMonitorIncident.md index 9355b349f5..e9010b32c8 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getActiveNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getActiveNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getActiveNetworkMonitorIncident-example) {#getActiveNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getActiveNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAllPowerComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getAllPowerComponents.md index f9bd439ef0..721cc25647 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAllPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAllPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAllPowerComponents-example) {#getAllPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAllPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAllowedHost.md b/content/reference/services/SoftLayer_Hardware_Router/getAllowedHost.md index 72f716a524..2657d144ea 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorage.md index 2fa9bab5bb..234528ec9e 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorageReplicas.md index ac93af51e7..58c2727d94 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAntivirusSpywareSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getAntivirusSpywareSoftwareComponent.md index 8fad38ddef..f0b8b2b5a6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAntivirusSpywareSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAntivirusSpywareSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAntivirusSpywareSoftwareComponent-example) {#getAntivirusSpywareSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAntivirusSpywareSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_Router/getAttachedNetworkStorages.md index c3352be70c..d4029714af 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAttributes.md b/content/reference/services/SoftLayer_Hardware_Router/getAttributes.md index b648e2614f..606ae61e92 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAttributes.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAvailableBillingTermChangePrices.md b/content/reference/services/SoftLayer_Hardware_Router/getAvailableBillingTermChangePrices.md index 5a5f046364..87eaa767f1 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAvailableBillingTermChangePrices.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAvailableBillingTermChangePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAvailableBillingTermChangePrices-example) {#getAvailableBillingTermChangePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAvailableBillingTermChangePrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_Router/getAvailableNetworkStorages.md index 881285c833..a9e9909755 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Router/getAverageDailyPublicBandwidthUsage.md index 8cc2fcda14..77159ef62b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBackendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Router/getBackendIncomingBandwidth.md index dec35c6a27..429f1055f5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBackendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBackendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBackendIncomingBandwidth-example) {#getBackendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBackendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getBackendNetworkComponents.md index da5b83e5d6..0122e3d007 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBackendNetworkComponents-example) {#getBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBackendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Router/getBackendOutgoingBandwidth.md index 6df871571a..0b35eb31c2 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBackendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBackendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBackendOutgoingBandwidth-example) {#getBackendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBackendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBackendRouters.md b/content/reference/services/SoftLayer_Hardware_Router/getBackendRouters.md index e6711d38ba..0da83cbd00 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBackendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBackendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBackendRouters-example) {#getBackendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBackendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllocation.md index 21889b7443..7bd4f07012 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllotmentDetail.md b/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllotmentDetail.md index fb0b9b1202..75f37b2177 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllotmentDetail.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBandwidthAllotmentDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentDetail-example) {#getBandwidthAllotmentDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBandwidthAllotmentDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBenchmarkCertifications.md b/content/reference/services/SoftLayer_Hardware_Router/getBenchmarkCertifications.md index a253e284a1..3f9c6a9045 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBenchmarkCertifications.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBenchmarkCertifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBenchmarkCertifications-example) {#getBenchmarkCertifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBenchmarkCertifications' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBillingItem.md b/content/reference/services/SoftLayer_Hardware_Router/getBillingItem.md index a658da70a1..e48d2891df 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getBillingItemFlag.md index 4d5bc7221a..0c77ed7ac3 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBillingItemFlag-example) {#getBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBlockCancelBecauseDisconnectedFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getBlockCancelBecauseDisconnectedFlag.md index 56f1d5705e..4901d18cd1 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBlockCancelBecauseDisconnectedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBlockCancelBecauseDisconnectedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBlockCancelBecauseDisconnectedFlag-example) {#getBlockCancelBecauseDisconnectedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBlockCancelBecauseDisconnectedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBoundSubnets.md b/content/reference/services/SoftLayer_Hardware_Router/getBoundSubnets.md index c14e517b76..1f84e5d7bb 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBoundSubnets.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBoundSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBoundSubnets-example) {#getBoundSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBoundSubnets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getBusinessContinuanceInsuranceFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getBusinessContinuanceInsuranceFlag.md index cad6959ae1..c6c9a380dc 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getBusinessContinuanceInsuranceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getBusinessContinuanceInsuranceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getBusinessContinuanceInsuranceFlag-example) {#getBusinessContinuanceInsuranceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getBusinessContinuanceInsuranceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getChildrenHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getChildrenHardware.md index 3326afac6c..7ebc1fa787 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getChildrenHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getChildrenHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getChildrenHardware-example) {#getChildrenHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getChildrenHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getComponentDetailsXML.md b/content/reference/services/SoftLayer_Hardware_Router/getComponentDetailsXML.md index c347a9c8d8..f8d5d8832b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getComponentDetailsXML.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getComponentDetailsXML.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getComponentDetailsXML-example) {#getComponentDetailsXML-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getComponentDetailsXML' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getComponents.md index b263f2ee87..f993ad9e13 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getComponents-example) {#getComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getContinuousDataProtectionSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getContinuousDataProtectionSoftwareComponent.md index ffa6de6eb5..954ff325cc 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getContinuousDataProtectionSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getContinuousDataProtectionSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getContinuousDataProtectionSoftwareComponent-example) {#getContinuousDataProtectionSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getContinuousDataProtectionSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getCreateObjectOptions.md b/content/reference/services/SoftLayer_Hardware_Router/getCreateObjectOptions.md index d129e7324a..6c248e4069 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getCreateObjectOptions.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getCreateObjectOptions.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getCreateObjectOptions-example) {#getCreateObjectOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/getCreateObjectOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillableBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillableBandwidthUsage.md index 379886b736..b68f932c92 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillableBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillableBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getCurrentBillableBandwidthUsage-example) {#getCurrentBillableBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getCurrentBillableBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingDetail.md b/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingDetail.md index 7378b498c1..765ba29b49 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingDetail.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getCurrentBillingDetail-example) {#getCurrentBillingDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getCurrentBillingDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingTotal.md b/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingTotal.md index 970ca7039d..76c4de5c5c 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingTotal.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getCurrentBillingTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getCurrentBillingTotal-example) {#getCurrentBillingTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getCurrentBillingTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDailyAverage.md b/content/reference/services/SoftLayer_Hardware_Router/getDailyAverage.md index aae26e77f3..e08b7be4a5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDailyAverage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDailyAverage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDailyAverage-example) {#getDailyAverage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDailyAverage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDatacenter.md b/content/reference/services/SoftLayer_Hardware_Router/getDatacenter.md index 8d294c6747..2bc83f6683 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDatacenter.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDatacenterName.md b/content/reference/services/SoftLayer_Hardware_Router/getDatacenterName.md index 2922fac19e..fe56b1a996 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDatacenterName.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDatacenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDatacenterName-example) {#getDatacenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDatacenterName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDaysInSparePool.md b/content/reference/services/SoftLayer_Hardware_Router/getDaysInSparePool.md index f5db163c35..611b896ee6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDaysInSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDaysInSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDaysInSparePool-example) {#getDaysInSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDaysInSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkHardware.md index a4cd2a0ae0..85901032f0 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownlinkHardware-example) {#getDownlinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownlinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkNetworkHardware.md index 5aa805c4bd..316dc6c571 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownlinkNetworkHardware-example) {#getDownlinkNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownlinkNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkServers.md b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkServers.md index da19cef0a4..fe80548c47 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkServers.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownlinkServers-example) {#getDownlinkServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownlinkServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkVirtualGuests.md index 6ac90c2955..0edab6b79b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownlinkVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownlinkVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownlinkVirtualGuests-example) {#getDownlinkVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownlinkVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamHardwareBindings.md b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamHardwareBindings.md index 5084a8229e..890b9b45f8 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamHardwareBindings.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamHardwareBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownstreamHardwareBindings-example) {#getDownstreamHardwareBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownstreamHardwareBindings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardware.md index c75f6de71d..f89d3cc5ef 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardware-example) {#getDownstreamNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownstreamNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardwareWithIncidents.md b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardwareWithIncidents.md index 16730b65b4..6200383ae4 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardwareWithIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamNetworkHardwareWithIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardwareWithIncidents-example) {#getDownstreamNetworkHardwareWithIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownstreamNetworkHardwareWithIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamServers.md b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamServers.md index 6364c59410..c8ec3af3da 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamServers.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownstreamServers-example) {#getDownstreamServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownstreamServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamVirtualGuests.md index 8b0dc31f33..3ea873e2cd 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDownstreamVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDownstreamVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDownstreamVirtualGuests-example) {#getDownstreamVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDownstreamVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getDriveControllers.md b/content/reference/services/SoftLayer_Hardware_Router/getDriveControllers.md index 89a9ca4053..c68d636c2c 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getDriveControllers.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getDriveControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getDriveControllers-example) {#getDriveControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getDriveControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Router/getEvaultNetworkStorage.md index 94c4744acc..cec4935e7a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFirewallServiceComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getFirewallServiceComponent.md index 15821a524d..f3d48c6108 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFirewallServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFirewallServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFirewallServiceComponent-example) {#getFirewallServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFirewallServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFixedConfigurationPreset.md b/content/reference/services/SoftLayer_Hardware_Router/getFixedConfigurationPreset.md index 605614096f..7cb6b1e9e5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFixedConfigurationPreset.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFixedConfigurationPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFixedConfigurationPreset-example) {#getFixedConfigurationPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFixedConfigurationPreset' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFrontendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Router/getFrontendIncomingBandwidth.md index e14fe837ac..d4dbc664a0 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFrontendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFrontendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFrontendIncomingBandwidth-example) {#getFrontendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFrontendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFrontendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getFrontendNetworkComponents.md index fe3ec47973..6280abe59f 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFrontendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFrontendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFrontendNetworkComponents-example) {#getFrontendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFrontendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFrontendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Router/getFrontendOutgoingBandwidth.md index 13972d3506..2dc714325b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFrontendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFrontendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFrontendOutgoingBandwidth-example) {#getFrontendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFrontendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFrontendRouters.md b/content/reference/services/SoftLayer_Hardware_Router/getFrontendRouters.md index 741e5b1a22..acd420b76e 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFrontendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFrontendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFrontendRouters-example) {#getFrontendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFrontendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getFutureBillingItem.md b/content/reference/services/SoftLayer_Hardware_Router/getFutureBillingItem.md index c703b5fcf8..5dde972542 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getFutureBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getFutureBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getFutureBillingItem-example) {#getFutureBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getFutureBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Hardware_Router/getGlobalIdentifier.md index 028e3cbfb5..d8e91abc3a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHardDrives.md b/content/reference/services/SoftLayer_Hardware_Router/getHardDrives.md index 6d0dd6bf2f..ceaeafdb8d 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHardDrives.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHardDrives.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHardDrives-example) {#getHardDrives-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHardDrives' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHardwareChassis.md b/content/reference/services/SoftLayer_Hardware_Router/getHardwareChassis.md index 463cbca013..7063786599 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHardwareChassis.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHardwareChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHardwareChassis-example) {#getHardwareChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHardwareChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunction.md b/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunction.md index 21ded90783..65d25b5811 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunction.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHardwareFunction-example) {#getHardwareFunction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHardwareFunction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunctionDescription.md b/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunctionDescription.md index 77ef7e69db..a81b6dc567 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunctionDescription.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHardwareFunctionDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHardwareFunctionDescription-example) {#getHardwareFunctionDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHardwareFunctionDescription' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHardwareState.md b/content/reference/services/SoftLayer_Hardware_Router/getHardwareState.md index 900aa76be9..3b61d04640 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHardwareState.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHardwareState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHardwareState-example) {#getHardwareState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHardwareState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHardwareStatus.md b/content/reference/services/SoftLayer_Hardware_Router/getHardwareStatus.md index f683cbb8ce..5f7f1af646 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHardwareStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHardwareStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHardwareStatus-example) {#getHardwareStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHardwareStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHasTrustedPlatformModuleBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getHasTrustedPlatformModuleBillingItemFlag.md index 70cc6bef0d..c089f18cbe 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHasTrustedPlatformModuleBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHasTrustedPlatformModuleBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHasTrustedPlatformModuleBillingItemFlag-example) {#getHasTrustedPlatformModuleBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHasTrustedPlatformModuleBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHostIpsSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getHostIpsSoftwareComponent.md index 459b142031..914a207d37 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHostIpsSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHostIpsSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHostIpsSoftwareComponent-example) {#getHostIpsSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHostIpsSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHourlyBandwidth.md b/content/reference/services/SoftLayer_Hardware_Router/getHourlyBandwidth.md index 8453fad2f6..5f2d1eeaf0 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHourlyBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHourlyBandwidth.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHourlyBandwidth-example) {#getHourlyBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHourlyBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getHourlyBillingFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getHourlyBillingFlag.md index 476099dce8..8202023bd9 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getHourlyBillingFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getHourlyBillingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getHourlyBillingFlag-example) {#getHourlyBillingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getHourlyBillingFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getInboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Router/getInboundBandwidthUsage.md index b90debae9a..54f27e1ec2 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getInboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getInboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getInboundBandwidthUsage-example) {#getInboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getInboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Router/getInboundPublicBandwidthUsage.md index a54f8eb01c..a010a1f068 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getIsBillingTermChangeAvailableFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getIsBillingTermChangeAvailableFlag.md index 065e5ffe61..c9824899e2 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getIsBillingTermChangeAvailableFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getIsBillingTermChangeAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getIsBillingTermChangeAvailableFlag-example) {#getIsBillingTermChangeAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getIsBillingTermChangeAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getLastTransaction.md b/content/reference/services/SoftLayer_Hardware_Router/getLastTransaction.md index 76e586f101..ea48f4cb98 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getLastTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getLastTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getLastTransaction-example) {#getLastTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getLastTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getLatestNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_Router/getLatestNetworkMonitorIncident.md index 8d4aa6c655..04ed7c2008 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getLatestNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getLatestNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getLatestNetworkMonitorIncident-example) {#getLatestNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getLatestNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getLocalDiskStorageCapabilityFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getLocalDiskStorageCapabilityFlag.md index fa7b88a88e..fb783e2626 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getLocalDiskStorageCapabilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getLocalDiskStorageCapabilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getLocalDiskStorageCapabilityFlag-example) {#getLocalDiskStorageCapabilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getLocalDiskStorageCapabilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getLocation.md b/content/reference/services/SoftLayer_Hardware_Router/getLocation.md index d744de7d2d..18a96b8b78 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getLocation.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getLocationPathString.md b/content/reference/services/SoftLayer_Hardware_Router/getLocationPathString.md index dd90c96139..f049c14c06 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getLocationPathString.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getLocationPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getLocationPathString-example) {#getLocationPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getLocationPathString' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getLockboxNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Router/getLockboxNetworkStorage.md index a74c896614..4000d3a1fb 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getLockboxNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getLockboxNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getLockboxNetworkStorage-example) {#getLockboxNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getLockboxNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getManagedResourceFlag.md index d7394af6c8..976f195b93 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMemory.md b/content/reference/services/SoftLayer_Hardware_Router/getMemory.md index e5ee0416f6..7149486b28 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMemory.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMemory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMemory-example) {#getMemory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMemory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMemoryCapacity.md b/content/reference/services/SoftLayer_Hardware_Router/getMemoryCapacity.md index 413302e616..50dee6407a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMemoryCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMemoryCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMemoryCapacity-example) {#getMemoryCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMemoryCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Hardware_Router/getMetricTrackingObject.md index 49ea80e47c..d2b113977f 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getModules.md b/content/reference/services/SoftLayer_Hardware_Router/getModules.md index 4a4be82540..9ffadc3526 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getModules.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getModules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getModules-example) {#getModules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getModules' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMonitoringRobot.md b/content/reference/services/SoftLayer_Hardware_Router/getMonitoringRobot.md index b74c48e442..48ae2e6ded 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMonitoringRobot.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMonitoringRobot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMonitoringRobot-example) {#getMonitoringRobot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMonitoringRobot' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceComponent.md index 0b9a8803df..5d7de408f6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMonitoringServiceComponent-example) {#getMonitoringServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMonitoringServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceEligibilityFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceEligibilityFlag.md index 66bb4cde47..b5e74f10a7 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceEligibilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMonitoringServiceEligibilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMonitoringServiceEligibilityFlag-example) {#getMonitoringServiceEligibilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMonitoringServiceEligibilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getMotherboard.md b/content/reference/services/SoftLayer_Hardware_Router/getMotherboard.md index bf95ab60bd..da4d9d7fa6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getMotherboard.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getMotherboard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getMotherboard-example) {#getMotherboard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getMotherboard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkCards.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkCards.md index 496065c3e7..24f2964326 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkCards.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkCards.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkCards-example) {#getNetworkCards-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkCards' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkComponents.md index 56f9cdabf8..55aae67afa 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMember.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMember.md index 08b43ec297..9399e24a29 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMember.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkGatewayMember-example) {#getNetworkGatewayMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkGatewayMember' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMemberFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMemberFlag.md index 6529401f13..0c78a2cc5d 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMemberFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkGatewayMemberFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkGatewayMemberFlag-example) {#getNetworkGatewayMemberFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkGatewayMemberFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkManagementIpAddress.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkManagementIpAddress.md index f13992abdc..4f4e2078e6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkManagementIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkManagementIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkManagementIpAddress-example) {#getNetworkManagementIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkManagementIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownHardware.md index 60c2f5570c..34cea753dd 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownHardware-example) {#getNetworkMonitorAttachedDownHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkMonitorAttachedDownHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownVirtualGuests.md index e3d61e5c41..c4282cc4de 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorAttachedDownVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownVirtualGuests-example) {#getNetworkMonitorAttachedDownVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkMonitorAttachedDownVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorIncidents.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorIncidents.md index 961ba50a8d..60a5d6d810 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitorIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkMonitorIncidents-example) {#getNetworkMonitorIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkMonitorIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitors.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitors.md index d996f2226f..fe65cfa71e 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitors.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkMonitors-example) {#getNetworkMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkMonitors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatus.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatus.md index 7f1443413f..c32b63258c 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkStatus-example) {#getNetworkStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatusAttribute.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatusAttribute.md index eb5d69a5ba..64cd24680b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatusAttribute.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkStatusAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkStatusAttribute-example) {#getNetworkStatusAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkStatusAttribute' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkStorage.md index 622a09711b..967be4a015 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNetworkVlans.md b/content/reference/services/SoftLayer_Hardware_Router/getNetworkVlans.md index f93d4627b3..db75bcb523 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNextBillingCycleBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_Router/getNextBillingCycleBandwidthAllocation.md index 8a2326e542..d7852792d9 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNextBillingCycleBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNextBillingCycleBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNextBillingCycleBandwidthAllocation-example) {#getNextBillingCycleBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNextBillingCycleBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNotesHistory.md b/content/reference/services/SoftLayer_Hardware_Router/getNotesHistory.md index 597377803c..d13adca4a9 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNotesHistory.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNotesHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNotesHistory-example) {#getNotesHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNotesHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNvRamCapacity.md b/content/reference/services/SoftLayer_Hardware_Router/getNvRamCapacity.md index 7cf8a51571..2272266d65 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNvRamCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNvRamCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNvRamCapacity-example) {#getNvRamCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNvRamCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getNvRamComponentModels.md b/content/reference/services/SoftLayer_Hardware_Router/getNvRamComponentModels.md index 9caa2413f4..c92dbdf0e0 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getNvRamComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getNvRamComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getNvRamComponentModels-example) {#getNvRamComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getNvRamComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getObject.md b/content/reference/services/SoftLayer_Hardware_Router/getObject.md index 48cccbde77..18ef399e5f 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystem.md index c7b5f6a3f9..0552536732 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getOperatingSystem-example) {#getOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystemReferenceCode.md b/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystemReferenceCode.md index dcc275f3b8..7ae0ad9984 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystemReferenceCode.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getOperatingSystemReferenceCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getOperatingSystemReferenceCode-example) {#getOperatingSystemReferenceCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getOperatingSystemReferenceCode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getOutboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Router/getOutboundBandwidthUsage.md index 651d7dca97..98f2674e24 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getOutboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getOutboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getOutboundBandwidthUsage-example) {#getOutboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getOutboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Router/getOutboundPublicBandwidthUsage.md index 3fbe124b8f..a06d9b5587 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getParentBay.md b/content/reference/services/SoftLayer_Hardware_Router/getParentBay.md index 437acad467..b78cb4f123 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getParentBay.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getParentBay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getParentBay-example) {#getParentBay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getParentBay' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getParentHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getParentHardware.md index 563150243c..b8423181fa 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getParentHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getParentHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getParentHardware-example) {#getParentHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getParentHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPointOfPresenceLocation.md b/content/reference/services/SoftLayer_Hardware_Router/getPointOfPresenceLocation.md index dfb8f1967d..6569f67d19 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPointOfPresenceLocation.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPointOfPresenceLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPointOfPresenceLocation-example) {#getPointOfPresenceLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPointOfPresenceLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPowerComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getPowerComponents.md index 52d6f9c6cb..455c5af6a1 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPowerComponents-example) {#getPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPowerSupply.md b/content/reference/services/SoftLayer_Hardware_Router/getPowerSupply.md index c892ddf776..5922e0481d 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPowerSupply.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPowerSupply.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPowerSupply-example) {#getPowerSupply-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPowerSupply' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendIpAddress.md index bdc30b9e63..6adfbd8f69 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendNetworkComponent.md index 9be4ad910b..edaa14a422 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryBackendNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPrimaryBackendNetworkComponent-example) {#getPrimaryBackendNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPrimaryBackendNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryIpAddress.md index 4fddd1bf0a..6eb4fcfa82 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryNetworkComponent.md index e811463758..5cd25480d8 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPrimaryNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPrimaryNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPrimaryNetworkComponent-example) {#getPrimaryNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPrimaryNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPrivateBandwidthData.md b/content/reference/services/SoftLayer_Hardware_Router/getPrivateBandwidthData.md index 1ad2f51552..65942253b2 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPrivateBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPrivateBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPrivateBandwidthData-example) {#getPrivateBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPrivateBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getPrivateNetworkOnlyFlag.md index b68751e7df..032e56bd16 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getProcessorCoreAmount.md b/content/reference/services/SoftLayer_Hardware_Router/getProcessorCoreAmount.md index 8854c9cff2..9f3cffdda8 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getProcessorCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getProcessorCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getProcessorCoreAmount-example) {#getProcessorCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getProcessorCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getProcessorPhysicalCoreAmount.md b/content/reference/services/SoftLayer_Hardware_Router/getProcessorPhysicalCoreAmount.md index de7c8125cc..8c743c57a4 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getProcessorPhysicalCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getProcessorPhysicalCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getProcessorPhysicalCoreAmount-example) {#getProcessorPhysicalCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getProcessorPhysicalCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getProcessors.md b/content/reference/services/SoftLayer_Hardware_Router/getProcessors.md index 0ad077c3af..a884261725 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getProcessors.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getProcessors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getProcessors-example) {#getProcessors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getProcessors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getPublicBandwidthData.md b/content/reference/services/SoftLayer_Hardware_Router/getPublicBandwidthData.md index 6b19cdb8e9..b2c265ad91 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getPublicBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getPublicBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getPublicBandwidthData-example) {#getPublicBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getPublicBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getRack.md b/content/reference/services/SoftLayer_Hardware_Router/getRack.md index 88778fd2db..89c5172282 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getRack.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getRack-example) {#getRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getRaidControllers.md b/content/reference/services/SoftLayer_Hardware_Router/getRaidControllers.md index 412f19c202..80cb154d33 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getRaidControllers.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getRaidControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getRaidControllers-example) {#getRaidControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getRaidControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getRecentEvents.md b/content/reference/services/SoftLayer_Hardware_Router/getRecentEvents.md index 398d9017f4..2c6d458c98 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementAccounts.md b/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementAccounts.md index 8b73b1050f..b430d4f8ea 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementAccounts.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getRemoteManagementAccounts-example) {#getRemoteManagementAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getRemoteManagementAccounts' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementComponent.md b/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementComponent.md index 41f5b02cf2..5fc2118d20 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getRemoteManagementComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getRemoteManagementComponent-example) {#getRemoteManagementComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getRemoteManagementComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getResourceConfigurations.md b/content/reference/services/SoftLayer_Hardware_Router/getResourceConfigurations.md index 07e04b3da2..5fbdd9c726 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getResourceConfigurations.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getResourceConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getResourceConfigurations-example) {#getResourceConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getResourceConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupMemberReferences.md b/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupMemberReferences.md index e0dd0c1e8f..ac41cd2f05 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupMemberReferences.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupMemberReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getResourceGroupMemberReferences-example) {#getResourceGroupMemberReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getResourceGroupMemberReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupRoles.md b/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupRoles.md index a81f430cbb..1d9b6709f7 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupRoles.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getResourceGroupRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getResourceGroupRoles-example) {#getResourceGroupRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getResourceGroupRoles' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getResourceGroups.md b/content/reference/services/SoftLayer_Hardware_Router/getResourceGroups.md index cd45e2560c..54a0fe0b0e 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getResourceGroups.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getResourceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getResourceGroups-example) {#getResourceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getResourceGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getRouters.md b/content/reference/services/SoftLayer_Hardware_Router/getRouters.md index f2536409df..8b7be6da75 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getRouters.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getRouters-example) {#getRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSanStorageCapabilityFlag.md b/content/reference/services/SoftLayer_Hardware_Router/getSanStorageCapabilityFlag.md index 8d16a7abf8..dd200243a5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSanStorageCapabilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSanStorageCapabilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSanStorageCapabilityFlag-example) {#getSanStorageCapabilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSanStorageCapabilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Hardware_Router/getSecurityScanRequests.md index dbb9dcb6aa..18c7533bf0 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSensorData.md b/content/reference/services/SoftLayer_Hardware_Router/getSensorData.md index 5586b842e3..ec34e68200 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSensorData.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSensorData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSensorData-example) {#getSensorData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSensorData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSensorDataWithGraphs.md b/content/reference/services/SoftLayer_Hardware_Router/getSensorDataWithGraphs.md index e4f55bb962..c3b89152d6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSensorDataWithGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSensorDataWithGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSensorDataWithGraphs-example) {#getSensorDataWithGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSensorDataWithGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getServerFanSpeedGraphs.md b/content/reference/services/SoftLayer_Hardware_Router/getServerFanSpeedGraphs.md index 86cc73873d..57d8b5d3de 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getServerFanSpeedGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getServerFanSpeedGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getServerFanSpeedGraphs-example) {#getServerFanSpeedGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getServerFanSpeedGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getServerPowerState.md b/content/reference/services/SoftLayer_Hardware_Router/getServerPowerState.md index e2ec46eda9..5ab89afad5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getServerPowerState.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getServerPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getServerPowerState-example) {#getServerPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getServerPowerState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getServerRoom.md b/content/reference/services/SoftLayer_Hardware_Router/getServerRoom.md index 622c44e06f..5345a8f1a1 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getServerRoom.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getServerRoom.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getServerRoom-example) {#getServerRoom-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getServerRoom' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getServerTemperatureGraphs.md b/content/reference/services/SoftLayer_Hardware_Router/getServerTemperatureGraphs.md index 81f4f879d9..8a75029839 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getServerTemperatureGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getServerTemperatureGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getServerTemperatureGraphs-example) {#getServerTemperatureGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getServerTemperatureGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getServiceProvider.md b/content/reference/services/SoftLayer_Hardware_Router/getServiceProvider.md index 917b50be5d..72534f9135 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSoftwareComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getSoftwareComponents.md index c00d5d2ca5..5a2ea6ed46 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSoftwareComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSoftwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSoftwareComponents-example) {#getSoftwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSoftwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSparePoolBillingItem.md b/content/reference/services/SoftLayer_Hardware_Router/getSparePoolBillingItem.md index 984778ae28..75e93a3017 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSparePoolBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSparePoolBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSparePoolBillingItem-example) {#getSparePoolBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSparePoolBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getSshKeys.md b/content/reference/services/SoftLayer_Hardware_Router/getSshKeys.md index 823759f612..3b9d84897a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getSshKeys.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getStorageGroups.md b/content/reference/services/SoftLayer_Hardware_Router/getStorageGroups.md index ad63a26541..c386ba3f26 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getStorageNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getStorageNetworkComponents.md index 356214423d..8e0a3faed6 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getStorageNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getStorageNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getStorageNetworkComponents-example) {#getStorageNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getStorageNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getTagReferences.md b/content/reference/services/SoftLayer_Hardware_Router/getTagReferences.md index 4de701ba22..289aae52a1 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getTagReferences.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getTopLevelLocation.md b/content/reference/services/SoftLayer_Hardware_Router/getTopLevelLocation.md index a89ccb20cc..00d1664e39 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getTopLevelLocation.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getTopLevelLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getTopLevelLocation-example) {#getTopLevelLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getTopLevelLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getTransactionHistory.md b/content/reference/services/SoftLayer_Hardware_Router/getTransactionHistory.md index 5e2f2d3291..3a77ca72f2 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getTransactionHistory.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getTransactionHistory.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getTransactionHistory-example) {#getTransactionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getTransactionHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Hardware_Router/getUpgradeItemPrices.md index f5405d8176..a5163811b9 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getUpgradeRequest.md b/content/reference/services/SoftLayer_Hardware_Router/getUpgradeRequest.md index d55ccdd295..bb604ac047 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getUpgradeableActiveComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getUpgradeableActiveComponents.md index 489697e792..e7a5240f9a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getUpgradeableActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getUpgradeableActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getUpgradeableActiveComponents-example) {#getUpgradeableActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getUpgradeableActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getUplinkHardware.md b/content/reference/services/SoftLayer_Hardware_Router/getUplinkHardware.md index 0b746c88b9..7df01e186b 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getUplinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getUplinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getUplinkHardware-example) {#getUplinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getUplinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getUplinkNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Router/getUplinkNetworkComponents.md index 1e0fa99522..3bb09a7018 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getUplinkNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getUplinkNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getUplinkNetworkComponents-example) {#getUplinkNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getUplinkNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getUserData.md b/content/reference/services/SoftLayer_Hardware_Router/getUserData.md index dd21e679f4..c3c20af568 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getUserData.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getUserData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getUserData-example) {#getUserData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getUserData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassis.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassis.md index 36296cead6..3d0ebf3984 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassis.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualChassis-example) {#getVirtualChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassisSiblings.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassisSiblings.md index 9779b68602..fc79a13597 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassisSiblings.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualChassisSiblings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualChassisSiblings-example) {#getVirtualChassisSiblings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualChassisSiblings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualHost.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualHost.md index 5972621445..0d7e964482 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualHost-example) {#getVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualLicenses.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualLicenses.md index 634653eb6f..8794a242a2 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualLicenses-example) {#getVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualRack.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualRack.md index f712f31a10..919e7819d3 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualRack.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualRack-example) {#getVirtualRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackId.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackId.md index adef31da9f..f5a184ff3f 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackId.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualRackId-example) {#getVirtualRackId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualRackId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackName.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackName.md index d5085c5472..14fef01748 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackName.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualRackName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualRackName-example) {#getVirtualRackName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualRackName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/getVirtualizationPlatform.md b/content/reference/services/SoftLayer_Hardware_Router/getVirtualizationPlatform.md index c9d0ab530e..0c356f711e 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/getVirtualizationPlatform.md +++ b/content/reference/services/SoftLayer_Hardware_Router/getVirtualizationPlatform.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#getVirtualizationPlatform-example) {#getVirtualizationPlatform-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/getVirtualizationPlatform' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/importVirtualHost.md b/content/reference/services/SoftLayer_Hardware_Router/importVirtualHost.md index e621a06423..3dc38b0b6c 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/importVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_Router/importVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#importVirtualHost-example) {#importVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/importVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/isPingable.md b/content/reference/services/SoftLayer_Hardware_Router/isPingable.md index d4f492c1d7..8199c744f5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/isPingable.md +++ b/content/reference/services/SoftLayer_Hardware_Router/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/ping.md b/content/reference/services/SoftLayer_Hardware_Router/ping.md index e771055ef9..6c93006e90 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/ping.md +++ b/content/reference/services/SoftLayer_Hardware_Router/ping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#ping-example) {#ping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/ping' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/powerCycle.md b/content/reference/services/SoftLayer_Hardware_Router/powerCycle.md index 0bd2f4b8a4..3c2e9eac57 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/powerCycle.md +++ b/content/reference/services/SoftLayer_Hardware_Router/powerCycle.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#powerCycle-example) {#powerCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/powerCycle' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/powerOff.md b/content/reference/services/SoftLayer_Hardware_Router/powerOff.md index 60af900715..e795df9d91 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/powerOff.md +++ b/content/reference/services/SoftLayer_Hardware_Router/powerOff.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#powerOff-example) {#powerOff-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/powerOff' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/powerOn.md b/content/reference/services/SoftLayer_Hardware_Router/powerOn.md index 03a557373d..ee403841d3 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/powerOn.md +++ b/content/reference/services/SoftLayer_Hardware_Router/powerOn.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#powerOn-example) {#powerOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/powerOn' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/rebootDefault.md b/content/reference/services/SoftLayer_Hardware_Router/rebootDefault.md index 78d877b773..7164dd0d22 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/rebootDefault.md +++ b/content/reference/services/SoftLayer_Hardware_Router/rebootDefault.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#rebootDefault-example) {#rebootDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/rebootDefault' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/rebootHard.md b/content/reference/services/SoftLayer_Hardware_Router/rebootHard.md index 43f1ee802c..04ce89c6b3 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/rebootHard.md +++ b/content/reference/services/SoftLayer_Hardware_Router/rebootHard.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#rebootHard-example) {#rebootHard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/rebootHard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/rebootSoft.md b/content/reference/services/SoftLayer_Hardware_Router/rebootSoft.md index 628c3de46f..fc69c94e47 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/rebootSoft.md +++ b/content/reference/services/SoftLayer_Hardware_Router/rebootSoft.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#rebootSoft-example) {#rebootSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/rebootSoft' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/refreshDeviceStatus.md b/content/reference/services/SoftLayer_Hardware_Router/refreshDeviceStatus.md index 771ae1ac9d..f1b928663a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/refreshDeviceStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Router/refreshDeviceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#refreshDeviceStatus-example) {#refreshDeviceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/refreshDeviceStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorage.md index fec1e27739..0f669e4dd5 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorage-example) {#removeAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/removeAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorageList.md index 3c78b58ac2..34c6a14e3a 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_Router/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/removeTags.md b/content/reference/services/SoftLayer_Hardware_Router/removeTags.md index 5347750f0d..8ce3b3a3fc 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/removeTags.md +++ b/content/reference/services/SoftLayer_Hardware_Router/removeTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#removeTags-example) {#removeTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/removeTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/setTags.md b/content/reference/services/SoftLayer_Hardware_Router/setTags.md index c5f03cd856..1ab57876b0 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/setTags.md +++ b/content/reference/services/SoftLayer_Hardware_Router/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Router/updateIpmiPassword.md b/content/reference/services/SoftLayer_Hardware_Router/updateIpmiPassword.md index f43c096bf4..dfbf1944ef 100644 --- a/content/reference/services/SoftLayer_Hardware_Router/updateIpmiPassword.md +++ b/content/reference/services/SoftLayer_Hardware_Router/updateIpmiPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Router" --- -### Curl Example +# [REST Example](#updateIpmiPassword-example) {#updateIpmiPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Router/{SoftLayer_Hardware_RouterID}/updateIpmiPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePrivatePort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePrivatePort.md index 119a972d1f..405db935c9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePrivatePort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePrivatePort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#activatePrivatePort-example) {#activatePrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/activatePrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePublicPort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePublicPort.md index 36cb532a39..97bfc0624e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePublicPort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/activatePublicPort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#activatePublicPort-example) {#activatePublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/activatePublicPort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorage.md index 40db15914b..38c533f110 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorageList.md index 916f0e4c9f..09b60d3242 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/bootToRescueLayer.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/bootToRescueLayer.md index acbf23781a..26dfafcc71 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/bootToRescueLayer.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/bootToRescueLayer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#bootToRescueLayer-example) {#bootToRescueLayer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/bootToRescueLayer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/captureImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/captureImage.md index 7d2b2fc4d4..3892e2ae29 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/captureImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/captureImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#captureImage-example) {#captureImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/captureImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareReflashTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareReflashTransaction.md index d32e205516..4845c37f04 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareReflashTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareReflashTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#createFirmwareReflashTransaction-example) {#createFirmwareReflashTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/createFirmwareReflashTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareUpdateTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareUpdateTransaction.md index 1dc7304993..f856cd2795 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/createFirmwareUpdateTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#createFirmwareUpdateTransaction-example) {#createFirmwareUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/createFirmwareUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/createHyperThreadingUpdateTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/createHyperThreadingUpdateTransaction.md index b618148c64..39664eb6f4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/createHyperThreadingUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/createHyperThreadingUpdateTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#createHyperThreadingUpdateTransaction-example) {#createHyperThreadingUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/createHyperThreadingUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/createObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/createObject.md index c61ad49feb..719a757df8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/createObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/createObject.md @@ -278,8 +278,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_SecurityModule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_SecurityModule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/createObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/createPostSoftwareInstallTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/createPostSoftwareInstallTransaction.md index 51fbe56d5e..da53088769 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/createPostSoftwareInstallTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/createPostSoftwareInstallTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#createPostSoftwareInstallTransaction-example) {#createPostSoftwareInstallTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/createPostSoftwareInstallTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteObject.md index 423d22f846..00a5c2739d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteObject.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteSoftwareComponentPasswords.md index bbb7376a44..66b5e22ab4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#deleteSoftwareComponentPasswords-example) {#deleteSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/deleteSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteTag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteTag.md index ca3ac712a5..e12b6d0f4c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteTag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/editObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/editObject.md index d049c15df2..eb8feb23ac 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/editObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/editSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/editSoftwareComponentPasswords.md index 4991d1c8df..ee4a36058c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/editSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/editSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#editSoftwareComponentPasswords-example) {#editSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/editSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/executeRemoteScript.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/executeRemoteScript.md index 650637434e..ae2bd1795d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/executeRemoteScript.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/executeRemoteScript.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#executeRemoteScript-example) {#executeRemoteScript-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/executeRemoteScript' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/findByIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/findByIpAddress.md index 806d194316..65193ae6af 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/findByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/findByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#findByIpAddress-example) {#findByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/findByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/generateOrderTemplate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/generateOrderTemplate.md index 0c6d218199..c29630c163 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/generateOrderTemplate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/generateOrderTemplate.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#generateOrderTemplate-example) {#generateOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/generateOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAccount.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAccount.md index 475e2885d8..b64e0cc98c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveComponents.md index 784b2865f3..ba1bab1998 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getActiveComponents-example) {#getActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkFirewallBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkFirewallBillingItem.md index b6dabc76f3..985f33fb03 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkFirewallBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkFirewallBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getActiveNetworkFirewallBillingItem-example) {#getActiveNetworkFirewallBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getActiveNetworkFirewallBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkMonitorIncident.md index bccd493200..450726e7dd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getActiveNetworkMonitorIncident-example) {#getActiveNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getActiveNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTickets.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTickets.md index 85c6082bfe..c0ace22b3b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTickets.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getActiveTickets-example) {#getActiveTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getActiveTickets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransaction.md index e0c07c109c..0069911593 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransactions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransactions.md index 3aaccd3692..7e3fb30803 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllPowerComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllPowerComponents.md index e2808a44dc..0740867705 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAllPowerComponents-example) {#getAllPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAllPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedHost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedHost.md index 62761aba9d..0e99310353 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorage.md index 359da1ebc7..eb00817f13 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorageReplicas.md index 6441a5f9a6..6c5dae4ee5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAntivirusSpywareSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAntivirusSpywareSoftwareComponent.md index ac53693783..84ff94cdc3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAntivirusSpywareSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAntivirusSpywareSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAntivirusSpywareSoftwareComponent-example) {#getAntivirusSpywareSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAntivirusSpywareSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttachedNetworkStorages.md index 7d15b5b4ac..ff1d2ca7e3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttributes.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttributes.md index 3ef2f8d002..54672717e1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttributes.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableBillingTermChangePrices.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableBillingTermChangePrices.md index f17a8565ec..26d0c6910d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableBillingTermChangePrices.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableBillingTermChangePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAvailableBillingTermChangePrices-example) {#getAvailableBillingTermChangePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAvailableBillingTermChangePrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableMonitoring.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableMonitoring.md index d8d9afbba3..6e4f5c8fda 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableMonitoring.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableMonitoring.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAvailableMonitoring-example) {#getAvailableMonitoring-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAvailableMonitoring' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableNetworkStorages.md index d51e95dc0f..a376d20cfa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyBandwidthUsage.md index 371583effc..d5d34efade 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAverageDailyBandwidthUsage-example) {#getAverageDailyBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAverageDailyBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPrivateBandwidthUsage.md index 84c31ed93d..d059faebc9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAverageDailyPrivateBandwidthUsage-example) {#getAverageDailyPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAverageDailyPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPublicBandwidthUsage.md index 4ad5e8f170..7c87aa9c5f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendBandwidthUsage.md index 30a7ffe8b6..dfb0b3e53d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendBandwidthUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBackendBandwidthUsage-example) {#getBackendBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBackendBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendIncomingBandwidth.md index bd571f2526..34e606edca 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBackendIncomingBandwidth-example) {#getBackendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBackendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendNetworkComponents.md index 1cacafb2f4..946126ffa4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBackendNetworkComponents-example) {#getBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendOutgoingBandwidth.md index e176f6cb16..58e294c359 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBackendOutgoingBandwidth-example) {#getBackendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBackendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendRouters.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendRouters.md index 47e79484fb..31c0ef8bcc 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBackendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBackendRouters-example) {#getBackendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBackendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllocation.md index 5553543532..e335c3502c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllotmentDetail.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllotmentDetail.md index 401fda11ff..b18289800c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllotmentDetail.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthAllotmentDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentDetail-example) {#getBandwidthAllotmentDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBandwidthAllotmentDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthForDateRange.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthForDateRange.md index d0637835fd..c3b81cb28b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthForDateRange.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthForDateRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBandwidthForDateRange-example) {#getBandwidthForDateRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBandwidthForDateRange' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthImage.md index aa0931653c..e6a2672c19 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBandwidthImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBandwidthImage-example) {#getBandwidthImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBandwidthImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBenchmarkCertifications.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBenchmarkCertifications.md index e2a76f1d53..df2f552f19 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBenchmarkCertifications.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBenchmarkCertifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBenchmarkCertifications-example) {#getBenchmarkCertifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBenchmarkCertifications' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCycleBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCycleBandwidthUsage.md index 5628b67402..7823b55892 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCycleBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCycleBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBillingCycleBandwidthUsage-example) {#getBillingCycleBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBillingCycleBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePrivateBandwidthUsage.md index 2e8f275038..0649433d2f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBillingCyclePrivateBandwidthUsage-example) {#getBillingCyclePrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBillingCyclePrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePublicBandwidthUsage.md index 16fcc5122b..8669210900 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingCyclePublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBillingCyclePublicBandwidthUsage-example) {#getBillingCyclePublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBillingCyclePublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItem.md index a5f7e5eb2e..d99817665f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItemFlag.md index 2a535b88d4..39cad7b4a3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBillingItemFlag-example) {#getBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBiosPasswordNullFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBiosPasswordNullFlag.md index 5a311763cf..808e102b9f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBiosPasswordNullFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBiosPasswordNullFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBiosPasswordNullFlag-example) {#getBiosPasswordNullFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBiosPasswordNullFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBlockCancelBecauseDisconnectedFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBlockCancelBecauseDisconnectedFlag.md index bb259e544a..7a3f5863be 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBlockCancelBecauseDisconnectedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBlockCancelBecauseDisconnectedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBlockCancelBecauseDisconnectedFlag-example) {#getBlockCancelBecauseDisconnectedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBlockCancelBecauseDisconnectedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBootModeOptions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBootModeOptions.md index a665108678..7afbf17d3f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBootModeOptions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBootModeOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBootModeOptions-example) {#getBootModeOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBootModeOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBusinessContinuanceInsuranceFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBusinessContinuanceInsuranceFlag.md index dc0d224862..a5ac524091 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getBusinessContinuanceInsuranceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getBusinessContinuanceInsuranceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getBusinessContinuanceInsuranceFlag-example) {#getBusinessContinuanceInsuranceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getBusinessContinuanceInsuranceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCaptureEnabledFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCaptureEnabledFlag.md index e79e64b52c..93107106b3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCaptureEnabledFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCaptureEnabledFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCaptureEnabledFlag-example) {#getCaptureEnabledFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCaptureEnabledFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getChildrenHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getChildrenHardware.md index c89857b9be..54f631aafe 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getChildrenHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getChildrenHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getChildrenHardware-example) {#getChildrenHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getChildrenHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponentDetailsXML.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponentDetailsXML.md index ae728bd29c..4eb5306d75 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponentDetailsXML.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponentDetailsXML.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getComponentDetailsXML-example) {#getComponentDetailsXML-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getComponentDetailsXML' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponents.md index 1708b2cc04..b7473b3187 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getComponents-example) {#getComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getContainsSolidStateDrivesFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getContainsSolidStateDrivesFlag.md index aa40ef2528..d9902cc96d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getContainsSolidStateDrivesFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getContainsSolidStateDrivesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getContainsSolidStateDrivesFlag-example) {#getContainsSolidStateDrivesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getContainsSolidStateDrivesFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getContinuousDataProtectionSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getContinuousDataProtectionSoftwareComponent.md index 1b8d743928..3b2e378047 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getContinuousDataProtectionSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getContinuousDataProtectionSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getContinuousDataProtectionSoftwareComponent-example) {#getContinuousDataProtectionSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getContinuousDataProtectionSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getControlPanel.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getControlPanel.md index d370578918..ed98bb5746 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getControlPanel.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getControlPanel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getControlPanel-example) {#getControlPanel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getControlPanel' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCost.md index 4e03681d76..190d5e5974 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCost-example) {#getCost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCreateObjectOptions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCreateObjectOptions.md index 5613d149aa..3bdaa61174 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCreateObjectOptions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCreateObjectOptions.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCreateObjectOptions-example) {#getCreateObjectOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/getCreateObjectOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBandwidthSummary.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBandwidthSummary.md index 0514404381..2b34deaab6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBandwidthSummary.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBandwidthSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCurrentBandwidthSummary-example) {#getCurrentBandwidthSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCurrentBandwidthSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBenchmarkCertificationResultFile.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBenchmarkCertificationResultFile.md index 776658d2e0..fcfe2d445c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBenchmarkCertificationResultFile.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBenchmarkCertificationResultFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCurrentBenchmarkCertificationResultFile-example) {#getCurrentBenchmarkCertificationResultFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCurrentBenchmarkCertificationResultFile' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillableBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillableBandwidthUsage.md index 5578b4c57b..174960a561 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillableBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillableBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCurrentBillableBandwidthUsage-example) {#getCurrentBillableBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCurrentBillableBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingDetail.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingDetail.md index abedda5fb7..53cb819711 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingDetail.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCurrentBillingDetail-example) {#getCurrentBillingDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCurrentBillingDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingTotal.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingTotal.md index e462e4546b..bbe9652aaf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingTotal.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCurrentBillingTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCurrentBillingTotal-example) {#getCurrentBillingTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCurrentBillingTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerInstalledOperatingSystemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerInstalledOperatingSystemFlag.md index bb6c76cbd1..95cf5471d4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerInstalledOperatingSystemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerInstalledOperatingSystemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCustomerInstalledOperatingSystemFlag-example) {#getCustomerInstalledOperatingSystemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCustomerInstalledOperatingSystemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerOwnedFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerOwnedFlag.md index 6fb864e744..4e9b1b030f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerOwnedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getCustomerOwnedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getCustomerOwnedFlag-example) {#getCustomerOwnedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getCustomerOwnedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDailyAverage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDailyAverage.md index 48f515d5e9..7c6a5adeab 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDailyAverage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDailyAverage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDailyAverage-example) {#getDailyAverage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDailyAverage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenter.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenter.md index e9447b73c9..1a01ea782b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenter.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenterName.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenterName.md index b13e8c9a7e..57f246f284 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenterName.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDatacenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDatacenterName-example) {#getDatacenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDatacenterName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDaysInSparePool.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDaysInSparePool.md index e91eafce88..0c0b5eafb9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDaysInSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDaysInSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDaysInSparePool-example) {#getDaysInSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDaysInSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkHardware.md index 249abcc2fc..83b41e9cd3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownlinkHardware-example) {#getDownlinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownlinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkNetworkHardware.md index 6b45f11825..7f2fe6baa3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownlinkNetworkHardware-example) {#getDownlinkNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownlinkNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkServers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkServers.md index c3c2844902..822ea27119 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkServers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownlinkServers-example) {#getDownlinkServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownlinkServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkVirtualGuests.md index ae17412760..f0db7d5e89 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownlinkVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownlinkVirtualGuests-example) {#getDownlinkVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownlinkVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamHardwareBindings.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamHardwareBindings.md index 9389d2483c..8198d2affb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamHardwareBindings.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamHardwareBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownstreamHardwareBindings-example) {#getDownstreamHardwareBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownstreamHardwareBindings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardware.md index 9ec0d12bb8..c2c8400081 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardware-example) {#getDownstreamNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownstreamNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardwareWithIncidents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardwareWithIncidents.md index 5ef79ad64c..4923aaff5d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardwareWithIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamNetworkHardwareWithIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardwareWithIncidents-example) {#getDownstreamNetworkHardwareWithIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownstreamNetworkHardwareWithIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamServers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamServers.md index 662a3b6432..98196584d1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamServers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownstreamServers-example) {#getDownstreamServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownstreamServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamVirtualGuests.md index cc13180a1b..beb611c6e0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDownstreamVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDownstreamVirtualGuests-example) {#getDownstreamVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDownstreamVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDriveControllers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDriveControllers.md index 5048a9b13e..3ded935858 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getDriveControllers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getDriveControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getDriveControllers-example) {#getDriveControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getDriveControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getEvaultNetworkStorage.md index a405eda3d5..9eca123815 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallProtectableSubnets.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallProtectableSubnets.md index d62c5f4113..054f367a9f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallProtectableSubnets.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallProtectableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFirewallProtectableSubnets-example) {#getFirewallProtectableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFirewallProtectableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallServiceComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallServiceComponent.md index 7e9372fc58..254b4a8c7f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFirewallServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFirewallServiceComponent-example) {#getFirewallServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFirewallServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFixedConfigurationPreset.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFixedConfigurationPreset.md index c7fcf7bf7d..208675e878 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFixedConfigurationPreset.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFixedConfigurationPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFixedConfigurationPreset-example) {#getFixedConfigurationPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFixedConfigurationPreset' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendBandwidthUsage.md index 7eb44cae15..f3d873c43c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendBandwidthUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFrontendBandwidthUsage-example) {#getFrontendBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFrontendBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendIncomingBandwidth.md index 7475b26d3c..5d973a54c3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFrontendIncomingBandwidth-example) {#getFrontendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFrontendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendNetworkComponents.md index 05ffb3bf35..bc136f79a4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFrontendNetworkComponents-example) {#getFrontendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFrontendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendOutgoingBandwidth.md index 7e9205817f..bc5e156e43 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFrontendOutgoingBandwidth-example) {#getFrontendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFrontendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendRouters.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendRouters.md index 8096ed9854..7b026e4098 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFrontendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFrontendRouters-example) {#getFrontendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFrontendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFutureBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFutureBillingItem.md index c0358b3f74..6eb53f6711 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getFutureBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getFutureBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getFutureBillingItem-example) {#getFutureBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getFutureBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getGlobalIdentifier.md index de0255a48c..bacaa4e04b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardDrives.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardDrives.md index 17720f6f89..6121d08557 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardDrives.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardDrives.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardDrives-example) {#getHardDrives-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHardDrives' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareByIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareByIpAddress.md index 716edfb058..28610f44ce 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardwareByIpAddress-example) {#getHardwareByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/getHardwareByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareChassis.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareChassis.md index 1a1540178f..b406545f73 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareChassis.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardwareChassis-example) {#getHardwareChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHardwareChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunction.md index 06c4a29508..c0c1c0b312 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardwareFunction-example) {#getHardwareFunction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHardwareFunction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunctionDescription.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunctionDescription.md index 05396eefc8..06b0c76fa0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunctionDescription.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareFunctionDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardwareFunctionDescription-example) {#getHardwareFunctionDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHardwareFunctionDescription' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareState.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareState.md index 0bed6bdc99..8422dbac13 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareState.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardwareState-example) {#getHardwareState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHardwareState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareStatus.md index a09d83d92d..3ca78b6e82 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHardwareStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHardwareStatus-example) {#getHardwareStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHardwareStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasSingleRootVirtualizationBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasSingleRootVirtualizationBillingItemFlag.md index f55de0b6a0..99d2568baa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasSingleRootVirtualizationBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasSingleRootVirtualizationBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHasSingleRootVirtualizationBillingItemFlag-example) {#getHasSingleRootVirtualizationBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHasSingleRootVirtualizationBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasTrustedPlatformModuleBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasTrustedPlatformModuleBillingItemFlag.md index cc95591320..386ca11ab6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasTrustedPlatformModuleBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHasTrustedPlatformModuleBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHasTrustedPlatformModuleBillingItemFlag-example) {#getHasTrustedPlatformModuleBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHasTrustedPlatformModuleBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHostIpsSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHostIpsSoftwareComponent.md index a932c17219..b96a45f466 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHostIpsSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHostIpsSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHostIpsSoftwareComponent-example) {#getHostIpsSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHostIpsSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBandwidth.md index 2721f8aa40..fd3da26e61 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBandwidth.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHourlyBandwidth-example) {#getHourlyBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHourlyBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBillingFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBillingFlag.md index 5480d50016..9e4f26f8de 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBillingFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getHourlyBillingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getHourlyBillingFlag-example) {#getHourlyBillingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getHourlyBillingFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundBandwidthUsage.md index 33c3cd1faf..2c765cdf84 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getInboundBandwidthUsage-example) {#getInboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getInboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPrivateBandwidthUsage.md index f6a2e63c14..ae1b25ae32 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getInboundPrivateBandwidthUsage-example) {#getInboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getInboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPublicBandwidthUsage.md index b28ac2cdd0..657df6947e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsBillingTermChangeAvailableFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsBillingTermChangeAvailableFlag.md index c6fdc32856..c704ac3e20 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsBillingTermChangeAvailableFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsBillingTermChangeAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getIsBillingTermChangeAvailableFlag-example) {#getIsBillingTermChangeAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getIsBillingTermChangeAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsCloudReadyNodeCertified.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsCloudReadyNodeCertified.md index 984e7b298c..48242d2b19 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsCloudReadyNodeCertified.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsCloudReadyNodeCertified.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getIsCloudReadyNodeCertified-example) {#getIsCloudReadyNodeCertified-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getIsCloudReadyNodeCertified' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsIpmiDisabled.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsIpmiDisabled.md index 1af064cdbf..f70fb11d2c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsIpmiDisabled.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsIpmiDisabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getIsIpmiDisabled-example) {#getIsIpmiDisabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getIsIpmiDisabled' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsQeInternalServer.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsQeInternalServer.md index 0c3144d52b..985a13da2f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsQeInternalServer.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsQeInternalServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getIsQeInternalServer-example) {#getIsQeInternalServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getIsQeInternalServer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsVirtualPrivateCloudNode.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsVirtualPrivateCloudNode.md index f53cdbe468..947b683299 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsVirtualPrivateCloudNode.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getIsVirtualPrivateCloudNode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getIsVirtualPrivateCloudNode-example) {#getIsVirtualPrivateCloudNode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getIsVirtualPrivateCloudNode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getItemPricesFromSoftwareDescriptions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getItemPricesFromSoftwareDescriptions.md index b9e5280725..5da66b3a96 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getItemPricesFromSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getItemPricesFromSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getItemPricesFromSoftwareDescriptions-example) {#getItemPricesFromSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getItemPricesFromSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastOperatingSystemReload.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastOperatingSystemReload.md index 77ac0da1f7..66334324fe 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastOperatingSystemReload.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastOperatingSystemReload.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLastOperatingSystemReload-example) {#getLastOperatingSystemReload-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLastOperatingSystemReload' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastTransaction.md index f0978cef0e..ba09bb571d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLastTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLastTransaction-example) {#getLastTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLastTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLatestNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLatestNetworkMonitorIncident.md index e832510326..8f96c66caa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLatestNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLatestNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLatestNetworkMonitorIncident-example) {#getLatestNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLatestNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocation.md index 809c734c74..5e7d518263 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocationPathString.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocationPathString.md index 366decd3ce..47dfbc42c9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocationPathString.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLocationPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLocationPathString-example) {#getLocationPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLocationPathString' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLockboxNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLockboxNetworkStorage.md index 8564780de8..3b938038fb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLockboxNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLockboxNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLockboxNetworkStorage-example) {#getLockboxNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLockboxNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLogicalVolumeStorageGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLogicalVolumeStorageGroups.md index 3ac17e963a..dae69d1cfa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getLogicalVolumeStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getLogicalVolumeStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getLogicalVolumeStorageGroups-example) {#getLogicalVolumeStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getLogicalVolumeStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagedResourceFlag.md index a0518adf76..601921d655 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagementNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagementNetworkComponent.md index 9e67dd051c..5b87fc7ef8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagementNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getManagementNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getManagementNetworkComponent-example) {#getManagementNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getManagementNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemory.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemory.md index 2aee00769b..1f4a43aef7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemory.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMemory-example) {#getMemory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMemory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemoryCapacity.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemoryCapacity.md index 6d7e965ab1..b303b1657c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemoryCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMemoryCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMemoryCapacity-example) {#getMemoryCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMemoryCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObject.md index c165984d30..f9fc179c97 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObjectId.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObjectId.md index 9999b0594f..2f2f1ebae1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObjectId.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMetricTrackingObjectId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMetricTrackingObjectId-example) {#getMetricTrackingObjectId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMetricTrackingObjectId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getModules.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getModules.md index 107afe0532..9d56eeb3bf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getModules.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getModules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getModules-example) {#getModules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getModules' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringRobot.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringRobot.md index ba8aa0c6ad..853a27ee81 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringRobot.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringRobot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMonitoringRobot-example) {#getMonitoringRobot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMonitoringRobot' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceComponent.md index 723ba68c65..7aa0b267a6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMonitoringServiceComponent-example) {#getMonitoringServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMonitoringServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceEligibilityFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceEligibilityFlag.md index d2ce2f0c92..fb1b7822f9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceEligibilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringServiceEligibilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMonitoringServiceEligibilityFlag-example) {#getMonitoringServiceEligibilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMonitoringServiceEligibilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringUserNotification.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringUserNotification.md index 7a082597c0..9d16a768cf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringUserNotification.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMonitoringUserNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMonitoringUserNotification-example) {#getMonitoringUserNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMonitoringUserNotification' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMotherboard.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMotherboard.md index 375246e24f..e9cfdefe6a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getMotherboard.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getMotherboard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getMotherboard-example) {#getMotherboard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getMotherboard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkCards.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkCards.md index 727fa9032d..d94d6c11e4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkCards.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkCards.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkCards-example) {#getNetworkCards-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkCards' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponentFirewallProtectableIpAddresses.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponentFirewallProtectableIpAddresses.md index 7a7f39f665..a3973fab27 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponentFirewallProtectableIpAddresses.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponentFirewallProtectableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewallProtectableIpAddresses-example) {#getNetworkComponentFirewallProtectableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkComponentFirewallProtectableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponents.md index 145234e6a9..6664136dc4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMember.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMember.md index 1ab55715a7..ff28712ac8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMember.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkGatewayMember-example) {#getNetworkGatewayMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkGatewayMember' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMemberFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMemberFlag.md index 94fc3be61f..a489f1f83a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMemberFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkGatewayMemberFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkGatewayMemberFlag-example) {#getNetworkGatewayMemberFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkGatewayMemberFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkManagementIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkManagementIpAddress.md index 6fcd44c67b..00adcfdbde 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkManagementIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkManagementIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkManagementIpAddress-example) {#getNetworkManagementIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkManagementIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownHardware.md index 79c93d34f4..69511496e1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownHardware-example) {#getNetworkMonitorAttachedDownHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkMonitorAttachedDownHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownVirtualGuests.md index 1c4a09077f..01b704f905 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorAttachedDownVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownVirtualGuests-example) {#getNetworkMonitorAttachedDownVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkMonitorAttachedDownVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorIncidents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorIncidents.md index 7902172a0b..f90fedc585 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitorIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkMonitorIncidents-example) {#getNetworkMonitorIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkMonitorIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitors.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitors.md index b2cbe0e9bc..4967a467b7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitors.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkMonitors-example) {#getNetworkMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkMonitors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatus.md index 0cd5add1db..2aea4678ca 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkStatus-example) {#getNetworkStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatusAttribute.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatusAttribute.md index 749c2e2521..1a45e02a77 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatusAttribute.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStatusAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkStatusAttribute-example) {#getNetworkStatusAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkStatusAttribute' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStorage.md index 12133c50d3..b632b3c135 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkVlans.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkVlans.md index d8bf79b305..699b9c6e2f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNextBillingCycleBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNextBillingCycleBandwidthAllocation.md index 45046aa126..dece90924e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNextBillingCycleBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNextBillingCycleBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNextBillingCycleBandwidthAllocation-example) {#getNextBillingCycleBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNextBillingCycleBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNotesHistory.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNotesHistory.md index 2bace4c304..a8ef9961ec 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNotesHistory.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNotesHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNotesHistory-example) {#getNotesHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNotesHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamCapacity.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamCapacity.md index 1493d6de9e..feecba9951 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNvRamCapacity-example) {#getNvRamCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNvRamCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamComponentModels.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamComponentModels.md index 14472a84d1..98696495f8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getNvRamComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getNvRamComponentModels-example) {#getNvRamComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getNvRamComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getObject.md index a78767c4d0..e41c51a2b2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOpenCancellationTicket.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOpenCancellationTicket.md index 9fbdfae174..44017917cb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOpenCancellationTicket.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOpenCancellationTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOpenCancellationTicket-example) {#getOpenCancellationTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOpenCancellationTicket' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystem.md index e8c95a75ca..81ddd1c6c2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOperatingSystem-example) {#getOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystemReferenceCode.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystemReferenceCode.md index 5350eff467..4d5cd57f80 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystemReferenceCode.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOperatingSystemReferenceCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOperatingSystemReferenceCode-example) {#getOperatingSystemReferenceCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOperatingSystemReferenceCode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundBandwidthUsage.md index df3936b422..47a0271c04 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOutboundBandwidthUsage-example) {#getOutboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOutboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPrivateBandwidthUsage.md index 44030ed536..1de86e3cee 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOutboundPrivateBandwidthUsage-example) {#getOutboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOutboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPublicBandwidthUsage.md index cf3c463e14..e03cb20b7c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOverBandwidthAllocationFlag.md index ac111a77d0..86213ac3b5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getOverBandwidthAllocationFlag-example) {#getOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPMInfo.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPMInfo.md index 7cb74a1ba3..87fc57a8d1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPMInfo.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPMInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPMInfo-example) {#getPMInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPMInfo' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentBay.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentBay.md index b483e61f32..f3c3d49a64 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentBay.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentBay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getParentBay-example) {#getParentBay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getParentBay' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentHardware.md index 02e98d0df9..6cef585ca1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getParentHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getParentHardware-example) {#getParentHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getParentHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPartitions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPartitions.md index bb77a60066..1bd0a4d190 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPartitions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPartitions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPartitions-example) {#getPartitions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPartitions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPointOfPresenceLocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPointOfPresenceLocation.md index 84793f1d34..392fa81cd7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPointOfPresenceLocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPointOfPresenceLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPointOfPresenceLocation-example) {#getPointOfPresenceLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPointOfPresenceLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerComponents.md index d8563a6f16..cb1897eeea 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPowerComponents-example) {#getPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerSupply.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerSupply.md index 1c75d58f53..45843704df 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerSupply.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPowerSupply.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPowerSupply-example) {#getPowerSupply-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPowerSupply' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendIpAddress.md index c07089a589..d532f116af 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendNetworkComponent.md index 96d832d4ec..32c94ef7e9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryBackendNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrimaryBackendNetworkComponent-example) {#getPrimaryBackendNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrimaryBackendNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryDriveSize.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryDriveSize.md index a47ff6a64b..7fede4c13f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryDriveSize.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryDriveSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrimaryDriveSize-example) {#getPrimaryDriveSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrimaryDriveSize' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryIpAddress.md index 32d1aaa42c..052046cd22 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryNetworkComponent.md index 1b6e97e9e2..efe258eaa8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrimaryNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrimaryNetworkComponent-example) {#getPrimaryNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrimaryNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBackendNetworkComponents.md index 36fb1ff06b..26e285bf87 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateBackendNetworkComponents-example) {#getPrivateBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthData.md index 68ad6b5d32..d11f3f5f99 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateBandwidthData-example) {#getPrivateBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthDataSummary.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthDataSummary.md index 7006d21e18..cd2d31a7b5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthDataSummary.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthDataSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateBandwidthDataSummary-example) {#getPrivateBandwidthDataSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateBandwidthDataSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthGraphImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthGraphImage.md index c65db278d9..1a283bb61e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthGraphImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateBandwidthGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateBandwidthGraphImage-example) {#getPrivateBandwidthGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateBandwidthGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateIpAddress.md index 0349385d40..7a80dd7d36 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateIpAddress-example) {#getPrivateIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkComponent.md index 1f815f2a1d..aad64c728a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateNetworkComponent-example) {#getPrivateNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkOnlyFlag.md index aab5425f8b..8f461021e4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlan.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlan.md index afd65260f3..6dcc3c7891 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlan.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateVlan-example) {#getPrivateVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPrivateVlan' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlanByIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlanByIpAddress.md index 4e534a2c14..edfc2374aa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlanByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPrivateVlanByIpAddress.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPrivateVlanByIpAddress-example) {#getPrivateVlanByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/getPrivateVlanByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorCoreAmount.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorCoreAmount.md index bd9fe76216..a1123260a1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getProcessorCoreAmount-example) {#getProcessorCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getProcessorCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorPhysicalCoreAmount.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorPhysicalCoreAmount.md index 987b7e0966..20bdb9d976 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorPhysicalCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessorPhysicalCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getProcessorPhysicalCoreAmount-example) {#getProcessorPhysicalCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getProcessorPhysicalCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessors.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessors.md index 3fd8d2537e..46e126459c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessors.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProcessors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getProcessors-example) {#getProcessors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getProcessors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedOverBandwidthAllocationFlag.md index a71581f9cf..34b3cb1ec6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getProjectedOverBandwidthAllocationFlag-example) {#getProjectedOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getProjectedOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedPublicBandwidthUsage.md index 7d9c4ce382..79a3325045 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProjectedPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getProjectedPublicBandwidthUsage-example) {#getProjectedPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getProjectedPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProvisionDate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProvisionDate.md index 39675c14b4..2bbfc4906a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getProvisionDate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getProvisionDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getProvisionDate-example) {#getProvisionDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getProvisionDate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthData.md index 2b724fdd22..a12f443f02 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicBandwidthData-example) {#getPublicBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPublicBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthDataSummary.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthDataSummary.md index 480bc04a6c..7b7f91a2d8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthDataSummary.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthDataSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicBandwidthDataSummary-example) {#getPublicBandwidthDataSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPublicBandwidthDataSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthGraphImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthGraphImage.md index 68c3bc80b8..6d653ad0e8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthGraphImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicBandwidthGraphImage-example) {#getPublicBandwidthGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPublicBandwidthGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthTotal.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthTotal.md index 09b45db661..0414a4c275 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthTotal.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicBandwidthTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicBandwidthTotal-example) {#getPublicBandwidthTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPublicBandwidthTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicNetworkComponent.md index 9ec8f76d6f..7d5639037d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicNetworkComponent-example) {#getPublicNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPublicNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlan.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlan.md index 91ee48b671..c0d81253ee 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlan.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicVlan-example) {#getPublicVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getPublicVlan' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlanByHostname.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlanByHostname.md index 908bd956fc..a72fc91d06 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlanByHostname.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getPublicVlanByHostname.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getPublicVlanByHostname-example) {#getPublicVlanByHostname-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/getPublicVlanByHostname' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRack.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRack.md index 6a96d8a70b..a529dea9b3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRack.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRack-example) {#getRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRaidControllers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRaidControllers.md index 0c1a2e9d40..8c18bd0416 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRaidControllers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRaidControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRaidControllers-example) {#getRaidControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRaidControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getReadyNodeFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getReadyNodeFlag.md index f3a9ced127..a6f5d8abd8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getReadyNodeFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getReadyNodeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getReadyNodeFlag-example) {#getReadyNodeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getReadyNodeFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentEvents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentEvents.md index ad82e68777..a83249286b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentRemoteManagementCommands.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentRemoteManagementCommands.md index a4d0c5a49e..24bbd0e5c9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentRemoteManagementCommands.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRecentRemoteManagementCommands.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRecentRemoteManagementCommands-example) {#getRecentRemoteManagementCommands-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRecentRemoteManagementCommands' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRegionalInternetRegistry.md index cbb8bc3183..6d6e571e3c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagement.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagement.md index b6eaafae8a..0792cfb6c0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagement.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRemoteManagement-example) {#getRemoteManagement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRemoteManagement' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementAccounts.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementAccounts.md index 0959b38ea1..0ea9869fc1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementAccounts.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRemoteManagementAccounts-example) {#getRemoteManagementAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRemoteManagementAccounts' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementComponent.md index d73c1af767..b41c086b25 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRemoteManagementComponent-example) {#getRemoteManagementComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRemoteManagementComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementUsers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementUsers.md index a70272aff0..a604d390d6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementUsers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRemoteManagementUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRemoteManagementUsers-example) {#getRemoteManagementUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRemoteManagementUsers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceConfigurations.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceConfigurations.md index b1e94fa17d..b442280bbe 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceConfigurations.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getResourceConfigurations-example) {#getResourceConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getResourceConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupMemberReferences.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupMemberReferences.md index 847d75c885..86e272df24 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupMemberReferences.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupMemberReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getResourceGroupMemberReferences-example) {#getResourceGroupMemberReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getResourceGroupMemberReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupRoles.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupRoles.md index c4c199211a..9400f77d6c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupRoles.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroupRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getResourceGroupRoles-example) {#getResourceGroupRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getResourceGroupRoles' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroups.md index fc17253a52..e1ba180b32 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getResourceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getResourceGroups-example) {#getResourceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getResourceGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getReverseDomainRecords.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getReverseDomainRecords.md index 55283a4e4a..bca82ab7a9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getReverseDomainRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getReverseDomainRecords-example) {#getReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRouters.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRouters.md index 91784f5f43..f06a24174b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getRouters.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getRouters-example) {#getRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSecurityScanRequests.md index d7c3a14b4e..2eb48ee092 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorData.md index 8e37da4d30..d04eae4885 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSensorData-example) {#getSensorData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSensorData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorDataWithGraphs.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorDataWithGraphs.md index 26159a29c1..c9d3a64619 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorDataWithGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSensorDataWithGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSensorDataWithGraphs-example) {#getSensorDataWithGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSensorDataWithGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerDetails.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerDetails.md index 799245052e..7d1c63791b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerDetails.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getServerDetails-example) {#getServerDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getServerDetails' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerFanSpeedGraphs.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerFanSpeedGraphs.md index 2386ed7f1c..e9e82e37a8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerFanSpeedGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerFanSpeedGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getServerFanSpeedGraphs-example) {#getServerFanSpeedGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getServerFanSpeedGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerPowerState.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerPowerState.md index a6b6a8f475..6c709942aa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerPowerState.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getServerPowerState-example) {#getServerPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getServerPowerState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerRoom.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerRoom.md index 4044f4a032..d43215c2fb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerRoom.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerRoom.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getServerRoom-example) {#getServerRoom-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getServerRoom' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerTemperatureGraphs.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerTemperatureGraphs.md index fc6b97988d..7c02f571ed 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerTemperatureGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServerTemperatureGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getServerTemperatureGraphs-example) {#getServerTemperatureGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getServerTemperatureGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServiceProvider.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServiceProvider.md index 2964a931a7..6a9a04810f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareComponents.md index 92c9ff08fe..f3b9af16b7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSoftwareComponents-example) {#getSoftwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSoftwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareGuardExtensionEnabled.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareGuardExtensionEnabled.md index 4792cee484..62372ead5a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareGuardExtensionEnabled.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSoftwareGuardExtensionEnabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSoftwareGuardExtensionEnabled-example) {#getSoftwareGuardExtensionEnabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSoftwareGuardExtensionEnabled' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSparePoolBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSparePoolBillingItem.md index 8e29ef543e..619058f73d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSparePoolBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSparePoolBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSparePoolBillingItem-example) {#getSparePoolBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSparePoolBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSshKeys.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSshKeys.md index 1a87713a38..03abc6d395 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getSshKeys.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getStatisticsRemoteManagement.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getStatisticsRemoteManagement.md index 68aa54ae45..361962433a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getStatisticsRemoteManagement.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getStatisticsRemoteManagement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getStatisticsRemoteManagement-example) {#getStatisticsRemoteManagement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getStatisticsRemoteManagement' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageGroups.md index 5ec01816d2..e6f8df3ec9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageNetworkComponents.md index ae29225eb4..11957051bd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getStorageNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getStorageNetworkComponents-example) {#getStorageNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getStorageNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getTagReferences.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getTagReferences.md index 1124bd2355..fbd91b0997 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getTagReferences.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getTopLevelLocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getTopLevelLocation.md index 3c7b2f5519..8debceef94 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getTopLevelLocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getTopLevelLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getTopLevelLocation-example) {#getTopLevelLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getTopLevelLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getTransactionHistory.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getTransactionHistory.md index c5a5466ac2..c0d8dad982 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getTransactionHistory.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getTransactionHistory.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getTransactionHistory-example) {#getTransactionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getTransactionHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUefiBootFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUefiBootFlag.md index 43bf49c5f1..de43cbab46 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUefiBootFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUefiBootFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUefiBootFlag-example) {#getUefiBootFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUefiBootFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeItemPrices.md index e8b091952a..8627762a72 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeRequest.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeRequest.md index 65a732ff65..376706043e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeableActiveComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeableActiveComponents.md index 7efb61bce6..019b4bd8bb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeableActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUpgradeableActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUpgradeableActiveComponents-example) {#getUpgradeableActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUpgradeableActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkHardware.md index 53d4368788..f731fcf9e4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUplinkHardware-example) {#getUplinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUplinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkNetworkComponents.md index 616a3ae242..a57331efb0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUplinkNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUplinkNetworkComponents-example) {#getUplinkNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUplinkNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUserData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUserData.md index 382ee14d6e..ed99ceecbf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUserData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUserData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUserData-example) {#getUserData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUserData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUsers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUsers.md index bcae325147..836e1653f6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getUsers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getValidBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getValidBlockDeviceTemplateGroups.md index 4e13692710..8b650957ea 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getValidBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getValidBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getValidBlockDeviceTemplateGroups-example) {#getValidBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getValidBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassis.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassis.md index b878cfcb24..32c62edaea 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassis.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualChassis-example) {#getVirtualChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassisSiblings.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassisSiblings.md index c2a641878d..cb35e4a809 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassisSiblings.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualChassisSiblings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualChassisSiblings-example) {#getVirtualChassisSiblings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualChassisSiblings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualGuests.md index fcec12ce39..40a4281388 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualHost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualHost.md index 24377a966f..3a8c96be6e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualHost-example) {#getVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualLicenses.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualLicenses.md index 328a669fc7..f784972c51 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualLicenses-example) {#getVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRack.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRack.md index a37d493865..c91f710ead 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRack.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualRack-example) {#getVirtualRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackId.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackId.md index 320c7d78f9..c82c332160 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackId.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualRackId-example) {#getVirtualRackId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualRackId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackName.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackName.md index 72dac5624e..1ead367fcf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackName.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualRackName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualRackName-example) {#getVirtualRackName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualRackName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualizationPlatform.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualizationPlatform.md index 816254cb79..d37f4c3add 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualizationPlatform.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getVirtualizationPlatform.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getVirtualizationPlatform-example) {#getVirtualizationPlatform-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getVirtualizationPlatform' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateAvailableUpdates.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateAvailableUpdates.md index 08e8ba2480..846ede0430 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateAvailableUpdates.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateAvailableUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getWindowsUpdateAvailableUpdates-example) {#getWindowsUpdateAvailableUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getWindowsUpdateAvailableUpdates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateInstalledUpdates.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateInstalledUpdates.md index 37406aabd1..1331597bb5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateInstalledUpdates.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateInstalledUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getWindowsUpdateInstalledUpdates-example) {#getWindowsUpdateInstalledUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getWindowsUpdateInstalledUpdates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateStatus.md index 5e4a4d53aa..07d7fd0ca9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/getWindowsUpdateStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#getWindowsUpdateStatus-example) {#getWindowsUpdateStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/getWindowsUpdateStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/importVirtualHost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/importVirtualHost.md index 2492981bb0..940b35b4f5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/importVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/importVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#importVirtualHost-example) {#importVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/importVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateIderaBareMetalRestore.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateIderaBareMetalRestore.md index b2f36cac86..e1d3a44118 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateIderaBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateIderaBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#initiateIderaBareMetalRestore-example) {#initiateIderaBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/initiateIderaBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateR1SoftBareMetalRestore.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateR1SoftBareMetalRestore.md index c42a6ff37e..c05d25f374 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateR1SoftBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/initiateR1SoftBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#initiateR1SoftBareMetalRestore-example) {#initiateR1SoftBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/initiateR1SoftBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/isBackendPingable.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/isBackendPingable.md index 9d872d040f..cf48d4aa93 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/isBackendPingable.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/isBackendPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#isBackendPingable-example) {#isBackendPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/isBackendPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/isPingable.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/isPingable.md index 658d569bc3..0217d52e91 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/isPingable.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/isWindowsServer.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/isWindowsServer.md index 8c68116a30..1d9b991a17 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/isWindowsServer.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/isWindowsServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#isWindowsServer-example) {#isWindowsServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/isWindowsServer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareReflash.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareReflash.md index 3945afedfe..0fc6256d88 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareReflash.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareReflash.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#massFirmwareReflash-example) {#massFirmwareReflash-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/massFirmwareReflash' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareUpdate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareUpdate.md index bb260aad02..6a1f04aee8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareUpdate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/massFirmwareUpdate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#massFirmwareUpdate-example) {#massFirmwareUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/massFirmwareUpdate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/massHyperThreadingUpdate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/massHyperThreadingUpdate.md index fd3f2433a1..a38a9982c0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/massHyperThreadingUpdate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/massHyperThreadingUpdate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#massHyperThreadingUpdate-example) {#massHyperThreadingUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/massHyperThreadingUpdate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/massReloadOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/massReloadOperatingSystem.md index cf5353842e..aed8f20b0f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/massReloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/massReloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#massReloadOperatingSystem-example) {#massReloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/massReloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/massSparePool.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/massSparePool.md index d5b860cdb0..8aac684806 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/massSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/massSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#massSparePool-example) {#massSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/massSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/ping.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/ping.md index 471ff9f7e7..63cf9338e2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/ping.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/ping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#ping-example) {#ping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/ping' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/populateServerRam.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/populateServerRam.md index 73d82ef754..960a77b1e9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/populateServerRam.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/populateServerRam.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#populateServerRam-example) {#populateServerRam-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/populateServerRam' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/powerCycle.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/powerCycle.md index 5116c2748c..ff72fdc7db 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/powerCycle.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/powerCycle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#powerCycle-example) {#powerCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/powerCycle' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOff.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOff.md index 55d075cad4..b3d648426e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOff.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOff.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#powerOff-example) {#powerOff-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/powerOff' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOn.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOn.md index a605603e83..85687a295f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOn.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/powerOn.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#powerOn-example) {#powerOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/powerOn' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootDefault.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootDefault.md index e958d7a8c9..d44b24707a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootDefault.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#rebootDefault-example) {#rebootDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/rebootDefault' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootHard.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootHard.md index 1044f7a425..4e97174247 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootHard.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootHard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#rebootHard-example) {#rebootHard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/rebootHard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootSoft.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootSoft.md index 03a967f5e3..76c6db3b03 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootSoft.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/rebootSoft.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#rebootSoft-example) {#rebootSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/rebootSoft' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/refreshDeviceStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/refreshDeviceStatus.md index 1b3ae81dad..e00d536167 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/refreshDeviceStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/refreshDeviceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#refreshDeviceStatus-example) {#refreshDeviceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/refreshDeviceStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadCurrentOperatingSystemConfiguration.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadCurrentOperatingSystemConfiguration.md index e244372005..4e65b92e82 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadCurrentOperatingSystemConfiguration.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadCurrentOperatingSystemConfiguration.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#reloadCurrentOperatingSystemConfiguration-example) {#reloadCurrentOperatingSystemConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/reloadCurrentOperatingSystemConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadOperatingSystem.md index 1b2aecd01e..016b893585 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/reloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#reloadOperatingSystem-example) {#reloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/reloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorage.md index 43fc2c9e94..dd4fb0f64a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorage-example) {#removeAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/removeAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorageList.md index 01288cb848..275fc9dcfb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/removeTags.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/removeTags.md index ce9d33b0f1..3843c0dc1c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/removeTags.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/removeTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#removeTags-example) {#removeTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/removeTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/runPassmarkCertificationBenchmark.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/runPassmarkCertificationBenchmark.md index d59bd6a689..44dd54a3f5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/runPassmarkCertificationBenchmark.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/runPassmarkCertificationBenchmark.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#runPassmarkCertificationBenchmark-example) {#runPassmarkCertificationBenchmark-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/runPassmarkCertificationBenchmark' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/setOperatingSystemPassword.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/setOperatingSystemPassword.md index 8f7e8c9463..d93a50cdb2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/setOperatingSystemPassword.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/setOperatingSystemPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#setOperatingSystemPassword-example) {#setOperatingSystemPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/setOperatingSystemPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/setPrivateNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/setPrivateNetworkInterfaceSpeed.md index 55e3c33edc..e70d26e74a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/setPrivateNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/setPrivateNetworkInterfaceSpeed.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#setPrivateNetworkInterfaceSpeed-example) {#setPrivateNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/setPrivateNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/setPublicNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/setPublicNetworkInterfaceSpeed.md index 66f4968bed..026fda06f9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/setPublicNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/setPublicNetworkInterfaceSpeed.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#setPublicNetworkInterfaceSpeed-example) {#setPublicNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/setPublicNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/setTags.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/setTags.md index 26d5fcda32..d1457570d5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/setTags.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/setUserMetadata.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/setUserMetadata.md index d3c0673889..a80454b374 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/setUserMetadata.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/setUserMetadata.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#setUserMetadata-example) {#setUserMetadata-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/setUserMetadata' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPrivatePort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPrivatePort.md index a60c642e8b..90efb1d427 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPrivatePort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPrivatePort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#shutdownPrivatePort-example) {#shutdownPrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/shutdownPrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPublicPort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPublicPort.md index db1ee160ac..169a31f7c2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPublicPort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/shutdownPublicPort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#shutdownPublicPort-example) {#shutdownPublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/shutdownPublicPort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/sparePool.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/sparePool.md index 27ceac8699..f6b714084e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/sparePool.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/sparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#sparePool-example) {#sparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/sparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/testRaidAlertService.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/testRaidAlertService.md index 6055db9a24..143a6e2469 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/testRaidAlertService.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/testRaidAlertService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#testRaidAlertService-example) {#testRaidAlertService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/testRaidAlertService' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/toggleManagementInterface.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/toggleManagementInterface.md index 07758d6daf..baab5a83b1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/toggleManagementInterface.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/toggleManagementInterface.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#toggleManagementInterface-example) {#toggleManagementInterface-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/toggleManagementInterface' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/updateIpmiPassword.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/updateIpmiPassword.md index ca7e183c58..20517c6d61 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/updateIpmiPassword.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/updateIpmiPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#updateIpmiPassword-example) {#updateIpmiPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/{SoftLayer_Hardware_SecurityModuleID}/updateIpmiPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule/validatePartitionsForOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule/validatePartitionsForOperatingSystem.md index ca91262e77..9cfd4e4944 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule/validatePartitionsForOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule/validatePartitionsForOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule" --- -### Curl Example +# [REST Example](#validatePartitionsForOperatingSystem-example) {#validatePartitionsForOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, SoftLayer_Hardware_Component_Partition]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, SoftLayer_Hardware_Component_Partition]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule/validatePartitionsForOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePrivatePort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePrivatePort.md index c2e33a7a6d..7135d0a553 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePrivatePort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePrivatePort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#activatePrivatePort-example) {#activatePrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/activatePrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePublicPort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePublicPort.md index d49eae082c..548bcb9218 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePublicPort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/activatePublicPort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#activatePublicPort-example) {#activatePublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/activatePublicPort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorage.md index 926f6c6367..383e27928b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorageList.md index 743b5bff70..f90934eede 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/bootToRescueLayer.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/bootToRescueLayer.md index 1806039f9e..1d36487414 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/bootToRescueLayer.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/bootToRescueLayer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#bootToRescueLayer-example) {#bootToRescueLayer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/bootToRescueLayer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/captureImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/captureImage.md index 1ef53cc7ce..143328d779 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/captureImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/captureImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#captureImage-example) {#captureImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/captureImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareReflashTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareReflashTransaction.md index 00d32001c7..f3f0ecbaf2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareReflashTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareReflashTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#createFirmwareReflashTransaction-example) {#createFirmwareReflashTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/createFirmwareReflashTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareUpdateTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareUpdateTransaction.md index 11db056a4c..2070e2dc50 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createFirmwareUpdateTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#createFirmwareUpdateTransaction-example) {#createFirmwareUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/createFirmwareUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createHyperThreadingUpdateTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createHyperThreadingUpdateTransaction.md index 4f890ca8bf..f8c6856563 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createHyperThreadingUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createHyperThreadingUpdateTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#createHyperThreadingUpdateTransaction-example) {#createHyperThreadingUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/createHyperThreadingUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createObject.md index 12753db528..87f25fc985 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createObject.md @@ -278,8 +278,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_SecurityModule750]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_SecurityModule750]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/createObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createPostSoftwareInstallTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createPostSoftwareInstallTransaction.md index e04b687393..eb86b8d1ed 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/createPostSoftwareInstallTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/createPostSoftwareInstallTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#createPostSoftwareInstallTransaction-example) {#createPostSoftwareInstallTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/createPostSoftwareInstallTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteObject.md index b2abbf4f28..ffbff9d365 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteObject.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteSoftwareComponentPasswords.md index c13936b2aa..a1c5545d93 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#deleteSoftwareComponentPasswords-example) {#deleteSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/deleteSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteTag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteTag.md index 81a8d1565f..9080720b0a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteTag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/editObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/editObject.md index 09950fc6f7..295157328e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/editObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/editSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/editSoftwareComponentPasswords.md index 08ce2ba909..ba1b714da9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/editSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/editSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#editSoftwareComponentPasswords-example) {#editSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/editSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/executeRemoteScript.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/executeRemoteScript.md index 97c3353762..4ceff0263b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/executeRemoteScript.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/executeRemoteScript.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#executeRemoteScript-example) {#executeRemoteScript-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/executeRemoteScript' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/findByIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/findByIpAddress.md index b817b5e1e5..1d164ecf57 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/findByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/findByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#findByIpAddress-example) {#findByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/findByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/generateOrderTemplate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/generateOrderTemplate.md index 2d4ab31468..38396fbdec 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/generateOrderTemplate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/generateOrderTemplate.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#generateOrderTemplate-example) {#generateOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/generateOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAccount.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAccount.md index 4dfbc6c8f0..ab46eadcd9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveComponents.md index 0b3582898b..2787e060b8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getActiveComponents-example) {#getActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkFirewallBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkFirewallBillingItem.md index ddfd028e3f..d9d04df446 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkFirewallBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkFirewallBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getActiveNetworkFirewallBillingItem-example) {#getActiveNetworkFirewallBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getActiveNetworkFirewallBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkMonitorIncident.md index 6446fbbeb3..23ad726d93 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getActiveNetworkMonitorIncident-example) {#getActiveNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getActiveNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTickets.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTickets.md index df11a77973..4cb1eef2ec 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTickets.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getActiveTickets-example) {#getActiveTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getActiveTickets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransaction.md index 6edd38bc70..4fa846a24b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransactions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransactions.md index bd4feafb95..712fa4716d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllPowerComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllPowerComponents.md index 3d03d6f89d..f1d4082af9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAllPowerComponents-example) {#getAllPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAllPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedHost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedHost.md index 4656f83223..51813f3425 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorage.md index 23c6e3a35d..57dd725f4a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorageReplicas.md index eda0737682..53c5a3722e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAntivirusSpywareSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAntivirusSpywareSoftwareComponent.md index 63e8bb8551..782c0b0222 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAntivirusSpywareSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAntivirusSpywareSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAntivirusSpywareSoftwareComponent-example) {#getAntivirusSpywareSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAntivirusSpywareSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttachedNetworkStorages.md index 6589e5dd84..6466c46fa4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttributes.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttributes.md index 82976da732..96e9321251 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttributes.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableBillingTermChangePrices.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableBillingTermChangePrices.md index 6f9a01873f..15fb35703e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableBillingTermChangePrices.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableBillingTermChangePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAvailableBillingTermChangePrices-example) {#getAvailableBillingTermChangePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAvailableBillingTermChangePrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableMonitoring.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableMonitoring.md index 9385ed30c4..4b1be737cd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableMonitoring.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableMonitoring.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAvailableMonitoring-example) {#getAvailableMonitoring-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAvailableMonitoring' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableNetworkStorages.md index 1c1c12baed..86e29e3232 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyBandwidthUsage.md index 98daf783f5..a7152eb56b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAverageDailyBandwidthUsage-example) {#getAverageDailyBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAverageDailyBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPrivateBandwidthUsage.md index 9fbbde3436..2a121e77c9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAverageDailyPrivateBandwidthUsage-example) {#getAverageDailyPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAverageDailyPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPublicBandwidthUsage.md index 38a1b135cb..ad2e295154 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendBandwidthUsage.md index 7661067234..4bef20accb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendBandwidthUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBackendBandwidthUsage-example) {#getBackendBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBackendBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendIncomingBandwidth.md index b76113bbb5..2d48e8ea25 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBackendIncomingBandwidth-example) {#getBackendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBackendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendNetworkComponents.md index 20b256e44d..3b5faa5df3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBackendNetworkComponents-example) {#getBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendOutgoingBandwidth.md index bebec89c56..f2edd12ce6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBackendOutgoingBandwidth-example) {#getBackendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBackendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendRouters.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendRouters.md index 7660a5cf16..22a70eb127 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBackendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBackendRouters-example) {#getBackendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBackendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllocation.md index 99e7ca48e9..918b46be7f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllotmentDetail.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllotmentDetail.md index 3b459f87b6..f9b79644eb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllotmentDetail.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthAllotmentDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentDetail-example) {#getBandwidthAllotmentDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBandwidthAllotmentDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthForDateRange.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthForDateRange.md index 6cd1b3a60a..ea83ec83e7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthForDateRange.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthForDateRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBandwidthForDateRange-example) {#getBandwidthForDateRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBandwidthForDateRange' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthImage.md index f5380e7259..3e6a5d38fc 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBandwidthImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBandwidthImage-example) {#getBandwidthImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBandwidthImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBenchmarkCertifications.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBenchmarkCertifications.md index 6f2a3bd1c3..b81ec1e3cd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBenchmarkCertifications.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBenchmarkCertifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBenchmarkCertifications-example) {#getBenchmarkCertifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBenchmarkCertifications' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCycleBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCycleBandwidthUsage.md index 6737d53b62..4dcf6aa4ae 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCycleBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCycleBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBillingCycleBandwidthUsage-example) {#getBillingCycleBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBillingCycleBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePrivateBandwidthUsage.md index 639399ea3e..fd6ad99256 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBillingCyclePrivateBandwidthUsage-example) {#getBillingCyclePrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBillingCyclePrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePublicBandwidthUsage.md index 2c9bb0084f..80348d4529 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingCyclePublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBillingCyclePublicBandwidthUsage-example) {#getBillingCyclePublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBillingCyclePublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItem.md index f4233b993e..6c025129fd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItemFlag.md index 11d10acd58..c634b8aeaf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBillingItemFlag-example) {#getBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBiosPasswordNullFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBiosPasswordNullFlag.md index 5e65d67e1e..b86a9f832b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBiosPasswordNullFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBiosPasswordNullFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBiosPasswordNullFlag-example) {#getBiosPasswordNullFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBiosPasswordNullFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBlockCancelBecauseDisconnectedFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBlockCancelBecauseDisconnectedFlag.md index f634e81e54..063ef6ad99 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBlockCancelBecauseDisconnectedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBlockCancelBecauseDisconnectedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBlockCancelBecauseDisconnectedFlag-example) {#getBlockCancelBecauseDisconnectedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBlockCancelBecauseDisconnectedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBootModeOptions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBootModeOptions.md index 2b8c1218d1..88bd738706 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBootModeOptions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBootModeOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBootModeOptions-example) {#getBootModeOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBootModeOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBusinessContinuanceInsuranceFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBusinessContinuanceInsuranceFlag.md index 9b67768f55..ac1b65ef95 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBusinessContinuanceInsuranceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getBusinessContinuanceInsuranceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getBusinessContinuanceInsuranceFlag-example) {#getBusinessContinuanceInsuranceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getBusinessContinuanceInsuranceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCaptureEnabledFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCaptureEnabledFlag.md index 94fba97728..70e4ca481c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCaptureEnabledFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCaptureEnabledFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCaptureEnabledFlag-example) {#getCaptureEnabledFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCaptureEnabledFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getChildrenHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getChildrenHardware.md index 2893c2fe15..8fcafed394 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getChildrenHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getChildrenHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getChildrenHardware-example) {#getChildrenHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getChildrenHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponentDetailsXML.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponentDetailsXML.md index 3a9c627806..4e6454eaa3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponentDetailsXML.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponentDetailsXML.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getComponentDetailsXML-example) {#getComponentDetailsXML-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getComponentDetailsXML' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponents.md index 7510f9e50d..2c8b0f50e3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getComponents-example) {#getComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContainsSolidStateDrivesFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContainsSolidStateDrivesFlag.md index 981c0468c7..d0dd490534 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContainsSolidStateDrivesFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContainsSolidStateDrivesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getContainsSolidStateDrivesFlag-example) {#getContainsSolidStateDrivesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getContainsSolidStateDrivesFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContinuousDataProtectionSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContinuousDataProtectionSoftwareComponent.md index ec9fd8d533..48239053dd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContinuousDataProtectionSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getContinuousDataProtectionSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getContinuousDataProtectionSoftwareComponent-example) {#getContinuousDataProtectionSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getContinuousDataProtectionSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getControlPanel.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getControlPanel.md index a74285e982..a455951a79 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getControlPanel.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getControlPanel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getControlPanel-example) {#getControlPanel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getControlPanel' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCost.md index c77c368b97..19677453a1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCost-example) {#getCost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCreateObjectOptions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCreateObjectOptions.md index 07f6b9535c..b2697a801d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCreateObjectOptions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCreateObjectOptions.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCreateObjectOptions-example) {#getCreateObjectOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/getCreateObjectOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBandwidthSummary.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBandwidthSummary.md index c37f494dad..2bcf75ef87 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBandwidthSummary.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBandwidthSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCurrentBandwidthSummary-example) {#getCurrentBandwidthSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCurrentBandwidthSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBenchmarkCertificationResultFile.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBenchmarkCertificationResultFile.md index 73e8831500..cd20900baa 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBenchmarkCertificationResultFile.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBenchmarkCertificationResultFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCurrentBenchmarkCertificationResultFile-example) {#getCurrentBenchmarkCertificationResultFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCurrentBenchmarkCertificationResultFile' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillableBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillableBandwidthUsage.md index 484cf77dd0..e16fb032c6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillableBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillableBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCurrentBillableBandwidthUsage-example) {#getCurrentBillableBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCurrentBillableBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingDetail.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingDetail.md index 0953ee9b3b..680de7e0d5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingDetail.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCurrentBillingDetail-example) {#getCurrentBillingDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCurrentBillingDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingTotal.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingTotal.md index 989ebec663..974397543c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingTotal.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCurrentBillingTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCurrentBillingTotal-example) {#getCurrentBillingTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCurrentBillingTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerInstalledOperatingSystemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerInstalledOperatingSystemFlag.md index 85401aa35d..8632f539bc 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerInstalledOperatingSystemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerInstalledOperatingSystemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCustomerInstalledOperatingSystemFlag-example) {#getCustomerInstalledOperatingSystemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCustomerInstalledOperatingSystemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerOwnedFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerOwnedFlag.md index 27718934dc..2e812fef5a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerOwnedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getCustomerOwnedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getCustomerOwnedFlag-example) {#getCustomerOwnedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getCustomerOwnedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDailyAverage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDailyAverage.md index c3652d32a4..0ae636ad7c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDailyAverage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDailyAverage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDailyAverage-example) {#getDailyAverage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDailyAverage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenter.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenter.md index 93e393dfaa..195b4f1378 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenter.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenterName.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenterName.md index e37349878e..6998d895ec 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenterName.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDatacenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDatacenterName-example) {#getDatacenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDatacenterName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDaysInSparePool.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDaysInSparePool.md index 536ff9d377..df8f8f378f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDaysInSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDaysInSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDaysInSparePool-example) {#getDaysInSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDaysInSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkHardware.md index 649211f051..4cba149d7b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownlinkHardware-example) {#getDownlinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownlinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkNetworkHardware.md index 8db72743f9..c6085f2601 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownlinkNetworkHardware-example) {#getDownlinkNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownlinkNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkServers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkServers.md index 3b877e1192..8fa53815e2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkServers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownlinkServers-example) {#getDownlinkServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownlinkServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkVirtualGuests.md index 7246568226..a332816e37 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownlinkVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownlinkVirtualGuests-example) {#getDownlinkVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownlinkVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamHardwareBindings.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamHardwareBindings.md index a5d12aa36f..6131d27d1b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamHardwareBindings.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamHardwareBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownstreamHardwareBindings-example) {#getDownstreamHardwareBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownstreamHardwareBindings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardware.md index 45755ebd43..825263ebf3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardware-example) {#getDownstreamNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownstreamNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardwareWithIncidents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardwareWithIncidents.md index 65df3043eb..339ed4fbe0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardwareWithIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamNetworkHardwareWithIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardwareWithIncidents-example) {#getDownstreamNetworkHardwareWithIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownstreamNetworkHardwareWithIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamServers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamServers.md index f77adf6c43..c1b0f1a3ae 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamServers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownstreamServers-example) {#getDownstreamServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownstreamServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamVirtualGuests.md index 978c84d125..04d813ddd4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDownstreamVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDownstreamVirtualGuests-example) {#getDownstreamVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDownstreamVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDriveControllers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDriveControllers.md index cd50a327ba..ca005d3765 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDriveControllers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getDriveControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getDriveControllers-example) {#getDriveControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getDriveControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getEvaultNetworkStorage.md index efa1e9c549..abe336d35a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallProtectableSubnets.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallProtectableSubnets.md index add2f654d1..7e2faf8726 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallProtectableSubnets.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallProtectableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFirewallProtectableSubnets-example) {#getFirewallProtectableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFirewallProtectableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallServiceComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallServiceComponent.md index 120ca8be2e..25dfd750c7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFirewallServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFirewallServiceComponent-example) {#getFirewallServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFirewallServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFixedConfigurationPreset.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFixedConfigurationPreset.md index 354bad50c9..e4779ef156 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFixedConfigurationPreset.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFixedConfigurationPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFixedConfigurationPreset-example) {#getFixedConfigurationPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFixedConfigurationPreset' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendBandwidthUsage.md index 5f85f360d2..0425dd61f4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendBandwidthUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFrontendBandwidthUsage-example) {#getFrontendBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFrontendBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendIncomingBandwidth.md index 227aeef42e..673b18632a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFrontendIncomingBandwidth-example) {#getFrontendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFrontendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendNetworkComponents.md index db1885e512..41f9bbaa6a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFrontendNetworkComponents-example) {#getFrontendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFrontendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendOutgoingBandwidth.md index 0ad15be264..f6ae15ed5c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFrontendOutgoingBandwidth-example) {#getFrontendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFrontendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendRouters.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendRouters.md index add657bfd4..16245be39b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFrontendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFrontendRouters-example) {#getFrontendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFrontendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFutureBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFutureBillingItem.md index b0f91cbe7a..988197a350 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFutureBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getFutureBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getFutureBillingItem-example) {#getFutureBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getFutureBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getGlobalIdentifier.md index 08cb94c917..3f9641d6c2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardDrives.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardDrives.md index ffbedcb7cb..15df6df6ea 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardDrives.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardDrives.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardDrives-example) {#getHardDrives-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHardDrives' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareByIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareByIpAddress.md index 408b20cfce..1439a9b65c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardwareByIpAddress-example) {#getHardwareByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/getHardwareByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareChassis.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareChassis.md index 78f047ba2e..245d336a4e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareChassis.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardwareChassis-example) {#getHardwareChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHardwareChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunction.md index 1ccfa6498b..467b1379d0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardwareFunction-example) {#getHardwareFunction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHardwareFunction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunctionDescription.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunctionDescription.md index dd2bba466c..db22710973 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunctionDescription.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareFunctionDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardwareFunctionDescription-example) {#getHardwareFunctionDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHardwareFunctionDescription' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareState.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareState.md index da46f739f6..b50f45dee0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareState.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardwareState-example) {#getHardwareState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHardwareState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareStatus.md index b3a8120e70..cacae82c14 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHardwareStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHardwareStatus-example) {#getHardwareStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHardwareStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasSingleRootVirtualizationBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasSingleRootVirtualizationBillingItemFlag.md index a4694307f4..52aee819b6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasSingleRootVirtualizationBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasSingleRootVirtualizationBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHasSingleRootVirtualizationBillingItemFlag-example) {#getHasSingleRootVirtualizationBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHasSingleRootVirtualizationBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasTrustedPlatformModuleBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasTrustedPlatformModuleBillingItemFlag.md index bb5381f4f2..a102a8060f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasTrustedPlatformModuleBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHasTrustedPlatformModuleBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHasTrustedPlatformModuleBillingItemFlag-example) {#getHasTrustedPlatformModuleBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHasTrustedPlatformModuleBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHostIpsSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHostIpsSoftwareComponent.md index 612e13a82b..703c7b1247 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHostIpsSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHostIpsSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHostIpsSoftwareComponent-example) {#getHostIpsSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHostIpsSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBandwidth.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBandwidth.md index bbf636810d..53bf79cfe0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBandwidth.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHourlyBandwidth-example) {#getHourlyBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHourlyBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBillingFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBillingFlag.md index bee0b86a05..7b45fed2b3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBillingFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getHourlyBillingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getHourlyBillingFlag-example) {#getHourlyBillingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getHourlyBillingFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundBandwidthUsage.md index e109497f7c..940c628f7c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getInboundBandwidthUsage-example) {#getInboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getInboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPrivateBandwidthUsage.md index c002665e6f..b896033bed 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getInboundPrivateBandwidthUsage-example) {#getInboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getInboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPublicBandwidthUsage.md index e1085914c8..de252c50c2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsBillingTermChangeAvailableFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsBillingTermChangeAvailableFlag.md index 0f29ba157d..a82324cc03 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsBillingTermChangeAvailableFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsBillingTermChangeAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getIsBillingTermChangeAvailableFlag-example) {#getIsBillingTermChangeAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getIsBillingTermChangeAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsCloudReadyNodeCertified.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsCloudReadyNodeCertified.md index b73e396764..972d3239e3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsCloudReadyNodeCertified.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsCloudReadyNodeCertified.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getIsCloudReadyNodeCertified-example) {#getIsCloudReadyNodeCertified-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getIsCloudReadyNodeCertified' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsIpmiDisabled.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsIpmiDisabled.md index 72f8bcb905..721a2a0078 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsIpmiDisabled.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsIpmiDisabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getIsIpmiDisabled-example) {#getIsIpmiDisabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getIsIpmiDisabled' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsQeInternalServer.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsQeInternalServer.md index 20c4d42114..80bcc61cb3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsQeInternalServer.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsQeInternalServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getIsQeInternalServer-example) {#getIsQeInternalServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getIsQeInternalServer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsVirtualPrivateCloudNode.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsVirtualPrivateCloudNode.md index eeb86a34c6..dc356c7336 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsVirtualPrivateCloudNode.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getIsVirtualPrivateCloudNode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getIsVirtualPrivateCloudNode-example) {#getIsVirtualPrivateCloudNode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getIsVirtualPrivateCloudNode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getItemPricesFromSoftwareDescriptions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getItemPricesFromSoftwareDescriptions.md index 991b8b484f..bdbfd08afe 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getItemPricesFromSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getItemPricesFromSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getItemPricesFromSoftwareDescriptions-example) {#getItemPricesFromSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getItemPricesFromSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastOperatingSystemReload.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastOperatingSystemReload.md index 37df5fa51e..8e30e8e07e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastOperatingSystemReload.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastOperatingSystemReload.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLastOperatingSystemReload-example) {#getLastOperatingSystemReload-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLastOperatingSystemReload' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastTransaction.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastTransaction.md index 66e749c0d0..24815c1566 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLastTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLastTransaction-example) {#getLastTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLastTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLatestNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLatestNetworkMonitorIncident.md index 835c31f77c..b7325de65b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLatestNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLatestNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLatestNetworkMonitorIncident-example) {#getLatestNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLatestNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocation.md index 2e2fd31b97..9e8067cfc2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocationPathString.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocationPathString.md index 556bfcd95b..9fa66c6221 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocationPathString.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLocationPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLocationPathString-example) {#getLocationPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLocationPathString' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLockboxNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLockboxNetworkStorage.md index b610b956a2..8794d65a53 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLockboxNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLockboxNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLockboxNetworkStorage-example) {#getLockboxNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLockboxNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLogicalVolumeStorageGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLogicalVolumeStorageGroups.md index e7f71172c4..37ea1a9c8a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLogicalVolumeStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getLogicalVolumeStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getLogicalVolumeStorageGroups-example) {#getLogicalVolumeStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getLogicalVolumeStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagedResourceFlag.md index 983f7cd4d3..05f6946643 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagementNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagementNetworkComponent.md index adf130077a..906729a22d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagementNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getManagementNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getManagementNetworkComponent-example) {#getManagementNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getManagementNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemory.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemory.md index dd15276340..7087964730 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemory.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMemory-example) {#getMemory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMemory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemoryCapacity.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemoryCapacity.md index d2f73f2599..cbbbb2caf4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemoryCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMemoryCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMemoryCapacity-example) {#getMemoryCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMemoryCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObject.md index 71ec366f12..a8819d470f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObjectId.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObjectId.md index c9e8bd3089..89a99bcc59 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObjectId.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMetricTrackingObjectId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMetricTrackingObjectId-example) {#getMetricTrackingObjectId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMetricTrackingObjectId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getModules.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getModules.md index 067fc89780..14ce519aa7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getModules.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getModules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getModules-example) {#getModules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getModules' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringRobot.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringRobot.md index 712d8ed2aa..3b8ac9c7f3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringRobot.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringRobot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMonitoringRobot-example) {#getMonitoringRobot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMonitoringRobot' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceComponent.md index 46b3f20ff0..280f3550ed 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMonitoringServiceComponent-example) {#getMonitoringServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMonitoringServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceEligibilityFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceEligibilityFlag.md index 6b64bba3b5..d94c6c8897 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceEligibilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringServiceEligibilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMonitoringServiceEligibilityFlag-example) {#getMonitoringServiceEligibilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMonitoringServiceEligibilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringUserNotification.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringUserNotification.md index e0c496ca39..60432034e2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringUserNotification.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMonitoringUserNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMonitoringUserNotification-example) {#getMonitoringUserNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMonitoringUserNotification' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMotherboard.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMotherboard.md index 7efff61df5..57721ad0a2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMotherboard.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getMotherboard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getMotherboard-example) {#getMotherboard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getMotherboard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkCards.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkCards.md index 8552b6b6f1..cfbb510ea9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkCards.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkCards.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkCards-example) {#getNetworkCards-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkCards' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponentFirewallProtectableIpAddresses.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponentFirewallProtectableIpAddresses.md index 2ccee15c1f..0c12a2ec3b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponentFirewallProtectableIpAddresses.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponentFirewallProtectableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewallProtectableIpAddresses-example) {#getNetworkComponentFirewallProtectableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkComponentFirewallProtectableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponents.md index d07a4636bb..dd1d0dd3a1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMember.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMember.md index da6a26f0f2..4ad603ca1c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMember.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkGatewayMember-example) {#getNetworkGatewayMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkGatewayMember' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMemberFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMemberFlag.md index 7cd35e3c98..0f48339641 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMemberFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkGatewayMemberFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkGatewayMemberFlag-example) {#getNetworkGatewayMemberFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkGatewayMemberFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkManagementIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkManagementIpAddress.md index 478c2e5d64..c0557be9c3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkManagementIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkManagementIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkManagementIpAddress-example) {#getNetworkManagementIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkManagementIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownHardware.md index 8eb34233aa..6c3e7edb75 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownHardware-example) {#getNetworkMonitorAttachedDownHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkMonitorAttachedDownHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownVirtualGuests.md index 29e0176d88..62392cef8a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorAttachedDownVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownVirtualGuests-example) {#getNetworkMonitorAttachedDownVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkMonitorAttachedDownVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorIncidents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorIncidents.md index 245c21748b..bd01fe6175 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitorIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkMonitorIncidents-example) {#getNetworkMonitorIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkMonitorIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitors.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitors.md index 520a65612d..e095ce13da 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitors.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkMonitors-example) {#getNetworkMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkMonitors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatus.md index 3c3f33e575..d444f6523b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkStatus-example) {#getNetworkStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatusAttribute.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatusAttribute.md index c42ea12613..4560ca4816 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatusAttribute.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStatusAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkStatusAttribute-example) {#getNetworkStatusAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkStatusAttribute' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStorage.md index 95e8d614c4..bd2e6afc58 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkVlans.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkVlans.md index f98cc6b386..7b2c59cba2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNextBillingCycleBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNextBillingCycleBandwidthAllocation.md index 5b23482903..72f0629245 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNextBillingCycleBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNextBillingCycleBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNextBillingCycleBandwidthAllocation-example) {#getNextBillingCycleBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNextBillingCycleBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNotesHistory.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNotesHistory.md index 09a6c04f51..0a24b1300b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNotesHistory.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNotesHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNotesHistory-example) {#getNotesHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNotesHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamCapacity.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamCapacity.md index 1e6c44bceb..25c0883efb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNvRamCapacity-example) {#getNvRamCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNvRamCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamComponentModels.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamComponentModels.md index c6bb8b2f49..7933bbca5c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getNvRamComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getNvRamComponentModels-example) {#getNvRamComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getNvRamComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getObject.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getObject.md index 6d027defff..7170ef121d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOpenCancellationTicket.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOpenCancellationTicket.md index d768418359..27cffbd281 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOpenCancellationTicket.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOpenCancellationTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOpenCancellationTicket-example) {#getOpenCancellationTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOpenCancellationTicket' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystem.md index 4ed4c640c1..4b1d1c008b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOperatingSystem-example) {#getOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystemReferenceCode.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystemReferenceCode.md index 5835c7a8c2..0bc69e2fbd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystemReferenceCode.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOperatingSystemReferenceCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOperatingSystemReferenceCode-example) {#getOperatingSystemReferenceCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOperatingSystemReferenceCode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundBandwidthUsage.md index 4cdcae5bc4..ded75ae172 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOutboundBandwidthUsage-example) {#getOutboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOutboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPrivateBandwidthUsage.md index fb4c31ba70..7e83586b7a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOutboundPrivateBandwidthUsage-example) {#getOutboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOutboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPublicBandwidthUsage.md index c7f39f9467..3cf1b1ad6b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOverBandwidthAllocationFlag.md index a47fb3c002..0778295864 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getOverBandwidthAllocationFlag-example) {#getOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPMInfo.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPMInfo.md index cea5c37f92..3373db1292 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPMInfo.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPMInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPMInfo-example) {#getPMInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPMInfo' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentBay.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentBay.md index 28f6d7147c..97cf8bead7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentBay.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentBay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getParentBay-example) {#getParentBay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getParentBay' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentHardware.md index 0caaeaa032..56c00dcb22 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getParentHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getParentHardware-example) {#getParentHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getParentHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPartitions.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPartitions.md index 77827d8955..e37135d1e4 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPartitions.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPartitions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPartitions-example) {#getPartitions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPartitions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPointOfPresenceLocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPointOfPresenceLocation.md index 67d1cdc641..645ec8e909 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPointOfPresenceLocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPointOfPresenceLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPointOfPresenceLocation-example) {#getPointOfPresenceLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPointOfPresenceLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerComponents.md index 02ea5e5a16..29182569f1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPowerComponents-example) {#getPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerSupply.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerSupply.md index 3cbe32a3e3..b9b026f4c1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerSupply.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPowerSupply.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPowerSupply-example) {#getPowerSupply-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPowerSupply' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendIpAddress.md index 4c8dfb14ee..c2211825d7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendNetworkComponent.md index 10fb19aa83..5ac274dff2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryBackendNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrimaryBackendNetworkComponent-example) {#getPrimaryBackendNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrimaryBackendNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryDriveSize.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryDriveSize.md index 6afd68672d..b369213fba 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryDriveSize.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryDriveSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrimaryDriveSize-example) {#getPrimaryDriveSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrimaryDriveSize' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryIpAddress.md index e5776aa9ec..4016b433db 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryNetworkComponent.md index 5a8480f8db..b29070d757 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrimaryNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrimaryNetworkComponent-example) {#getPrimaryNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrimaryNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBackendNetworkComponents.md index 88315d2325..50dce48ad2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateBackendNetworkComponents-example) {#getPrivateBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthData.md index 3d7fe1589e..3b7bae7f81 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateBandwidthData-example) {#getPrivateBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthDataSummary.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthDataSummary.md index e3113c739b..791f2c2c62 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthDataSummary.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthDataSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateBandwidthDataSummary-example) {#getPrivateBandwidthDataSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateBandwidthDataSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthGraphImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthGraphImage.md index ac48d34915..6238d94ae5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthGraphImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateBandwidthGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateBandwidthGraphImage-example) {#getPrivateBandwidthGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateBandwidthGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateIpAddress.md index 2f76bda7e7..b6764e8ff1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateIpAddress-example) {#getPrivateIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkComponent.md index a00447b330..f0a4bd42c7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateNetworkComponent-example) {#getPrivateNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkOnlyFlag.md index beda2d17b8..a1fd3cb475 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlan.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlan.md index 2f9cd4b211..71eb29b102 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlan.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateVlan-example) {#getPrivateVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPrivateVlan' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlanByIpAddress.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlanByIpAddress.md index 81e6ff49e1..b642985399 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlanByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPrivateVlanByIpAddress.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPrivateVlanByIpAddress-example) {#getPrivateVlanByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/getPrivateVlanByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorCoreAmount.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorCoreAmount.md index 1395ea152b..1bbef7fcd6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getProcessorCoreAmount-example) {#getProcessorCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getProcessorCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorPhysicalCoreAmount.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorPhysicalCoreAmount.md index 02fbb77c31..a21a0ba13c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorPhysicalCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessorPhysicalCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getProcessorPhysicalCoreAmount-example) {#getProcessorPhysicalCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getProcessorPhysicalCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessors.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessors.md index af5744104a..080bca9869 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessors.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProcessors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getProcessors-example) {#getProcessors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getProcessors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedOverBandwidthAllocationFlag.md index 91167e13d9..fc1ac65673 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getProjectedOverBandwidthAllocationFlag-example) {#getProjectedOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getProjectedOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedPublicBandwidthUsage.md index cef9307bfd..25a60d5e49 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProjectedPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getProjectedPublicBandwidthUsage-example) {#getProjectedPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getProjectedPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProvisionDate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProvisionDate.md index 1b08c340cb..fcb3f3e539 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProvisionDate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getProvisionDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getProvisionDate-example) {#getProvisionDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getProvisionDate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthData.md index 28ae8a0501..065b76db80 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicBandwidthData-example) {#getPublicBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPublicBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthDataSummary.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthDataSummary.md index 99f697f1c6..04d83cff6e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthDataSummary.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthDataSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicBandwidthDataSummary-example) {#getPublicBandwidthDataSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPublicBandwidthDataSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthGraphImage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthGraphImage.md index 6a7239181d..22f89a651e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthGraphImage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicBandwidthGraphImage-example) {#getPublicBandwidthGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPublicBandwidthGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthTotal.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthTotal.md index dc86a6ad89..312e383a7f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthTotal.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicBandwidthTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicBandwidthTotal-example) {#getPublicBandwidthTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPublicBandwidthTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicNetworkComponent.md index d1911fb36d..7e5f9a9233 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicNetworkComponent-example) {#getPublicNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPublicNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlan.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlan.md index 06bd9516eb..cfe8d2463f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlan.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicVlan-example) {#getPublicVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getPublicVlan' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlanByHostname.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlanByHostname.md index 7a32bd5cc6..44d79f371f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlanByHostname.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getPublicVlanByHostname.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getPublicVlanByHostname-example) {#getPublicVlanByHostname-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/getPublicVlanByHostname' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRack.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRack.md index 9eaaf8bd0e..14d9901582 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRack.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRack-example) {#getRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRaidControllers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRaidControllers.md index 273f6ab27e..91f97a801e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRaidControllers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRaidControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRaidControllers-example) {#getRaidControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRaidControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReadyNodeFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReadyNodeFlag.md index 9a2e6aca4c..559db3869e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReadyNodeFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReadyNodeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getReadyNodeFlag-example) {#getReadyNodeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getReadyNodeFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentEvents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentEvents.md index 09ae3552de..3c4e19b726 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentRemoteManagementCommands.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentRemoteManagementCommands.md index 2d7fc82a23..24f5bd036e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentRemoteManagementCommands.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRecentRemoteManagementCommands.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRecentRemoteManagementCommands-example) {#getRecentRemoteManagementCommands-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRecentRemoteManagementCommands' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRegionalInternetRegistry.md index 56c7d1153e..b0557293e6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagement.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagement.md index 6ae4a879d5..45295034ea 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagement.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRemoteManagement-example) {#getRemoteManagement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRemoteManagement' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementAccounts.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementAccounts.md index 9eca910785..688807f36e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementAccounts.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRemoteManagementAccounts-example) {#getRemoteManagementAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRemoteManagementAccounts' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementComponent.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementComponent.md index 4a56ac0e55..af0ef7207a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementComponent.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRemoteManagementComponent-example) {#getRemoteManagementComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRemoteManagementComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementUsers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementUsers.md index b6f6095f4c..5a13c28a13 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementUsers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRemoteManagementUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRemoteManagementUsers-example) {#getRemoteManagementUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRemoteManagementUsers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceConfigurations.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceConfigurations.md index 4a6a16c001..8513da4a28 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceConfigurations.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getResourceConfigurations-example) {#getResourceConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getResourceConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupMemberReferences.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupMemberReferences.md index d4f5b68631..6fd9428a3c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupMemberReferences.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupMemberReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getResourceGroupMemberReferences-example) {#getResourceGroupMemberReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getResourceGroupMemberReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupRoles.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupRoles.md index f4d89436a7..17912b6255 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupRoles.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroupRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getResourceGroupRoles-example) {#getResourceGroupRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getResourceGroupRoles' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroups.md index 66e10c8ef5..8d5198348b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getResourceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getResourceGroups-example) {#getResourceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getResourceGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReverseDomainRecords.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReverseDomainRecords.md index 32be1866b7..3566da9adb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getReverseDomainRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getReverseDomainRecords-example) {#getReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRouters.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRouters.md index 5f4e336a93..22d691e9f1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRouters.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getRouters-example) {#getRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSecurityScanRequests.md index d7a491cf0f..094c74f65c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorData.md index 7d51bb762d..44be3d6bd0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSensorData-example) {#getSensorData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSensorData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorDataWithGraphs.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorDataWithGraphs.md index bbdd06f7a0..3078b9ca96 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorDataWithGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSensorDataWithGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSensorDataWithGraphs-example) {#getSensorDataWithGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSensorDataWithGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerDetails.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerDetails.md index f91a94fb81..d143a2c226 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerDetails.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getServerDetails-example) {#getServerDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getServerDetails' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerFanSpeedGraphs.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerFanSpeedGraphs.md index a5e7a3d1c8..29d906f69f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerFanSpeedGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerFanSpeedGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getServerFanSpeedGraphs-example) {#getServerFanSpeedGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getServerFanSpeedGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerPowerState.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerPowerState.md index b5aae1a41b..b668e046b7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerPowerState.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getServerPowerState-example) {#getServerPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getServerPowerState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerRoom.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerRoom.md index 49578326e8..ee479af4f2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerRoom.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerRoom.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getServerRoom-example) {#getServerRoom-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getServerRoom' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerTemperatureGraphs.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerTemperatureGraphs.md index 1bfda26a88..0eda184067 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerTemperatureGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServerTemperatureGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getServerTemperatureGraphs-example) {#getServerTemperatureGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getServerTemperatureGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServiceProvider.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServiceProvider.md index 0c3c137a63..770be84d9b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareComponents.md index 9f6b5644a1..65a255cf18 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSoftwareComponents-example) {#getSoftwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSoftwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareGuardExtensionEnabled.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareGuardExtensionEnabled.md index de947231bb..d4912533bc 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareGuardExtensionEnabled.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSoftwareGuardExtensionEnabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSoftwareGuardExtensionEnabled-example) {#getSoftwareGuardExtensionEnabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSoftwareGuardExtensionEnabled' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSparePoolBillingItem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSparePoolBillingItem.md index 3f23561e72..5da86c3aa7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSparePoolBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSparePoolBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSparePoolBillingItem-example) {#getSparePoolBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSparePoolBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSshKeys.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSshKeys.md index e87f423d78..2fe6dadc52 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSshKeys.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStatisticsRemoteManagement.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStatisticsRemoteManagement.md index 05603ba6da..182f05c4af 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStatisticsRemoteManagement.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStatisticsRemoteManagement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getStatisticsRemoteManagement-example) {#getStatisticsRemoteManagement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getStatisticsRemoteManagement' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageGroups.md index 098b160e94..97e1e2a78c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageNetworkComponents.md index 84826be5b6..cfee152609 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getStorageNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getStorageNetworkComponents-example) {#getStorageNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getStorageNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTagReferences.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTagReferences.md index c75f01d468..8ec37ba9de 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTagReferences.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTopLevelLocation.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTopLevelLocation.md index 1569831f1f..dc80c43658 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTopLevelLocation.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTopLevelLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getTopLevelLocation-example) {#getTopLevelLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getTopLevelLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTransactionHistory.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTransactionHistory.md index 65a7eb72ab..6cc35b212d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTransactionHistory.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getTransactionHistory.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getTransactionHistory-example) {#getTransactionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getTransactionHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUefiBootFlag.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUefiBootFlag.md index bf04cb9439..060dca6789 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUefiBootFlag.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUefiBootFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUefiBootFlag-example) {#getUefiBootFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUefiBootFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeItemPrices.md index 7711653949..c115d21b32 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeRequest.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeRequest.md index c503c4731b..1f79147674 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeableActiveComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeableActiveComponents.md index 86292b87bd..01f4bb181f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeableActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUpgradeableActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUpgradeableActiveComponents-example) {#getUpgradeableActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUpgradeableActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkHardware.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkHardware.md index 6844da2aca..a0eae95aec 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUplinkHardware-example) {#getUplinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUplinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkNetworkComponents.md index 1d4921d7c8..1ff4fe6911 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUplinkNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUplinkNetworkComponents-example) {#getUplinkNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUplinkNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUserData.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUserData.md index ecedc5ce59..5eacaddede 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUserData.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUserData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUserData-example) {#getUserData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUserData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUsers.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUsers.md index a185cc1d60..eb09a56bdb 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUsers.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getValidBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getValidBlockDeviceTemplateGroups.md index aac101776c..6775fceda0 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getValidBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getValidBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getValidBlockDeviceTemplateGroups-example) {#getValidBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getValidBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassis.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassis.md index d7796c5291..9175378ab1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassis.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualChassis-example) {#getVirtualChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassisSiblings.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassisSiblings.md index 2ca4464094..c1d94afdab 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassisSiblings.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualChassisSiblings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualChassisSiblings-example) {#getVirtualChassisSiblings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualChassisSiblings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualGuests.md index afb1946e48..1b706b8a06 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualHost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualHost.md index db5411c39e..53db29058a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualHost-example) {#getVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualLicenses.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualLicenses.md index 5f13c1281c..6fdfe86daf 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualLicenses-example) {#getVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRack.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRack.md index 548b30465e..d61011e70f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRack.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualRack-example) {#getVirtualRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackId.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackId.md index 9a73fa7b58..16ebe86dd3 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackId.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualRackId-example) {#getVirtualRackId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualRackId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackName.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackName.md index 6ccacf1059..bde2a71d2e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackName.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualRackName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualRackName-example) {#getVirtualRackName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualRackName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualizationPlatform.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualizationPlatform.md index c5caf27df9..a3961301fd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualizationPlatform.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getVirtualizationPlatform.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getVirtualizationPlatform-example) {#getVirtualizationPlatform-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getVirtualizationPlatform' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateAvailableUpdates.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateAvailableUpdates.md index c9cce3163c..971c3b5566 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateAvailableUpdates.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateAvailableUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getWindowsUpdateAvailableUpdates-example) {#getWindowsUpdateAvailableUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getWindowsUpdateAvailableUpdates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateInstalledUpdates.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateInstalledUpdates.md index f7f3a409c8..8be17ee1c5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateInstalledUpdates.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateInstalledUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getWindowsUpdateInstalledUpdates-example) {#getWindowsUpdateInstalledUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getWindowsUpdateInstalledUpdates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateStatus.md index 8fb879dad8..7c311ff50c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/getWindowsUpdateStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#getWindowsUpdateStatus-example) {#getWindowsUpdateStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/getWindowsUpdateStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/importVirtualHost.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/importVirtualHost.md index c7f4ed5f4d..00a3030d25 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/importVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/importVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#importVirtualHost-example) {#importVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/importVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateIderaBareMetalRestore.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateIderaBareMetalRestore.md index 973827aa20..7de2b59228 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateIderaBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateIderaBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#initiateIderaBareMetalRestore-example) {#initiateIderaBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/initiateIderaBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateR1SoftBareMetalRestore.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateR1SoftBareMetalRestore.md index 16090823bd..4d4e52c9c8 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateR1SoftBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/initiateR1SoftBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#initiateR1SoftBareMetalRestore-example) {#initiateR1SoftBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/initiateR1SoftBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/isBackendPingable.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/isBackendPingable.md index 61e8843e89..58be4725ab 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/isBackendPingable.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/isBackendPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#isBackendPingable-example) {#isBackendPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/isBackendPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/isPingable.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/isPingable.md index 1992e3e74c..9acb00b9ab 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/isPingable.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/isWindowsServer.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/isWindowsServer.md index 0db72303ef..273761046e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/isWindowsServer.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/isWindowsServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#isWindowsServer-example) {#isWindowsServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/isWindowsServer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareReflash.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareReflash.md index 2e82cc29f1..5066aa5413 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareReflash.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareReflash.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#massFirmwareReflash-example) {#massFirmwareReflash-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/massFirmwareReflash' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareUpdate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareUpdate.md index 82ac917c15..6875758f73 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareUpdate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massFirmwareUpdate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#massFirmwareUpdate-example) {#massFirmwareUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/massFirmwareUpdate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massHyperThreadingUpdate.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massHyperThreadingUpdate.md index fedeb4b2f3..c615937e0b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massHyperThreadingUpdate.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massHyperThreadingUpdate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#massHyperThreadingUpdate-example) {#massHyperThreadingUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/massHyperThreadingUpdate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massReloadOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massReloadOperatingSystem.md index 9f23808e9d..056c4405d5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massReloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massReloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#massReloadOperatingSystem-example) {#massReloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/massReloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massSparePool.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massSparePool.md index a0870a585a..201d78451b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/massSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/massSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#massSparePool-example) {#massSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/massSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/ping.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/ping.md index c793f73ce5..321c6a084d 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/ping.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/ping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#ping-example) {#ping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/ping' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/populateServerRam.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/populateServerRam.md index b97ab5ed3a..c08229de35 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/populateServerRam.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/populateServerRam.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#populateServerRam-example) {#populateServerRam-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/populateServerRam' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerCycle.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerCycle.md index d0eb379b9d..382e984b96 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerCycle.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerCycle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#powerCycle-example) {#powerCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/powerCycle' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOff.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOff.md index 00680772e2..e19817378a 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOff.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOff.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#powerOff-example) {#powerOff-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/powerOff' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOn.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOn.md index d7c0bca374..9fbd661775 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOn.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/powerOn.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#powerOn-example) {#powerOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/powerOn' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootDefault.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootDefault.md index f598c49716..ce8d56342b 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootDefault.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#rebootDefault-example) {#rebootDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/rebootDefault' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootHard.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootHard.md index 1e17755693..cd4c3d76d9 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootHard.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootHard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#rebootHard-example) {#rebootHard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/rebootHard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootSoft.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootSoft.md index 3cf4e79680..7f161d4830 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootSoft.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/rebootSoft.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#rebootSoft-example) {#rebootSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/rebootSoft' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/refreshDeviceStatus.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/refreshDeviceStatus.md index 16ee5e8244..2d6f4f000f 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/refreshDeviceStatus.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/refreshDeviceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#refreshDeviceStatus-example) {#refreshDeviceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/refreshDeviceStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadCurrentOperatingSystemConfiguration.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadCurrentOperatingSystemConfiguration.md index 5902670947..8757dd39a5 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadCurrentOperatingSystemConfiguration.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadCurrentOperatingSystemConfiguration.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#reloadCurrentOperatingSystemConfiguration-example) {#reloadCurrentOperatingSystemConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/reloadCurrentOperatingSystemConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadOperatingSystem.md index bf525b6ed4..d1d7802b25 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/reloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#reloadOperatingSystem-example) {#reloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/reloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorage.md index 55da65bf79..b4e77d8a62 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorage-example) {#removeAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/removeAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorageList.md index 4ea3b2bde9..f7623335f1 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeTags.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeTags.md index c1ed762cd0..b33c298de2 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeTags.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/removeTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#removeTags-example) {#removeTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/removeTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/runPassmarkCertificationBenchmark.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/runPassmarkCertificationBenchmark.md index ed8b9958aa..25ef69df00 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/runPassmarkCertificationBenchmark.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/runPassmarkCertificationBenchmark.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#runPassmarkCertificationBenchmark-example) {#runPassmarkCertificationBenchmark-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/runPassmarkCertificationBenchmark' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setOperatingSystemPassword.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setOperatingSystemPassword.md index 695886f0a8..a2a8938dbd 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setOperatingSystemPassword.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setOperatingSystemPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#setOperatingSystemPassword-example) {#setOperatingSystemPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/setOperatingSystemPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPrivateNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPrivateNetworkInterfaceSpeed.md index 2cc19e7633..a9c5571c62 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPrivateNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPrivateNetworkInterfaceSpeed.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#setPrivateNetworkInterfaceSpeed-example) {#setPrivateNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/setPrivateNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPublicNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPublicNetworkInterfaceSpeed.md index 9caf961cb8..f3edb7146e 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPublicNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setPublicNetworkInterfaceSpeed.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#setPublicNetworkInterfaceSpeed-example) {#setPublicNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/setPublicNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setTags.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setTags.md index daca426eb4..45ec6be747 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setTags.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setUserMetadata.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setUserMetadata.md index 8e2420eb03..6c10f20b90 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/setUserMetadata.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/setUserMetadata.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#setUserMetadata-example) {#setUserMetadata-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/setUserMetadata' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPrivatePort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPrivatePort.md index c85b91db63..07ade40622 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPrivatePort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPrivatePort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#shutdownPrivatePort-example) {#shutdownPrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/shutdownPrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPublicPort.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPublicPort.md index e89affe205..3ff8c64ad6 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPublicPort.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/shutdownPublicPort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#shutdownPublicPort-example) {#shutdownPublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/shutdownPublicPort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/sparePool.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/sparePool.md index c666a731f4..8bb58f8aed 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/sparePool.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/sparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#sparePool-example) {#sparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/sparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/testRaidAlertService.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/testRaidAlertService.md index 5851dde6b8..b9265330ce 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/testRaidAlertService.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/testRaidAlertService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#testRaidAlertService-example) {#testRaidAlertService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/testRaidAlertService' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/toggleManagementInterface.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/toggleManagementInterface.md index 1d26a078c7..4217b79dd7 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/toggleManagementInterface.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/toggleManagementInterface.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#toggleManagementInterface-example) {#toggleManagementInterface-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/toggleManagementInterface' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/updateIpmiPassword.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/updateIpmiPassword.md index d0f6e28472..747f259b64 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/updateIpmiPassword.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/updateIpmiPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#updateIpmiPassword-example) {#updateIpmiPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/{SoftLayer_Hardware_SecurityModule750ID}/updateIpmiPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_SecurityModule750/validatePartitionsForOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_SecurityModule750/validatePartitionsForOperatingSystem.md index e71a6f07ae..1075092f6c 100644 --- a/content/reference/services/SoftLayer_Hardware_SecurityModule750/validatePartitionsForOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_SecurityModule750/validatePartitionsForOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_SecurityModule750" --- -### Curl Example +# [REST Example](#validatePartitionsForOperatingSystem-example) {#validatePartitionsForOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, SoftLayer_Hardware_Component_Partition]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, SoftLayer_Hardware_Component_Partition]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_SecurityModule750/validatePartitionsForOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/activatePrivatePort.md b/content/reference/services/SoftLayer_Hardware_Server/activatePrivatePort.md index 4d0004f857..d2480df120 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/activatePrivatePort.md +++ b/content/reference/services/SoftLayer_Hardware_Server/activatePrivatePort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#activatePrivatePort-example) {#activatePrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/activatePrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/activatePublicPort.md b/content/reference/services/SoftLayer_Hardware_Server/activatePublicPort.md index 6c88fca68a..65e2d0215a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/activatePublicPort.md +++ b/content/reference/services/SoftLayer_Hardware_Server/activatePublicPort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#activatePublicPort-example) {#activatePublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/activatePublicPort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorage.md index a88bc2a64b..7182ce773d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorageList.md index 49271e27f5..a83248942d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_Server/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/bootToRescueLayer.md b/content/reference/services/SoftLayer_Hardware_Server/bootToRescueLayer.md index a61146b61d..5ca9d5ae38 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/bootToRescueLayer.md +++ b/content/reference/services/SoftLayer_Hardware_Server/bootToRescueLayer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#bootToRescueLayer-example) {#bootToRescueLayer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/bootToRescueLayer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/captureImage.md b/content/reference/services/SoftLayer_Hardware_Server/captureImage.md index 1f82fa1db2..f2822eca61 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/captureImage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/captureImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#captureImage-example) {#captureImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/captureImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/createFirmwareReflashTransaction.md b/content/reference/services/SoftLayer_Hardware_Server/createFirmwareReflashTransaction.md index 24ea7d1088..3af6414a41 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/createFirmwareReflashTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/createFirmwareReflashTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#createFirmwareReflashTransaction-example) {#createFirmwareReflashTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/createFirmwareReflashTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/createFirmwareUpdateTransaction.md b/content/reference/services/SoftLayer_Hardware_Server/createFirmwareUpdateTransaction.md index 88c4e343cd..af61276b63 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/createFirmwareUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/createFirmwareUpdateTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#createFirmwareUpdateTransaction-example) {#createFirmwareUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/createFirmwareUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/createHyperThreadingUpdateTransaction.md b/content/reference/services/SoftLayer_Hardware_Server/createHyperThreadingUpdateTransaction.md index ea90ea8f76..746713be4a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/createHyperThreadingUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/createHyperThreadingUpdateTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#createHyperThreadingUpdateTransaction-example) {#createHyperThreadingUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/createHyperThreadingUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/createObject.md b/content/reference/services/SoftLayer_Hardware_Server/createObject.md index 652c83a983..c63a9244d2 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/createObject.md +++ b/content/reference/services/SoftLayer_Hardware_Server/createObject.md @@ -278,8 +278,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/createObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/createPostSoftwareInstallTransaction.md b/content/reference/services/SoftLayer_Hardware_Server/createPostSoftwareInstallTransaction.md index b1a2a62187..32960d29c1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/createPostSoftwareInstallTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/createPostSoftwareInstallTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#createPostSoftwareInstallTransaction-example) {#createPostSoftwareInstallTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/createPostSoftwareInstallTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/deleteObject.md b/content/reference/services/SoftLayer_Hardware_Server/deleteObject.md index 4f8c7aaabd..4c2c5e97a9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/deleteObject.md +++ b/content/reference/services/SoftLayer_Hardware_Server/deleteObject.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/deleteSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_Server/deleteSoftwareComponentPasswords.md index ff479bed4b..7e72755834 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/deleteSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_Server/deleteSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#deleteSoftwareComponentPasswords-example) {#deleteSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/deleteSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/deleteTag.md b/content/reference/services/SoftLayer_Hardware_Server/deleteTag.md index b286a4490a..14215b2e57 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/deleteTag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/editObject.md b/content/reference/services/SoftLayer_Hardware_Server/editObject.md index 6491e7f01d..3854bee328 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/editObject.md +++ b/content/reference/services/SoftLayer_Hardware_Server/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware_Server]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/editSoftwareComponentPasswords.md b/content/reference/services/SoftLayer_Hardware_Server/editSoftwareComponentPasswords.md index c8a3fa1a79..4b597b699a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/editSoftwareComponentPasswords.md +++ b/content/reference/services/SoftLayer_Hardware_Server/editSoftwareComponentPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#editSoftwareComponentPasswords-example) {#editSoftwareComponentPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/editSoftwareComponentPasswords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/executeRemoteScript.md b/content/reference/services/SoftLayer_Hardware_Server/executeRemoteScript.md index f867b71f32..35d38889df 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/executeRemoteScript.md +++ b/content/reference/services/SoftLayer_Hardware_Server/executeRemoteScript.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#executeRemoteScript-example) {#executeRemoteScript-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/executeRemoteScript' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/findByIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/findByIpAddress.md index 7504c6aade..e381e476f4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/findByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/findByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#findByIpAddress-example) {#findByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/findByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/generateOrderTemplate.md b/content/reference/services/SoftLayer_Hardware_Server/generateOrderTemplate.md index 6361b4d3b4..454e4c2cbd 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/generateOrderTemplate.md +++ b/content/reference/services/SoftLayer_Hardware_Server/generateOrderTemplate.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#generateOrderTemplate-example) {#generateOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/generateOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAccount.md b/content/reference/services/SoftLayer_Hardware_Server/getAccount.md index 2b29a3746c..0e068f6b21 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAccount.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getActiveComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getActiveComponents.md index dd6c15df0c..5b62258ed0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getActiveComponents-example) {#getActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkFirewallBillingItem.md b/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkFirewallBillingItem.md index 448de8df75..df2ebe4df0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkFirewallBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkFirewallBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getActiveNetworkFirewallBillingItem-example) {#getActiveNetworkFirewallBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getActiveNetworkFirewallBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkMonitorIncident.md index 2093c7fc88..8a3f7c7d48 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getActiveNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getActiveNetworkMonitorIncident-example) {#getActiveNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getActiveNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getActiveTickets.md b/content/reference/services/SoftLayer_Hardware_Server/getActiveTickets.md index fbd0b5f182..964d14331d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getActiveTickets.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getActiveTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getActiveTickets-example) {#getActiveTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getActiveTickets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getActiveTransaction.md b/content/reference/services/SoftLayer_Hardware_Server/getActiveTransaction.md index 7d6a6da04b..6c9b511f42 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getActiveTransactions.md b/content/reference/services/SoftLayer_Hardware_Server/getActiveTransactions.md index 9abd11b2fb..accfc503e1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAllPowerComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getAllPowerComponents.md index 655dfffd2d..47944fc070 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAllPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAllPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAllPowerComponents-example) {#getAllPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAllPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAllowedHost.md b/content/reference/services/SoftLayer_Hardware_Server/getAllowedHost.md index 0c9b4409b7..f952c0cd9f 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorage.md index daa0c46f48..41cf6d14ec 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorageReplicas.md index 4639199d3e..6535e2901b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAntivirusSpywareSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getAntivirusSpywareSoftwareComponent.md index 67739d97c1..e22b93443e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAntivirusSpywareSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAntivirusSpywareSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAntivirusSpywareSoftwareComponent-example) {#getAntivirusSpywareSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAntivirusSpywareSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_Server/getAttachedNetworkStorages.md index 8f18a170a3..3e68aa0be0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAttributes.md b/content/reference/services/SoftLayer_Hardware_Server/getAttributes.md index 7ae9a4894d..9604c6eeea 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAttributes.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAvailableBillingTermChangePrices.md b/content/reference/services/SoftLayer_Hardware_Server/getAvailableBillingTermChangePrices.md index f355e67dc9..cf05f29f36 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAvailableBillingTermChangePrices.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAvailableBillingTermChangePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAvailableBillingTermChangePrices-example) {#getAvailableBillingTermChangePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAvailableBillingTermChangePrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAvailableMonitoring.md b/content/reference/services/SoftLayer_Hardware_Server/getAvailableMonitoring.md index 45975ae3e8..2564e379cb 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAvailableMonitoring.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAvailableMonitoring.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAvailableMonitoring-example) {#getAvailableMonitoring-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAvailableMonitoring' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Hardware_Server/getAvailableNetworkStorages.md index 497630236d..3d667948d7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyBandwidthUsage.md index d995359cdd..c961fbfe8a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAverageDailyBandwidthUsage-example) {#getAverageDailyBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAverageDailyBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPrivateBandwidthUsage.md index da10901136..f51f3b4cd2 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAverageDailyPrivateBandwidthUsage-example) {#getAverageDailyPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAverageDailyPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPublicBandwidthUsage.md index fc7cd4fb25..78ab405076 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBackendBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getBackendBandwidthUsage.md index 4879f85997..153ee67f04 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBackendBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBackendBandwidthUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBackendBandwidthUsage-example) {#getBackendBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBackendBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBackendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Server/getBackendIncomingBandwidth.md index 477413aeef..a35d1cd4a8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBackendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBackendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBackendIncomingBandwidth-example) {#getBackendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBackendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getBackendNetworkComponents.md index 35ca7d9a27..d83a1fc8a0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBackendNetworkComponents-example) {#getBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBackendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Server/getBackendOutgoingBandwidth.md index 84d57d00c3..e119535092 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBackendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBackendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBackendOutgoingBandwidth-example) {#getBackendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBackendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBackendRouters.md b/content/reference/services/SoftLayer_Hardware_Server/getBackendRouters.md index 45fabe7d09..2066eeddb1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBackendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBackendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBackendRouters-example) {#getBackendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBackendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllocation.md index 1acbadfcb5..14bbad8fc6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllotmentDetail.md b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllotmentDetail.md index d2ab8a6850..9387842361 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllotmentDetail.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthAllotmentDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentDetail-example) {#getBandwidthAllotmentDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBandwidthAllotmentDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthForDateRange.md b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthForDateRange.md index 2895aa8099..c440ffc80e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthForDateRange.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthForDateRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBandwidthForDateRange-example) {#getBandwidthForDateRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBandwidthForDateRange' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthImage.md b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthImage.md index 45f1eb025d..22e334dcda 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBandwidthImage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBandwidthImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBandwidthImage-example) {#getBandwidthImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBandwidthImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBenchmarkCertifications.md b/content/reference/services/SoftLayer_Hardware_Server/getBenchmarkCertifications.md index 530ed27eca..c7db2cb90c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBenchmarkCertifications.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBenchmarkCertifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBenchmarkCertifications-example) {#getBenchmarkCertifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBenchmarkCertifications' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBillingCycleBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getBillingCycleBandwidthUsage.md index 1ef51cb88a..db87b860cb 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBillingCycleBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBillingCycleBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBillingCycleBandwidthUsage-example) {#getBillingCycleBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBillingCycleBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePrivateBandwidthUsage.md index d7d1c10789..b0f6c9cf5b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBillingCyclePrivateBandwidthUsage-example) {#getBillingCyclePrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBillingCyclePrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePublicBandwidthUsage.md index 2f7e9b2316..9499a3f9a7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBillingCyclePublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBillingCyclePublicBandwidthUsage-example) {#getBillingCyclePublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBillingCyclePublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBillingItem.md b/content/reference/services/SoftLayer_Hardware_Server/getBillingItem.md index 555348be30..3243243274 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getBillingItemFlag.md index 6ea86a6eec..feb134d54b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBillingItemFlag-example) {#getBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBiosPasswordNullFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getBiosPasswordNullFlag.md index ef9250e0e9..6e77c7eb4a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBiosPasswordNullFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBiosPasswordNullFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBiosPasswordNullFlag-example) {#getBiosPasswordNullFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBiosPasswordNullFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBlockCancelBecauseDisconnectedFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getBlockCancelBecauseDisconnectedFlag.md index a62e5d32b6..f4ecece6b0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBlockCancelBecauseDisconnectedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBlockCancelBecauseDisconnectedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBlockCancelBecauseDisconnectedFlag-example) {#getBlockCancelBecauseDisconnectedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBlockCancelBecauseDisconnectedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBootModeOptions.md b/content/reference/services/SoftLayer_Hardware_Server/getBootModeOptions.md index cc93814f20..0b73465eac 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBootModeOptions.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBootModeOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBootModeOptions-example) {#getBootModeOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBootModeOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getBusinessContinuanceInsuranceFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getBusinessContinuanceInsuranceFlag.md index 7448b469f1..02c4ef5bb6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getBusinessContinuanceInsuranceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getBusinessContinuanceInsuranceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getBusinessContinuanceInsuranceFlag-example) {#getBusinessContinuanceInsuranceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getBusinessContinuanceInsuranceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCaptureEnabledFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getCaptureEnabledFlag.md index 943bed8b8e..c52f96b517 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCaptureEnabledFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCaptureEnabledFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCaptureEnabledFlag-example) {#getCaptureEnabledFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCaptureEnabledFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getChildrenHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getChildrenHardware.md index 688ad4af13..248c215534 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getChildrenHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getChildrenHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getChildrenHardware-example) {#getChildrenHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getChildrenHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getComponentDetailsXML.md b/content/reference/services/SoftLayer_Hardware_Server/getComponentDetailsXML.md index f6e9e6fd68..6c0c5257b2 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getComponentDetailsXML.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getComponentDetailsXML.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getComponentDetailsXML-example) {#getComponentDetailsXML-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getComponentDetailsXML' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getComponents.md index 65c0208a86..59ba85236d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getComponents-example) {#getComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getContainsSolidStateDrivesFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getContainsSolidStateDrivesFlag.md index 5e88e0315d..93643ee23b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getContainsSolidStateDrivesFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getContainsSolidStateDrivesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getContainsSolidStateDrivesFlag-example) {#getContainsSolidStateDrivesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getContainsSolidStateDrivesFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getContinuousDataProtectionSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getContinuousDataProtectionSoftwareComponent.md index 12bbe228dd..1334ed34a6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getContinuousDataProtectionSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getContinuousDataProtectionSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getContinuousDataProtectionSoftwareComponent-example) {#getContinuousDataProtectionSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getContinuousDataProtectionSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getControlPanel.md b/content/reference/services/SoftLayer_Hardware_Server/getControlPanel.md index b880b897e2..2740f3777c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getControlPanel.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getControlPanel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getControlPanel-example) {#getControlPanel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getControlPanel' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCost.md b/content/reference/services/SoftLayer_Hardware_Server/getCost.md index 6e2c85898e..fef3a98341 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCost.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCost-example) {#getCost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCreateObjectOptions.md b/content/reference/services/SoftLayer_Hardware_Server/getCreateObjectOptions.md index d3e5f6c2d5..23f33ea71c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCreateObjectOptions.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCreateObjectOptions.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCreateObjectOptions-example) {#getCreateObjectOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/getCreateObjectOptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBandwidthSummary.md b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBandwidthSummary.md index 87efb6814e..bc7799f0b5 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBandwidthSummary.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBandwidthSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCurrentBandwidthSummary-example) {#getCurrentBandwidthSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCurrentBandwidthSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBenchmarkCertificationResultFile.md b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBenchmarkCertificationResultFile.md index c87de39b66..9fa03c69a6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBenchmarkCertificationResultFile.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBenchmarkCertificationResultFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCurrentBenchmarkCertificationResultFile-example) {#getCurrentBenchmarkCertificationResultFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCurrentBenchmarkCertificationResultFile' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillableBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillableBandwidthUsage.md index 3eff1f1e62..c8782a43a9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillableBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillableBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCurrentBillableBandwidthUsage-example) {#getCurrentBillableBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCurrentBillableBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingDetail.md b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingDetail.md index 94dcd8cb0a..e1aeee01be 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingDetail.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCurrentBillingDetail-example) {#getCurrentBillingDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCurrentBillingDetail' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingTotal.md b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingTotal.md index d96dcd1555..1f074b79d5 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingTotal.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCurrentBillingTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCurrentBillingTotal-example) {#getCurrentBillingTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCurrentBillingTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCustomerInstalledOperatingSystemFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getCustomerInstalledOperatingSystemFlag.md index 68f6788e01..de4c5210a7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCustomerInstalledOperatingSystemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCustomerInstalledOperatingSystemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCustomerInstalledOperatingSystemFlag-example) {#getCustomerInstalledOperatingSystemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCustomerInstalledOperatingSystemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getCustomerOwnedFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getCustomerOwnedFlag.md index 368897cbdb..bc8b6c91e5 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getCustomerOwnedFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getCustomerOwnedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getCustomerOwnedFlag-example) {#getCustomerOwnedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getCustomerOwnedFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDailyAverage.md b/content/reference/services/SoftLayer_Hardware_Server/getDailyAverage.md index 7694c769e5..a55115ce54 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDailyAverage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDailyAverage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDailyAverage-example) {#getDailyAverage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDailyAverage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDatacenter.md b/content/reference/services/SoftLayer_Hardware_Server/getDatacenter.md index 2f705dbc1f..ae3bb78438 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDatacenter.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDatacenterName.md b/content/reference/services/SoftLayer_Hardware_Server/getDatacenterName.md index 229c67ee99..b2f5abc171 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDatacenterName.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDatacenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDatacenterName-example) {#getDatacenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDatacenterName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDaysInSparePool.md b/content/reference/services/SoftLayer_Hardware_Server/getDaysInSparePool.md index e1c0e3b8d8..2912b138a5 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDaysInSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDaysInSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDaysInSparePool-example) {#getDaysInSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDaysInSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkHardware.md index 31bdceacd9..deef4cdd79 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownlinkHardware-example) {#getDownlinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownlinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkNetworkHardware.md index 4f943d97d1..97af262704 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownlinkNetworkHardware-example) {#getDownlinkNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownlinkNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkServers.md b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkServers.md index e0eee72ed0..c69c72c98d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkServers.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownlinkServers-example) {#getDownlinkServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownlinkServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkVirtualGuests.md index 094d1ae49d..bdf3bb61b6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownlinkVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownlinkVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownlinkVirtualGuests-example) {#getDownlinkVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownlinkVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamHardwareBindings.md b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamHardwareBindings.md index 9964fef108..befdb20d06 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamHardwareBindings.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamHardwareBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownstreamHardwareBindings-example) {#getDownstreamHardwareBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownstreamHardwareBindings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardware.md index 830f90bdd4..18469d6c0c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardware-example) {#getDownstreamNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownstreamNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardwareWithIncidents.md b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardwareWithIncidents.md index 32648f13d9..3e4ad5c74a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardwareWithIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamNetworkHardwareWithIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownstreamNetworkHardwareWithIncidents-example) {#getDownstreamNetworkHardwareWithIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownstreamNetworkHardwareWithIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamServers.md b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamServers.md index db28a9d733..9e69817568 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamServers.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownstreamServers-example) {#getDownstreamServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownstreamServers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamVirtualGuests.md index d4d02b8d48..0c4961b949 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDownstreamVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDownstreamVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDownstreamVirtualGuests-example) {#getDownstreamVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDownstreamVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getDriveControllers.md b/content/reference/services/SoftLayer_Hardware_Server/getDriveControllers.md index 45d4ac87c7..6ce8d32627 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getDriveControllers.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getDriveControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getDriveControllers-example) {#getDriveControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getDriveControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Server/getEvaultNetworkStorage.md index ddabefea74..53e88fd3d9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFirewallProtectableSubnets.md b/content/reference/services/SoftLayer_Hardware_Server/getFirewallProtectableSubnets.md index 493cab7f02..50baeb2130 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFirewallProtectableSubnets.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFirewallProtectableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFirewallProtectableSubnets-example) {#getFirewallProtectableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFirewallProtectableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFirewallServiceComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getFirewallServiceComponent.md index 8ca8925cf3..50d6b51df5 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFirewallServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFirewallServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFirewallServiceComponent-example) {#getFirewallServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFirewallServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFixedConfigurationPreset.md b/content/reference/services/SoftLayer_Hardware_Server/getFixedConfigurationPreset.md index 2a9afb5d10..499ff833dd 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFixedConfigurationPreset.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFixedConfigurationPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFixedConfigurationPreset-example) {#getFixedConfigurationPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFixedConfigurationPreset' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFrontendBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getFrontendBandwidthUsage.md index 6c764b987f..1a4e19a4f2 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFrontendBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFrontendBandwidthUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFrontendBandwidthUsage-example) {#getFrontendBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFrontendBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFrontendIncomingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Server/getFrontendIncomingBandwidth.md index 973707c404..3f5859c909 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFrontendIncomingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFrontendIncomingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFrontendIncomingBandwidth-example) {#getFrontendIncomingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFrontendIncomingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFrontendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getFrontendNetworkComponents.md index 7afa71c29a..5a2aa0501f 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFrontendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFrontendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFrontendNetworkComponents-example) {#getFrontendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFrontendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFrontendOutgoingBandwidth.md b/content/reference/services/SoftLayer_Hardware_Server/getFrontendOutgoingBandwidth.md index a214696ee3..fce3645d04 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFrontendOutgoingBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFrontendOutgoingBandwidth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFrontendOutgoingBandwidth-example) {#getFrontendOutgoingBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFrontendOutgoingBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFrontendRouters.md b/content/reference/services/SoftLayer_Hardware_Server/getFrontendRouters.md index 7b49459cef..3c1a5572ac 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFrontendRouters.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFrontendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFrontendRouters-example) {#getFrontendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFrontendRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getFutureBillingItem.md b/content/reference/services/SoftLayer_Hardware_Server/getFutureBillingItem.md index e57507a834..4636a9f9c3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getFutureBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getFutureBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getFutureBillingItem-example) {#getFutureBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getFutureBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Hardware_Server/getGlobalIdentifier.md index 160cce245f..30105e0978 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardDrives.md b/content/reference/services/SoftLayer_Hardware_Server/getHardDrives.md index c85f51de6f..5d5c1ec6f9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardDrives.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardDrives.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardDrives-example) {#getHardDrives-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHardDrives' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardwareByIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/getHardwareByIpAddress.md index 662b8c4688..13fb80031e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardwareByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardwareByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardwareByIpAddress-example) {#getHardwareByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/getHardwareByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardwareChassis.md b/content/reference/services/SoftLayer_Hardware_Server/getHardwareChassis.md index 3f70be1880..1738c258e3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardwareChassis.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardwareChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardwareChassis-example) {#getHardwareChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHardwareChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunction.md b/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunction.md index ca76f2cb85..7ffd9db870 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardwareFunction-example) {#getHardwareFunction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHardwareFunction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunctionDescription.md b/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunctionDescription.md index 0bdf2c8f64..8c1558cf54 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunctionDescription.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardwareFunctionDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardwareFunctionDescription-example) {#getHardwareFunctionDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHardwareFunctionDescription' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardwareState.md b/content/reference/services/SoftLayer_Hardware_Server/getHardwareState.md index 652fad0483..e74a0a1c18 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardwareState.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardwareState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardwareState-example) {#getHardwareState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHardwareState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHardwareStatus.md b/content/reference/services/SoftLayer_Hardware_Server/getHardwareStatus.md index 2415c9b55b..9eab4e8619 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHardwareStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHardwareStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHardwareStatus-example) {#getHardwareStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHardwareStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHasSingleRootVirtualizationBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getHasSingleRootVirtualizationBillingItemFlag.md index 746313d5ba..149585db3c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHasSingleRootVirtualizationBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHasSingleRootVirtualizationBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHasSingleRootVirtualizationBillingItemFlag-example) {#getHasSingleRootVirtualizationBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHasSingleRootVirtualizationBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHasTrustedPlatformModuleBillingItemFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getHasTrustedPlatformModuleBillingItemFlag.md index bc91844b67..407f0f1e92 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHasTrustedPlatformModuleBillingItemFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHasTrustedPlatformModuleBillingItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHasTrustedPlatformModuleBillingItemFlag-example) {#getHasTrustedPlatformModuleBillingItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHasTrustedPlatformModuleBillingItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHostIpsSoftwareComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getHostIpsSoftwareComponent.md index 42282bb119..02be0689da 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHostIpsSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHostIpsSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHostIpsSoftwareComponent-example) {#getHostIpsSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHostIpsSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHourlyBandwidth.md b/content/reference/services/SoftLayer_Hardware_Server/getHourlyBandwidth.md index c209c08ba5..0a17995068 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHourlyBandwidth.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHourlyBandwidth.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHourlyBandwidth-example) {#getHourlyBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHourlyBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getHourlyBillingFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getHourlyBillingFlag.md index 52283bdcff..f088be3cae 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getHourlyBillingFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getHourlyBillingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getHourlyBillingFlag-example) {#getHourlyBillingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getHourlyBillingFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getInboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getInboundBandwidthUsage.md index 7080927626..3c6221a903 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getInboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getInboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getInboundBandwidthUsage-example) {#getInboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getInboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getInboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getInboundPrivateBandwidthUsage.md index 20033bfeb7..61b7eb88b6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getInboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getInboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getInboundPrivateBandwidthUsage-example) {#getInboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getInboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getInboundPublicBandwidthUsage.md index 42ee92ebba..6ccd10fbeb 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getIsBillingTermChangeAvailableFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getIsBillingTermChangeAvailableFlag.md index 346b4581e2..515760dda3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getIsBillingTermChangeAvailableFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getIsBillingTermChangeAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getIsBillingTermChangeAvailableFlag-example) {#getIsBillingTermChangeAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getIsBillingTermChangeAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getIsCloudReadyNodeCertified.md b/content/reference/services/SoftLayer_Hardware_Server/getIsCloudReadyNodeCertified.md index aa1af96094..50b717fc26 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getIsCloudReadyNodeCertified.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getIsCloudReadyNodeCertified.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getIsCloudReadyNodeCertified-example) {#getIsCloudReadyNodeCertified-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getIsCloudReadyNodeCertified' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getIsIpmiDisabled.md b/content/reference/services/SoftLayer_Hardware_Server/getIsIpmiDisabled.md index 3bf4b7a056..c50670ad77 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getIsIpmiDisabled.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getIsIpmiDisabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getIsIpmiDisabled-example) {#getIsIpmiDisabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getIsIpmiDisabled' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getIsQeInternalServer.md b/content/reference/services/SoftLayer_Hardware_Server/getIsQeInternalServer.md index 2e86b6b183..9bcbd44db9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getIsQeInternalServer.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getIsQeInternalServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getIsQeInternalServer-example) {#getIsQeInternalServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getIsQeInternalServer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getIsVirtualPrivateCloudNode.md b/content/reference/services/SoftLayer_Hardware_Server/getIsVirtualPrivateCloudNode.md index 8317c3205f..b01a740d39 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getIsVirtualPrivateCloudNode.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getIsVirtualPrivateCloudNode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getIsVirtualPrivateCloudNode-example) {#getIsVirtualPrivateCloudNode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getIsVirtualPrivateCloudNode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getItemPricesFromSoftwareDescriptions.md b/content/reference/services/SoftLayer_Hardware_Server/getItemPricesFromSoftwareDescriptions.md index 119eedc940..66190c2e0a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getItemPricesFromSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getItemPricesFromSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getItemPricesFromSoftwareDescriptions-example) {#getItemPricesFromSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getItemPricesFromSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLastOperatingSystemReload.md b/content/reference/services/SoftLayer_Hardware_Server/getLastOperatingSystemReload.md index d95e1fa852..e500eb179a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLastOperatingSystemReload.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLastOperatingSystemReload.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLastOperatingSystemReload-example) {#getLastOperatingSystemReload-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLastOperatingSystemReload' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLastTransaction.md b/content/reference/services/SoftLayer_Hardware_Server/getLastTransaction.md index a9a7e9abfb..e7aaf68986 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLastTransaction.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLastTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLastTransaction-example) {#getLastTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLastTransaction' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLatestNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Hardware_Server/getLatestNetworkMonitorIncident.md index 557eea6b0d..4201bde684 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLatestNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLatestNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLatestNetworkMonitorIncident-example) {#getLatestNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLatestNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLocation.md b/content/reference/services/SoftLayer_Hardware_Server/getLocation.md index 85a12aede8..b79717101f 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLocation.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLocationPathString.md b/content/reference/services/SoftLayer_Hardware_Server/getLocationPathString.md index 7ec5f15313..16f0615a8c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLocationPathString.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLocationPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLocationPathString-example) {#getLocationPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLocationPathString' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLockboxNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Server/getLockboxNetworkStorage.md index 7c829bb59c..dccbb93934 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLockboxNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLockboxNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLockboxNetworkStorage-example) {#getLockboxNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLockboxNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getLogicalVolumeStorageGroups.md b/content/reference/services/SoftLayer_Hardware_Server/getLogicalVolumeStorageGroups.md index 6c1f67ccb2..4f4599922f 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getLogicalVolumeStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getLogicalVolumeStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getLogicalVolumeStorageGroups-example) {#getLogicalVolumeStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getLogicalVolumeStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getManagedResourceFlag.md index f4500c8e1c..d633d129c1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getManagementNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getManagementNetworkComponent.md index 4dd06398ad..4470567f52 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getManagementNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getManagementNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getManagementNetworkComponent-example) {#getManagementNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getManagementNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMemory.md b/content/reference/services/SoftLayer_Hardware_Server/getMemory.md index 943fa0ae7f..d66087d3a0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMemory.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMemory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMemory-example) {#getMemory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMemory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMemoryCapacity.md b/content/reference/services/SoftLayer_Hardware_Server/getMemoryCapacity.md index 1b1caf5678..8fee4d969a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMemoryCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMemoryCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMemoryCapacity-example) {#getMemoryCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMemoryCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObject.md index cc9051f872..4094eafbce 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObjectId.md b/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObjectId.md index a9e9510fd0..2d89dd8cde 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObjectId.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMetricTrackingObjectId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMetricTrackingObjectId-example) {#getMetricTrackingObjectId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMetricTrackingObjectId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getModules.md b/content/reference/services/SoftLayer_Hardware_Server/getModules.md index 32988e6a49..745fb18620 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getModules.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getModules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getModules-example) {#getModules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getModules' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringRobot.md b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringRobot.md index b3ada720d9..d35fb6d45e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringRobot.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringRobot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMonitoringRobot-example) {#getMonitoringRobot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMonitoringRobot' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceComponent.md index d4d539be39..eedf69c785 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMonitoringServiceComponent-example) {#getMonitoringServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMonitoringServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceEligibilityFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceEligibilityFlag.md index c296742300..f57e387ff9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceEligibilityFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringServiceEligibilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMonitoringServiceEligibilityFlag-example) {#getMonitoringServiceEligibilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMonitoringServiceEligibilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringUserNotification.md b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringUserNotification.md index 3217d596ae..2531143619 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMonitoringUserNotification.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMonitoringUserNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMonitoringUserNotification-example) {#getMonitoringUserNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMonitoringUserNotification' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getMotherboard.md b/content/reference/services/SoftLayer_Hardware_Server/getMotherboard.md index f4c696a785..63d35a5f04 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getMotherboard.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getMotherboard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getMotherboard-example) {#getMotherboard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getMotherboard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkCards.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkCards.md index ad2d4ca05c..0f306131a4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkCards.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkCards.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkCards-example) {#getNetworkCards-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkCards' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponentFirewallProtectableIpAddresses.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponentFirewallProtectableIpAddresses.md index 8b6e708582..e9889886d8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponentFirewallProtectableIpAddresses.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponentFirewallProtectableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewallProtectableIpAddresses-example) {#getNetworkComponentFirewallProtectableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkComponentFirewallProtectableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponents.md index 198279e6eb..018809e64c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMember.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMember.md index 96ecbb3c65..d3d6f7e278 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMember.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkGatewayMember-example) {#getNetworkGatewayMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkGatewayMember' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMemberFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMemberFlag.md index e2f69ac307..35e80df12d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMemberFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkGatewayMemberFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkGatewayMemberFlag-example) {#getNetworkGatewayMemberFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkGatewayMemberFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkManagementIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkManagementIpAddress.md index e1557c5f7f..2934a52978 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkManagementIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkManagementIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkManagementIpAddress-example) {#getNetworkManagementIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkManagementIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownHardware.md index e2d1829774..897908e5ab 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownHardware-example) {#getNetworkMonitorAttachedDownHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkMonitorAttachedDownHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownVirtualGuests.md index c2ea8753b6..af2629c397 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorAttachedDownVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkMonitorAttachedDownVirtualGuests-example) {#getNetworkMonitorAttachedDownVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkMonitorAttachedDownVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorIncidents.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorIncidents.md index 764cda2dcf..c14488fa27 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorIncidents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitorIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkMonitorIncidents-example) {#getNetworkMonitorIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkMonitorIncidents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitors.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitors.md index 63bc683c4e..3a8ab300d8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitors.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkMonitors-example) {#getNetworkMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkMonitors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatus.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatus.md index f581840b77..3f2b2bfb05 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkStatus-example) {#getNetworkStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatusAttribute.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatusAttribute.md index c4b3feae47..ce76dd01c3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatusAttribute.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkStatusAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkStatusAttribute-example) {#getNetworkStatusAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkStatusAttribute' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkStorage.md index 802a868eb6..92c48a6499 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNetworkVlans.md b/content/reference/services/SoftLayer_Hardware_Server/getNetworkVlans.md index e27697f57a..b39400dd3e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNextBillingCycleBandwidthAllocation.md b/content/reference/services/SoftLayer_Hardware_Server/getNextBillingCycleBandwidthAllocation.md index 514956e992..d1d9f35b90 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNextBillingCycleBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNextBillingCycleBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNextBillingCycleBandwidthAllocation-example) {#getNextBillingCycleBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNextBillingCycleBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNotesHistory.md b/content/reference/services/SoftLayer_Hardware_Server/getNotesHistory.md index dfca5d0b95..11f19ef3e4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNotesHistory.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNotesHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNotesHistory-example) {#getNotesHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNotesHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNvRamCapacity.md b/content/reference/services/SoftLayer_Hardware_Server/getNvRamCapacity.md index 090aeff877..12e51fd6ea 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNvRamCapacity.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNvRamCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNvRamCapacity-example) {#getNvRamCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNvRamCapacity' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getNvRamComponentModels.md b/content/reference/services/SoftLayer_Hardware_Server/getNvRamComponentModels.md index 8778a221ac..e982b481ac 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getNvRamComponentModels.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getNvRamComponentModels.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getNvRamComponentModels-example) {#getNvRamComponentModels-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getNvRamComponentModels' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getObject.md b/content/reference/services/SoftLayer_Hardware_Server/getObject.md index 460963068a..9a275e0b4e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getObject.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOpenCancellationTicket.md b/content/reference/services/SoftLayer_Hardware_Server/getOpenCancellationTicket.md index f55018b2e0..e7a0820c60 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOpenCancellationTicket.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOpenCancellationTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOpenCancellationTicket-example) {#getOpenCancellationTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOpenCancellationTicket' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystem.md index 9d72b393a9..e6fa53f17b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOperatingSystem-example) {#getOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystemReferenceCode.md b/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystemReferenceCode.md index 7bd36a6ee4..10a0d997d3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystemReferenceCode.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOperatingSystemReferenceCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOperatingSystemReferenceCode-example) {#getOperatingSystemReferenceCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOperatingSystemReferenceCode' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOutboundBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getOutboundBandwidthUsage.md index 24633f2f68..0fcd64e2c1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOutboundBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOutboundBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOutboundBandwidthUsage-example) {#getOutboundBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOutboundBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOutboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getOutboundPrivateBandwidthUsage.md index 72da709879..7a046f9b76 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOutboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOutboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOutboundPrivateBandwidthUsage-example) {#getOutboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOutboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getOutboundPublicBandwidthUsage.md index 4cdcc9ee46..f3ef8f23e7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getOverBandwidthAllocationFlag.md index 911f86318b..8047c9cffe 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getOverBandwidthAllocationFlag-example) {#getOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPMInfo.md b/content/reference/services/SoftLayer_Hardware_Server/getPMInfo.md index 2883c87425..41406508b8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPMInfo.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPMInfo.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPMInfo-example) {#getPMInfo-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPMInfo' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getParentBay.md b/content/reference/services/SoftLayer_Hardware_Server/getParentBay.md index cc4d890b29..a6d0bdfcdf 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getParentBay.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getParentBay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getParentBay-example) {#getParentBay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getParentBay' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getParentHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getParentHardware.md index 6f094f8b0d..9466a25377 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getParentHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getParentHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getParentHardware-example) {#getParentHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getParentHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPartitions.md b/content/reference/services/SoftLayer_Hardware_Server/getPartitions.md index d4ead8f64a..9ab02b3e94 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPartitions.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPartitions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPartitions-example) {#getPartitions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPartitions' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPointOfPresenceLocation.md b/content/reference/services/SoftLayer_Hardware_Server/getPointOfPresenceLocation.md index db191eb537..11e6c9f4bc 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPointOfPresenceLocation.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPointOfPresenceLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPointOfPresenceLocation-example) {#getPointOfPresenceLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPointOfPresenceLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPowerComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getPowerComponents.md index ed5d716d43..9e7e1c76f1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPowerComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPowerComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPowerComponents-example) {#getPowerComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPowerComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPowerSupply.md b/content/reference/services/SoftLayer_Hardware_Server/getPowerSupply.md index 0e033c5eb3..09a9a436f3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPowerSupply.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPowerSupply.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPowerSupply-example) {#getPowerSupply-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPowerSupply' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendIpAddress.md index 9a741d90fa..980f869709 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendNetworkComponent.md index 98945f77cc..d832c28ea1 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryBackendNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrimaryBackendNetworkComponent-example) {#getPrimaryBackendNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrimaryBackendNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryDriveSize.md b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryDriveSize.md index 27db25626b..219c585471 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryDriveSize.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryDriveSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrimaryDriveSize-example) {#getPrimaryDriveSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrimaryDriveSize' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryIpAddress.md index 2be14ca34e..1b6f07457d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryNetworkComponent.md index aeb8153442..fee6867139 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrimaryNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrimaryNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrimaryNetworkComponent-example) {#getPrimaryNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrimaryNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBackendNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBackendNetworkComponents.md index 4e4189adb9..739280d7ec 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateBackendNetworkComponents-example) {#getPrivateBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthData.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthData.md index 25aa17752f..fc69aa4eef 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateBandwidthData-example) {#getPrivateBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthDataSummary.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthDataSummary.md index 62dac566af..0c39da8f3d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthDataSummary.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthDataSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateBandwidthDataSummary-example) {#getPrivateBandwidthDataSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateBandwidthDataSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthGraphImage.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthGraphImage.md index 6e6fab4f90..54b1dac2f3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthGraphImage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateBandwidthGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateBandwidthGraphImage-example) {#getPrivateBandwidthGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateBandwidthGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateIpAddress.md index 8060e0361e..5b405036f6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateIpAddress-example) {#getPrivateIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkComponent.md index b1f338e768..d59dd7d507 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateNetworkComponent-example) {#getPrivateNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkOnlyFlag.md index 344fdb2220..0b0daacf2d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlan.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlan.md index 9eab71a2ae..18f298f15c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlan.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateVlan-example) {#getPrivateVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPrivateVlan' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlanByIpAddress.md b/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlanByIpAddress.md index 7ce8dd4eb8..4c35189eeb 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlanByIpAddress.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPrivateVlanByIpAddress.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPrivateVlanByIpAddress-example) {#getPrivateVlanByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/getPrivateVlanByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getProcessorCoreAmount.md b/content/reference/services/SoftLayer_Hardware_Server/getProcessorCoreAmount.md index daf8f97566..c0cd1c572b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getProcessorCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getProcessorCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getProcessorCoreAmount-example) {#getProcessorCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getProcessorCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getProcessorPhysicalCoreAmount.md b/content/reference/services/SoftLayer_Hardware_Server/getProcessorPhysicalCoreAmount.md index ecd0f9048d..7d607e5810 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getProcessorPhysicalCoreAmount.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getProcessorPhysicalCoreAmount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getProcessorPhysicalCoreAmount-example) {#getProcessorPhysicalCoreAmount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getProcessorPhysicalCoreAmount' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getProcessors.md b/content/reference/services/SoftLayer_Hardware_Server/getProcessors.md index bc4a0669c5..268d860f37 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getProcessors.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getProcessors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getProcessors-example) {#getProcessors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getProcessors' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getProjectedOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getProjectedOverBandwidthAllocationFlag.md index 48b90779e2..8eeba77da7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getProjectedOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getProjectedOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getProjectedOverBandwidthAllocationFlag-example) {#getProjectedOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getProjectedOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getProjectedPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Hardware_Server/getProjectedPublicBandwidthUsage.md index bd10f56189..d5f149c9c9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getProjectedPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getProjectedPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getProjectedPublicBandwidthUsage-example) {#getProjectedPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getProjectedPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getProvisionDate.md b/content/reference/services/SoftLayer_Hardware_Server/getProvisionDate.md index 5ef2fe4fef..e05ea03674 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getProvisionDate.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getProvisionDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getProvisionDate-example) {#getProvisionDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getProvisionDate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthData.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthData.md index 685dfc913a..8d59c205cd 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthData.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicBandwidthData-example) {#getPublicBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPublicBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthDataSummary.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthDataSummary.md index 8e3b38cf7d..be924c9e76 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthDataSummary.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthDataSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicBandwidthDataSummary-example) {#getPublicBandwidthDataSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPublicBandwidthDataSummary' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthGraphImage.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthGraphImage.md index e0286c8995..342fd25a49 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthGraphImage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicBandwidthGraphImage-example) {#getPublicBandwidthGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPublicBandwidthGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthTotal.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthTotal.md index 58ee2385a4..6af472d1f6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthTotal.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicBandwidthTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicBandwidthTotal-example) {#getPublicBandwidthTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPublicBandwidthTotal' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicNetworkComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicNetworkComponent.md index 7d5c416584..a0d5422320 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicNetworkComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicNetworkComponent-example) {#getPublicNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPublicNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicVlan.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicVlan.md index 085fab17b4..d04bc8e6fd 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicVlan.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicVlan-example) {#getPublicVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getPublicVlan' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getPublicVlanByHostname.md b/content/reference/services/SoftLayer_Hardware_Server/getPublicVlanByHostname.md index 62910a37c6..202b5c3df2 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getPublicVlanByHostname.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getPublicVlanByHostname.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getPublicVlanByHostname-example) {#getPublicVlanByHostname-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/getPublicVlanByHostname' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRack.md b/content/reference/services/SoftLayer_Hardware_Server/getRack.md index 0486e354d1..d451b81005 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRack.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRack-example) {#getRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRaidControllers.md b/content/reference/services/SoftLayer_Hardware_Server/getRaidControllers.md index 1f503f8048..69e4a39889 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRaidControllers.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRaidControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRaidControllers-example) {#getRaidControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRaidControllers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getReadyNodeFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getReadyNodeFlag.md index 72ca2c72d0..af8594ea5d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getReadyNodeFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getReadyNodeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getReadyNodeFlag-example) {#getReadyNodeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getReadyNodeFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRecentEvents.md b/content/reference/services/SoftLayer_Hardware_Server/getRecentEvents.md index c39a9d7a74..0113362c4a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRecentRemoteManagementCommands.md b/content/reference/services/SoftLayer_Hardware_Server/getRecentRemoteManagementCommands.md index a3b954994b..a43b981e87 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRecentRemoteManagementCommands.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRecentRemoteManagementCommands.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRecentRemoteManagementCommands-example) {#getRecentRemoteManagementCommands-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRecentRemoteManagementCommands' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Hardware_Server/getRegionalInternetRegistry.md index 1fd29a5316..432f18e0e7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagement.md b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagement.md index 96d57dcb86..88d21ad231 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagement.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRemoteManagement-example) {#getRemoteManagement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRemoteManagement' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementAccounts.md b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementAccounts.md index 0dc8e55726..097539ea84 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementAccounts.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRemoteManagementAccounts-example) {#getRemoteManagementAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRemoteManagementAccounts' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementComponent.md b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementComponent.md index 9c446153bd..2ecdd80e88 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementComponent.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRemoteManagementComponent-example) {#getRemoteManagementComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRemoteManagementComponent' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementUsers.md b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementUsers.md index aeba09f495..be00f2a3b9 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementUsers.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRemoteManagementUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRemoteManagementUsers-example) {#getRemoteManagementUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRemoteManagementUsers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getResourceConfigurations.md b/content/reference/services/SoftLayer_Hardware_Server/getResourceConfigurations.md index 897dd147c1..5e9c9c9f99 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getResourceConfigurations.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getResourceConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getResourceConfigurations-example) {#getResourceConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getResourceConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupMemberReferences.md b/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupMemberReferences.md index c8ed60ce4d..d9d2e20690 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupMemberReferences.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupMemberReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getResourceGroupMemberReferences-example) {#getResourceGroupMemberReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getResourceGroupMemberReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupRoles.md b/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupRoles.md index 6b26b4d5c9..1570de1156 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupRoles.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getResourceGroupRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getResourceGroupRoles-example) {#getResourceGroupRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getResourceGroupRoles' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getResourceGroups.md b/content/reference/services/SoftLayer_Hardware_Server/getResourceGroups.md index 703ecb756b..8c81071987 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getResourceGroups.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getResourceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getResourceGroups-example) {#getResourceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getResourceGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getReverseDomainRecords.md b/content/reference/services/SoftLayer_Hardware_Server/getReverseDomainRecords.md index 8718305e00..a34d989204 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getReverseDomainRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getReverseDomainRecords-example) {#getReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getRouters.md b/content/reference/services/SoftLayer_Hardware_Server/getRouters.md index 586027f604..d316eb06af 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getRouters.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getRouters-example) {#getRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getRouters' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Hardware_Server/getSecurityScanRequests.md index b37613590a..44fc0733bd 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSensorData.md b/content/reference/services/SoftLayer_Hardware_Server/getSensorData.md index 4c7118563d..c3f757b17d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSensorData.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSensorData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSensorData-example) {#getSensorData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSensorData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSensorDataWithGraphs.md b/content/reference/services/SoftLayer_Hardware_Server/getSensorDataWithGraphs.md index 2b9bf73dc6..0185cba02e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSensorDataWithGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSensorDataWithGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSensorDataWithGraphs-example) {#getSensorDataWithGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSensorDataWithGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getServerDetails.md b/content/reference/services/SoftLayer_Hardware_Server/getServerDetails.md index 01baee9176..256870e8d4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getServerDetails.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getServerDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getServerDetails-example) {#getServerDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getServerDetails' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getServerFanSpeedGraphs.md b/content/reference/services/SoftLayer_Hardware_Server/getServerFanSpeedGraphs.md index 5ecc5e1319..05f780a9d8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getServerFanSpeedGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getServerFanSpeedGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getServerFanSpeedGraphs-example) {#getServerFanSpeedGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getServerFanSpeedGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getServerPowerState.md b/content/reference/services/SoftLayer_Hardware_Server/getServerPowerState.md index 11e8182538..7fa96e1bcd 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getServerPowerState.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getServerPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getServerPowerState-example) {#getServerPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getServerPowerState' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getServerRoom.md b/content/reference/services/SoftLayer_Hardware_Server/getServerRoom.md index 254e3c8b03..ae02016c8a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getServerRoom.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getServerRoom.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getServerRoom-example) {#getServerRoom-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getServerRoom' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getServerTemperatureGraphs.md b/content/reference/services/SoftLayer_Hardware_Server/getServerTemperatureGraphs.md index aab85fb9a8..f207ebb72b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getServerTemperatureGraphs.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getServerTemperatureGraphs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getServerTemperatureGraphs-example) {#getServerTemperatureGraphs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getServerTemperatureGraphs' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getServiceProvider.md b/content/reference/services/SoftLayer_Hardware_Server/getServiceProvider.md index d2104df93f..bbede70b67 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSoftwareComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getSoftwareComponents.md index 41eb6cd734..b8e38bb112 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSoftwareComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSoftwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSoftwareComponents-example) {#getSoftwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSoftwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSoftwareGuardExtensionEnabled.md b/content/reference/services/SoftLayer_Hardware_Server/getSoftwareGuardExtensionEnabled.md index 852d05866d..8bdfc18ff8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSoftwareGuardExtensionEnabled.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSoftwareGuardExtensionEnabled.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSoftwareGuardExtensionEnabled-example) {#getSoftwareGuardExtensionEnabled-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSoftwareGuardExtensionEnabled' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSparePoolBillingItem.md b/content/reference/services/SoftLayer_Hardware_Server/getSparePoolBillingItem.md index dd4e938cec..132a4c9f04 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSparePoolBillingItem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSparePoolBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSparePoolBillingItem-example) {#getSparePoolBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSparePoolBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getSshKeys.md b/content/reference/services/SoftLayer_Hardware_Server/getSshKeys.md index a8ed12aa01..8ff0498666 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getSshKeys.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getStatisticsRemoteManagement.md b/content/reference/services/SoftLayer_Hardware_Server/getStatisticsRemoteManagement.md index 67073af91d..690443e627 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getStatisticsRemoteManagement.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getStatisticsRemoteManagement.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getStatisticsRemoteManagement-example) {#getStatisticsRemoteManagement-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getStatisticsRemoteManagement' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getStorageGroups.md b/content/reference/services/SoftLayer_Hardware_Server/getStorageGroups.md index 2da475d6fa..f2086e6be4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getStorageNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getStorageNetworkComponents.md index bd94195dfd..ff7a6e0617 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getStorageNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getStorageNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getStorageNetworkComponents-example) {#getStorageNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getStorageNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getTagReferences.md b/content/reference/services/SoftLayer_Hardware_Server/getTagReferences.md index c899cd73e7..8e101c8e02 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getTagReferences.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getTopLevelLocation.md b/content/reference/services/SoftLayer_Hardware_Server/getTopLevelLocation.md index 1f2d32bdfc..156d94a7d7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getTopLevelLocation.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getTopLevelLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getTopLevelLocation-example) {#getTopLevelLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getTopLevelLocation' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getTransactionHistory.md b/content/reference/services/SoftLayer_Hardware_Server/getTransactionHistory.md index 230484b8c9..14bb9d9f5a 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getTransactionHistory.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getTransactionHistory.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getTransactionHistory-example) {#getTransactionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getTransactionHistory' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUefiBootFlag.md b/content/reference/services/SoftLayer_Hardware_Server/getUefiBootFlag.md index 09bde2d7f3..c17cad3455 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUefiBootFlag.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUefiBootFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUefiBootFlag-example) {#getUefiBootFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUefiBootFlag' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Hardware_Server/getUpgradeItemPrices.md index 62cdc7a5cf..281623d2d0 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUpgradeRequest.md b/content/reference/services/SoftLayer_Hardware_Server/getUpgradeRequest.md index b56bad1996..356cbbbe38 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUpgradeableActiveComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getUpgradeableActiveComponents.md index 8822d16cdd..cdb9213aa2 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUpgradeableActiveComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUpgradeableActiveComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUpgradeableActiveComponents-example) {#getUpgradeableActiveComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUpgradeableActiveComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUplinkHardware.md b/content/reference/services/SoftLayer_Hardware_Server/getUplinkHardware.md index 70f84879e3..780b70910b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUplinkHardware.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUplinkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUplinkHardware-example) {#getUplinkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUplinkHardware' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUplinkNetworkComponents.md b/content/reference/services/SoftLayer_Hardware_Server/getUplinkNetworkComponents.md index d44fcfe38a..845d38d5d7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUplinkNetworkComponents.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUplinkNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUplinkNetworkComponents-example) {#getUplinkNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUplinkNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUserData.md b/content/reference/services/SoftLayer_Hardware_Server/getUserData.md index 046445f391..1b5a851634 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUserData.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUserData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUserData-example) {#getUserData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUserData' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getUsers.md b/content/reference/services/SoftLayer_Hardware_Server/getUsers.md index 8329426ada..8a0386b9f4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getUsers.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getValidBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Hardware_Server/getValidBlockDeviceTemplateGroups.md index fda92bf87e..0095385e52 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getValidBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getValidBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getValidBlockDeviceTemplateGroups-example) {#getValidBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getValidBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassis.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassis.md index 5dfcb0e287..61110ee4bc 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassis.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassis.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualChassis-example) {#getVirtualChassis-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualChassis' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassisSiblings.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassisSiblings.md index 1af093ed7d..866eb5c515 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassisSiblings.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualChassisSiblings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualChassisSiblings-example) {#getVirtualChassisSiblings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualChassisSiblings' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualGuests.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualGuests.md index 500477e99c..24c410b691 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualHost.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualHost.md index 9f8fad7631..7b1bb29636 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualHost-example) {#getVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualLicenses.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualLicenses.md index c40a3a98e8..3b2c161c60 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualLicenses-example) {#getVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualRack.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualRack.md index 527917f32d..468b93ecf6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualRack.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualRack-example) {#getVirtualRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualRack' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackId.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackId.md index 9462c45462..9f533d3ea6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackId.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualRackId-example) {#getVirtualRackId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualRackId' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackName.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackName.md index 0ae6622bf8..9d60a05243 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackName.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualRackName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualRackName-example) {#getVirtualRackName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualRackName' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getVirtualizationPlatform.md b/content/reference/services/SoftLayer_Hardware_Server/getVirtualizationPlatform.md index 9ca957b09a..b88ab0e778 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getVirtualizationPlatform.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getVirtualizationPlatform.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getVirtualizationPlatform-example) {#getVirtualizationPlatform-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getVirtualizationPlatform' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateAvailableUpdates.md b/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateAvailableUpdates.md index eb64604fb4..7c6ee08ef7 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateAvailableUpdates.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateAvailableUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getWindowsUpdateAvailableUpdates-example) {#getWindowsUpdateAvailableUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getWindowsUpdateAvailableUpdates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateInstalledUpdates.md b/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateInstalledUpdates.md index e4580164d2..d132f12069 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateInstalledUpdates.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateInstalledUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getWindowsUpdateInstalledUpdates-example) {#getWindowsUpdateInstalledUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getWindowsUpdateInstalledUpdates' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateStatus.md b/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateStatus.md index 14fb13eaf6..f8ce6421ee 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Server/getWindowsUpdateStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#getWindowsUpdateStatus-example) {#getWindowsUpdateStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/getWindowsUpdateStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/importVirtualHost.md b/content/reference/services/SoftLayer_Hardware_Server/importVirtualHost.md index 3fb55600dc..d6ee2cc979 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/importVirtualHost.md +++ b/content/reference/services/SoftLayer_Hardware_Server/importVirtualHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#importVirtualHost-example) {#importVirtualHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/importVirtualHost' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/initiateIderaBareMetalRestore.md b/content/reference/services/SoftLayer_Hardware_Server/initiateIderaBareMetalRestore.md index 3c8c3e52ad..acc481add8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/initiateIderaBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Hardware_Server/initiateIderaBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#initiateIderaBareMetalRestore-example) {#initiateIderaBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/initiateIderaBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/initiateR1SoftBareMetalRestore.md b/content/reference/services/SoftLayer_Hardware_Server/initiateR1SoftBareMetalRestore.md index 70b7a26d8b..bba31be55e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/initiateR1SoftBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Hardware_Server/initiateR1SoftBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#initiateR1SoftBareMetalRestore-example) {#initiateR1SoftBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/initiateR1SoftBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/isBackendPingable.md b/content/reference/services/SoftLayer_Hardware_Server/isBackendPingable.md index 5647611638..0f5842e356 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/isBackendPingable.md +++ b/content/reference/services/SoftLayer_Hardware_Server/isBackendPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#isBackendPingable-example) {#isBackendPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/isBackendPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/isPingable.md b/content/reference/services/SoftLayer_Hardware_Server/isPingable.md index 512a7f3779..5f6664e546 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/isPingable.md +++ b/content/reference/services/SoftLayer_Hardware_Server/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/isWindowsServer.md b/content/reference/services/SoftLayer_Hardware_Server/isWindowsServer.md index 6243cb2297..3822c88415 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/isWindowsServer.md +++ b/content/reference/services/SoftLayer_Hardware_Server/isWindowsServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#isWindowsServer-example) {#isWindowsServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/isWindowsServer' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/massFirmwareReflash.md b/content/reference/services/SoftLayer_Hardware_Server/massFirmwareReflash.md index c8d993feb9..c9eb658b99 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/massFirmwareReflash.md +++ b/content/reference/services/SoftLayer_Hardware_Server/massFirmwareReflash.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#massFirmwareReflash-example) {#massFirmwareReflash-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/massFirmwareReflash' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/massFirmwareUpdate.md b/content/reference/services/SoftLayer_Hardware_Server/massFirmwareUpdate.md index 768ba803d3..db0f35e13f 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/massFirmwareUpdate.md +++ b/content/reference/services/SoftLayer_Hardware_Server/massFirmwareUpdate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#massFirmwareUpdate-example) {#massFirmwareUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean, boolean, boolean, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/massFirmwareUpdate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/massHyperThreadingUpdate.md b/content/reference/services/SoftLayer_Hardware_Server/massHyperThreadingUpdate.md index 263b307716..635d8624ce 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/massHyperThreadingUpdate.md +++ b/content/reference/services/SoftLayer_Hardware_Server/massHyperThreadingUpdate.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#massHyperThreadingUpdate-example) {#massHyperThreadingUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/massHyperThreadingUpdate' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/massReloadOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_Server/massReloadOperatingSystem.md index fa422452fd..55d63c8edf 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/massReloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/massReloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#massReloadOperatingSystem-example) {#massReloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/massReloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/massSparePool.md b/content/reference/services/SoftLayer_Hardware_Server/massSparePool.md index ba860a10d6..72f72d18ab 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/massSparePool.md +++ b/content/reference/services/SoftLayer_Hardware_Server/massSparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#massSparePool-example) {#massSparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/massSparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/ping.md b/content/reference/services/SoftLayer_Hardware_Server/ping.md index 9e2116ad34..97fcb01674 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/ping.md +++ b/content/reference/services/SoftLayer_Hardware_Server/ping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#ping-example) {#ping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/ping' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/populateServerRam.md b/content/reference/services/SoftLayer_Hardware_Server/populateServerRam.md index e163203fbd..4f4d035859 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/populateServerRam.md +++ b/content/reference/services/SoftLayer_Hardware_Server/populateServerRam.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#populateServerRam-example) {#populateServerRam-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/populateServerRam' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/powerCycle.md b/content/reference/services/SoftLayer_Hardware_Server/powerCycle.md index cc9aa767fb..e390edf32f 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/powerCycle.md +++ b/content/reference/services/SoftLayer_Hardware_Server/powerCycle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#powerCycle-example) {#powerCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/powerCycle' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/powerOff.md b/content/reference/services/SoftLayer_Hardware_Server/powerOff.md index e45f3ab05d..1a05b4930e 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/powerOff.md +++ b/content/reference/services/SoftLayer_Hardware_Server/powerOff.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#powerOff-example) {#powerOff-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/powerOff' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/powerOn.md b/content/reference/services/SoftLayer_Hardware_Server/powerOn.md index 002f23d5da..10e2dc522b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/powerOn.md +++ b/content/reference/services/SoftLayer_Hardware_Server/powerOn.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#powerOn-example) {#powerOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/powerOn' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/rebootDefault.md b/content/reference/services/SoftLayer_Hardware_Server/rebootDefault.md index 6af4db13bb..704f605244 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/rebootDefault.md +++ b/content/reference/services/SoftLayer_Hardware_Server/rebootDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#rebootDefault-example) {#rebootDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/rebootDefault' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/rebootHard.md b/content/reference/services/SoftLayer_Hardware_Server/rebootHard.md index a9e875efb9..147c22fee4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/rebootHard.md +++ b/content/reference/services/SoftLayer_Hardware_Server/rebootHard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#rebootHard-example) {#rebootHard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/rebootHard' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/rebootSoft.md b/content/reference/services/SoftLayer_Hardware_Server/rebootSoft.md index 348c279842..0e0de3eca6 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/rebootSoft.md +++ b/content/reference/services/SoftLayer_Hardware_Server/rebootSoft.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#rebootSoft-example) {#rebootSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/rebootSoft' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/refreshDeviceStatus.md b/content/reference/services/SoftLayer_Hardware_Server/refreshDeviceStatus.md index 520815047d..7ea6e3b220 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/refreshDeviceStatus.md +++ b/content/reference/services/SoftLayer_Hardware_Server/refreshDeviceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#refreshDeviceStatus-example) {#refreshDeviceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/refreshDeviceStatus' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/reloadCurrentOperatingSystemConfiguration.md b/content/reference/services/SoftLayer_Hardware_Server/reloadCurrentOperatingSystemConfiguration.md index 208157fde6..b2684d8ab3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/reloadCurrentOperatingSystemConfiguration.md +++ b/content/reference/services/SoftLayer_Hardware_Server/reloadCurrentOperatingSystemConfiguration.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#reloadCurrentOperatingSystemConfiguration-example) {#reloadCurrentOperatingSystemConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/reloadCurrentOperatingSystemConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/reloadOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_Server/reloadOperatingSystem.md index 7d42e31282..e2d9c4e8b8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/reloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/reloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#reloadOperatingSystem-example) {#reloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/reloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorage.md index bad7e0fe03..6df79ea6eb 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorage-example) {#removeAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/removeAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorageList.md index bea8407c50..7fd87210ba 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Hardware_Server/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/removeTags.md b/content/reference/services/SoftLayer_Hardware_Server/removeTags.md index 9b16f06139..1707f6aef4 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/removeTags.md +++ b/content/reference/services/SoftLayer_Hardware_Server/removeTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#removeTags-example) {#removeTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/removeTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/runPassmarkCertificationBenchmark.md b/content/reference/services/SoftLayer_Hardware_Server/runPassmarkCertificationBenchmark.md index 96424279c0..872bc7b1b8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/runPassmarkCertificationBenchmark.md +++ b/content/reference/services/SoftLayer_Hardware_Server/runPassmarkCertificationBenchmark.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#runPassmarkCertificationBenchmark-example) {#runPassmarkCertificationBenchmark-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/runPassmarkCertificationBenchmark' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/setOperatingSystemPassword.md b/content/reference/services/SoftLayer_Hardware_Server/setOperatingSystemPassword.md index cc6cdba6a2..4580ba71a3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/setOperatingSystemPassword.md +++ b/content/reference/services/SoftLayer_Hardware_Server/setOperatingSystemPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#setOperatingSystemPassword-example) {#setOperatingSystemPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/setOperatingSystemPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/setPrivateNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Hardware_Server/setPrivateNetworkInterfaceSpeed.md index 2b22723c73..60cbda7178 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/setPrivateNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Hardware_Server/setPrivateNetworkInterfaceSpeed.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#setPrivateNetworkInterfaceSpeed-example) {#setPrivateNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/setPrivateNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/setPublicNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Hardware_Server/setPublicNetworkInterfaceSpeed.md index 279c38941e..66541b53c8 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/setPublicNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Hardware_Server/setPublicNetworkInterfaceSpeed.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#setPublicNetworkInterfaceSpeed-example) {#setPublicNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/setPublicNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/setTags.md b/content/reference/services/SoftLayer_Hardware_Server/setTags.md index 15e3576351..e77cd3d99c 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/setTags.md +++ b/content/reference/services/SoftLayer_Hardware_Server/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/setUserMetadata.md b/content/reference/services/SoftLayer_Hardware_Server/setUserMetadata.md index eaadb20a16..e315660ebe 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/setUserMetadata.md +++ b/content/reference/services/SoftLayer_Hardware_Server/setUserMetadata.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#setUserMetadata-example) {#setUserMetadata-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/setUserMetadata' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/shutdownPrivatePort.md b/content/reference/services/SoftLayer_Hardware_Server/shutdownPrivatePort.md index 4288dc55bc..afda4d6f6d 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/shutdownPrivatePort.md +++ b/content/reference/services/SoftLayer_Hardware_Server/shutdownPrivatePort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#shutdownPrivatePort-example) {#shutdownPrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/shutdownPrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/shutdownPublicPort.md b/content/reference/services/SoftLayer_Hardware_Server/shutdownPublicPort.md index 32e763c089..d409915987 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/shutdownPublicPort.md +++ b/content/reference/services/SoftLayer_Hardware_Server/shutdownPublicPort.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#shutdownPublicPort-example) {#shutdownPublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/shutdownPublicPort' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/sparePool.md b/content/reference/services/SoftLayer_Hardware_Server/sparePool.md index 0f9f8f5378..5809048a81 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/sparePool.md +++ b/content/reference/services/SoftLayer_Hardware_Server/sparePool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#sparePool-example) {#sparePool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/sparePool' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/testRaidAlertService.md b/content/reference/services/SoftLayer_Hardware_Server/testRaidAlertService.md index be3b5c22b4..954e9cc756 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/testRaidAlertService.md +++ b/content/reference/services/SoftLayer_Hardware_Server/testRaidAlertService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#testRaidAlertService-example) {#testRaidAlertService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/testRaidAlertService' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/toggleManagementInterface.md b/content/reference/services/SoftLayer_Hardware_Server/toggleManagementInterface.md index e8d2594916..94a619ab0b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/toggleManagementInterface.md +++ b/content/reference/services/SoftLayer_Hardware_Server/toggleManagementInterface.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#toggleManagementInterface-example) {#toggleManagementInterface-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/toggleManagementInterface' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/updateIpmiPassword.md b/content/reference/services/SoftLayer_Hardware_Server/updateIpmiPassword.md index 565897b41f..a74b2c0f6b 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/updateIpmiPassword.md +++ b/content/reference/services/SoftLayer_Hardware_Server/updateIpmiPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#updateIpmiPassword-example) {#updateIpmiPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/{SoftLayer_Hardware_ServerID}/updateIpmiPassword' ``` diff --git a/content/reference/services/SoftLayer_Hardware_Server/validatePartitionsForOperatingSystem.md b/content/reference/services/SoftLayer_Hardware_Server/validatePartitionsForOperatingSystem.md index 703f02e5b1..ad097e97c3 100644 --- a/content/reference/services/SoftLayer_Hardware_Server/validatePartitionsForOperatingSystem.md +++ b/content/reference/services/SoftLayer_Hardware_Server/validatePartitionsForOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Hardware_Server" --- -### Curl Example +# [REST Example](#validatePartitionsForOperatingSystem-example) {#validatePartitionsForOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, SoftLayer_Hardware_Component_Partition]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, SoftLayer_Hardware_Component_Partition]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Hardware_Server/validatePartitionsForOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Layout_Container/getAllObjects.md b/content/reference/services/SoftLayer_Layout_Container/getAllObjects.md index dd85604db7..f675026244 100644 --- a/content/reference/services/SoftLayer_Layout_Container/getAllObjects.md +++ b/content/reference/services/SoftLayer_Layout_Container/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Container" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Container/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Layout_Container/getLayoutContainerType.md b/content/reference/services/SoftLayer_Layout_Container/getLayoutContainerType.md index 954798e250..a798377671 100644 --- a/content/reference/services/SoftLayer_Layout_Container/getLayoutContainerType.md +++ b/content/reference/services/SoftLayer_Layout_Container/getLayoutContainerType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Container" --- -### Curl Example +# [REST Example](#getLayoutContainerType-example) {#getLayoutContainerType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Container/{SoftLayer_Layout_ContainerID}/getLayoutContainerType' ``` diff --git a/content/reference/services/SoftLayer_Layout_Container/getLayoutItems.md b/content/reference/services/SoftLayer_Layout_Container/getLayoutItems.md index ff9bfbce69..e3d8277dbf 100644 --- a/content/reference/services/SoftLayer_Layout_Container/getLayoutItems.md +++ b/content/reference/services/SoftLayer_Layout_Container/getLayoutItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Container" --- -### Curl Example +# [REST Example](#getLayoutItems-example) {#getLayoutItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Container/{SoftLayer_Layout_ContainerID}/getLayoutItems' ``` diff --git a/content/reference/services/SoftLayer_Layout_Container/getObject.md b/content/reference/services/SoftLayer_Layout_Container/getObject.md index 781bf167d0..ea9851a4b9 100644 --- a/content/reference/services/SoftLayer_Layout_Container/getObject.md +++ b/content/reference/services/SoftLayer_Layout_Container/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Container" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Container/{SoftLayer_Layout_ContainerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Item/getLayoutItemPreferences.md b/content/reference/services/SoftLayer_Layout_Item/getLayoutItemPreferences.md index f5e8362c21..7f05ac0abd 100644 --- a/content/reference/services/SoftLayer_Layout_Item/getLayoutItemPreferences.md +++ b/content/reference/services/SoftLayer_Layout_Item/getLayoutItemPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Item" --- -### Curl Example +# [REST Example](#getLayoutItemPreferences-example) {#getLayoutItemPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Item/{SoftLayer_Layout_ItemID}/getLayoutItemPreferences' ``` diff --git a/content/reference/services/SoftLayer_Layout_Item/getLayoutItemType.md b/content/reference/services/SoftLayer_Layout_Item/getLayoutItemType.md index eecd08fd36..81d21ee670 100644 --- a/content/reference/services/SoftLayer_Layout_Item/getLayoutItemType.md +++ b/content/reference/services/SoftLayer_Layout_Item/getLayoutItemType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Item" --- -### Curl Example +# [REST Example](#getLayoutItemType-example) {#getLayoutItemType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Item/{SoftLayer_Layout_ItemID}/getLayoutItemType' ``` diff --git a/content/reference/services/SoftLayer_Layout_Item/getObject.md b/content/reference/services/SoftLayer_Layout_Item/getObject.md index 3fa0131634..9cc7a43f2f 100644 --- a/content/reference/services/SoftLayer_Layout_Item/getObject.md +++ b/content/reference/services/SoftLayer_Layout_Item/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Item" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Item/{SoftLayer_Layout_ItemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/createObject.md b/content/reference/services/SoftLayer_Layout_Profile/createObject.md index dd4b003fbe..1760217238 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/createObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/createObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/deleteObject.md b/content/reference/services/SoftLayer_Layout_Profile/deleteObject.md index cb84669753..58611d8040 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/deleteObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/editObject.md b/content/reference/services/SoftLayer_Layout_Profile/editObject.md index 50dc844b7f..c6019c1c76 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/editObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/getLayoutContainers.md b/content/reference/services/SoftLayer_Layout_Profile/getLayoutContainers.md index 5f6786e0c1..0a9abdc823 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/getLayoutContainers.md +++ b/content/reference/services/SoftLayer_Layout_Profile/getLayoutContainers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#getLayoutContainers-example) {#getLayoutContainers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/getLayoutContainers' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/getLayoutPreferences.md b/content/reference/services/SoftLayer_Layout_Profile/getLayoutPreferences.md index 9205a68962..27260a6ddc 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/getLayoutPreferences.md +++ b/content/reference/services/SoftLayer_Layout_Profile/getLayoutPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#getLayoutPreferences-example) {#getLayoutPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/getLayoutPreferences' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/getObject.md b/content/reference/services/SoftLayer_Layout_Profile/getObject.md index 7adb3aec90..9ba60ecf8c 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/getObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/modifyPreference.md b/content/reference/services/SoftLayer_Layout_Profile/modifyPreference.md index 487ad82110..ec534fca7b 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/modifyPreference.md +++ b/content/reference/services/SoftLayer_Layout_Profile/modifyPreference.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#modifyPreference-example) {#modifyPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/modifyPreference' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile/modifyPreferences.md b/content/reference/services/SoftLayer_Layout_Profile/modifyPreferences.md index c13445bddb..41bd21a965 100644 --- a/content/reference/services/SoftLayer_Layout_Profile/modifyPreferences.md +++ b/content/reference/services/SoftLayer_Layout_Profile/modifyPreferences.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile" --- -### Curl Example +# [REST Example](#modifyPreferences-example) {#modifyPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile/{SoftLayer_Layout_ProfileID}/modifyPreferences' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Containers/createObject.md b/content/reference/services/SoftLayer_Layout_Profile_Containers/createObject.md index d3ce7816da..efd4e5ef95 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Containers/createObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Containers/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Containers" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Containers]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Containers]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Containers/createObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Containers/editObject.md b/content/reference/services/SoftLayer_Layout_Profile_Containers/editObject.md index a79a49f198..771faffb1b 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Containers/editObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Containers/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Containers" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Containers]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Containers]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Containers/{SoftLayer_Layout_Profile_ContainersID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutContainerType.md b/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutContainerType.md index 65d3991a34..dd95b21b99 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutContainerType.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutContainerType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Containers" --- -### Curl Example +# [REST Example](#getLayoutContainerType-example) {#getLayoutContainerType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Containers/{SoftLayer_Layout_Profile_ContainersID}/getLayoutContainerType' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutProfile.md b/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutProfile.md index 00fb22cabc..6390da0d2e 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutProfile.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Containers/getLayoutProfile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Containers" --- -### Curl Example +# [REST Example](#getLayoutProfile-example) {#getLayoutProfile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Containers/{SoftLayer_Layout_Profile_ContainersID}/getLayoutProfile' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Containers/getObject.md b/content/reference/services/SoftLayer_Layout_Profile_Containers/getObject.md index 6a98e9e195..72b2705a11 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Containers/getObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Containers/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Containers" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Containers/{SoftLayer_Layout_Profile_ContainersID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/createObject.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/createObject.md index 2a0b270bdc..2e377723ba 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/createObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/createObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/deleteObject.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/deleteObject.md index 33254c8812..39fc0ec997 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/deleteObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/editObject.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/editObject.md index 9a74c30ab9..8fc811af38 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/editObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutContainers.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutContainers.md index 4742323f8e..1141c42134 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutContainers.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutContainers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#getLayoutContainers-example) {#getLayoutContainers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/getLayoutContainers' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutPreferences.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutPreferences.md index b5df0b6612..6862cf33d4 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutPreferences.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/getLayoutPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#getLayoutPreferences-example) {#getLayoutPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/getLayoutPreferences' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/getObject.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/getObject.md index f0a1bf744d..3553b831a3 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/getObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/getUserRecord.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/getUserRecord.md index e210aa706a..bfd62a0db1 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/getUserRecord.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/getUserRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#getUserRecord-example) {#getUserRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/getUserRecord' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreference.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreference.md index fc9826821a..d1969f2f6a 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreference.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreference.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#modifyPreference-example) {#modifyPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/modifyPreference' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreferences.md b/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreferences.md index f6006a0fff..3a9a866f5a 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreferences.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Customer/modifyPreferences.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Customer" --- -### Curl Example +# [REST Example](#modifyPreferences-example) {#modifyPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Layout_Profile_Preference]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Customer/{SoftLayer_Layout_Profile_CustomerID}/modifyPreferences' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutContainer.md b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutContainer.md index dc9f1731dd..dd73145b81 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutContainer.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutContainer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Preference" --- -### Curl Example +# [REST Example](#getLayoutContainer-example) {#getLayoutContainer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Preference/{SoftLayer_Layout_Profile_PreferenceID}/getLayoutContainer' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutItem.md b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutItem.md index e016419091..786fa12cd9 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutItem.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Preference" --- -### Curl Example +# [REST Example](#getLayoutItem-example) {#getLayoutItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Preference/{SoftLayer_Layout_Profile_PreferenceID}/getLayoutItem' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutPreference.md b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutPreference.md index 6407f2fe58..54390c03cc 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutPreference.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Preference" --- -### Curl Example +# [REST Example](#getLayoutPreference-example) {#getLayoutPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Preference/{SoftLayer_Layout_Profile_PreferenceID}/getLayoutPreference' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutProfile.md b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutProfile.md index 2bbdfba5e0..9c25a59073 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutProfile.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Preference/getLayoutProfile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Preference" --- -### Curl Example +# [REST Example](#getLayoutProfile-example) {#getLayoutProfile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Preference/{SoftLayer_Layout_Profile_PreferenceID}/getLayoutProfile' ``` diff --git a/content/reference/services/SoftLayer_Layout_Profile_Preference/getObject.md b/content/reference/services/SoftLayer_Layout_Profile_Preference/getObject.md index bdfb66ae75..10d0c3a76e 100644 --- a/content/reference/services/SoftLayer_Layout_Profile_Preference/getObject.md +++ b/content/reference/services/SoftLayer_Layout_Profile_Preference/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Layout_Profile_Preference" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Layout_Profile_Preference/{SoftLayer_Layout_Profile_PreferenceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Locale/getClosestToLanguageTag.md b/content/reference/services/SoftLayer_Locale/getClosestToLanguageTag.md index 69df48a70c..86aa7d6de6 100644 --- a/content/reference/services/SoftLayer_Locale/getClosestToLanguageTag.md +++ b/content/reference/services/SoftLayer_Locale/getClosestToLanguageTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale" --- -### Curl Example +# [REST Example](#getClosestToLanguageTag-example) {#getClosestToLanguageTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale/getClosestToLanguageTag' ``` diff --git a/content/reference/services/SoftLayer_Locale/getObject.md b/content/reference/services/SoftLayer_Locale/getObject.md index 86cbffe74f..ea1baabf82 100644 --- a/content/reference/services/SoftLayer_Locale/getObject.md +++ b/content/reference/services/SoftLayer_Locale/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale/{SoftLayer_LocaleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getAllVatCountryCodesAndVatIdRegexes.md b/content/reference/services/SoftLayer_Locale_Country/getAllVatCountryCodesAndVatIdRegexes.md index 3acb6b1d66..22ef7583b0 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getAllVatCountryCodesAndVatIdRegexes.md +++ b/content/reference/services/SoftLayer_Locale_Country/getAllVatCountryCodesAndVatIdRegexes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getAllVatCountryCodesAndVatIdRegexes-example) {#getAllVatCountryCodesAndVatIdRegexes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getAllVatCountryCodesAndVatIdRegexes' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getAvailableCountries.md b/content/reference/services/SoftLayer_Locale_Country/getAvailableCountries.md index d61557a062..64a33e31b3 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getAvailableCountries.md +++ b/content/reference/services/SoftLayer_Locale_Country/getAvailableCountries.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getAvailableCountries-example) {#getAvailableCountries-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getAvailableCountries' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getCountries.md b/content/reference/services/SoftLayer_Locale_Country/getCountries.md index 3aa7037b93..651dce3b8c 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getCountries.md +++ b/content/reference/services/SoftLayer_Locale_Country/getCountries.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getCountries-example) {#getCountries-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getCountries' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getCountriesAndStates.md b/content/reference/services/SoftLayer_Locale_Country/getCountriesAndStates.md index b05ab18af7..42fea6b1b5 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getCountriesAndStates.md +++ b/content/reference/services/SoftLayer_Locale_Country/getCountriesAndStates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getCountriesAndStates-example) {#getCountriesAndStates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getCountriesAndStates' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getObject.md b/content/reference/services/SoftLayer_Locale_Country/getObject.md index 8c22fc5fd2..75bd9813be 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getObject.md +++ b/content/reference/services/SoftLayer_Locale_Country/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/{SoftLayer_Locale_CountryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getPostalCodeRequiredCountryCodes.md b/content/reference/services/SoftLayer_Locale_Country/getPostalCodeRequiredCountryCodes.md index 9a24af8be3..9887f659d5 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getPostalCodeRequiredCountryCodes.md +++ b/content/reference/services/SoftLayer_Locale_Country/getPostalCodeRequiredCountryCodes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getPostalCodeRequiredCountryCodes-example) {#getPostalCodeRequiredCountryCodes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getPostalCodeRequiredCountryCodes' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getStates.md b/content/reference/services/SoftLayer_Locale_Country/getStates.md index 1fd181ef04..71c14859db 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getStates.md +++ b/content/reference/services/SoftLayer_Locale_Country/getStates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getStates-example) {#getStates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/{SoftLayer_Locale_CountryID}/getStates' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getVatCountries.md b/content/reference/services/SoftLayer_Locale_Country/getVatCountries.md index e4e74a6969..f0803660ab 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getVatCountries.md +++ b/content/reference/services/SoftLayer_Locale_Country/getVatCountries.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getVatCountries-example) {#getVatCountries-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getVatCountries' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/getVatRequiredCountryCodes.md b/content/reference/services/SoftLayer_Locale_Country/getVatRequiredCountryCodes.md index 39741a029f..283cdfd92b 100644 --- a/content/reference/services/SoftLayer_Locale_Country/getVatRequiredCountryCodes.md +++ b/content/reference/services/SoftLayer_Locale_Country/getVatRequiredCountryCodes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#getVatRequiredCountryCodes-example) {#getVatRequiredCountryCodes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/getVatRequiredCountryCodes' ``` diff --git a/content/reference/services/SoftLayer_Locale_Country/isEuropeanUnionCountry.md b/content/reference/services/SoftLayer_Locale_Country/isEuropeanUnionCountry.md index b77ef50d66..4d67f62f55 100644 --- a/content/reference/services/SoftLayer_Locale_Country/isEuropeanUnionCountry.md +++ b/content/reference/services/SoftLayer_Locale_Country/isEuropeanUnionCountry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Country" --- -### Curl Example +# [REST Example](#isEuropeanUnionCountry-example) {#isEuropeanUnionCountry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Country/isEuropeanUnionCountry' ``` diff --git a/content/reference/services/SoftLayer_Locale_Timezone/getAllObjects.md b/content/reference/services/SoftLayer_Locale_Timezone/getAllObjects.md index e159764d99..499ad7ba81 100644 --- a/content/reference/services/SoftLayer_Locale_Timezone/getAllObjects.md +++ b/content/reference/services/SoftLayer_Locale_Timezone/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Timezone" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Timezone/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Locale_Timezone/getObject.md b/content/reference/services/SoftLayer_Locale_Timezone/getObject.md index ce6f94c822..dbdf496648 100644 --- a/content/reference/services/SoftLayer_Locale_Timezone/getObject.md +++ b/content/reference/services/SoftLayer_Locale_Timezone/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Locale_Timezone" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Locale_Timezone/{SoftLayer_Locale_TimezoneID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location/getActivePresaleEvents.md b/content/reference/services/SoftLayer_Location/getActivePresaleEvents.md index f644342413..32464110e2 100644 --- a/content/reference/services/SoftLayer_Location/getActivePresaleEvents.md +++ b/content/reference/services/SoftLayer_Location/getActivePresaleEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getActivePresaleEvents-example) {#getActivePresaleEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getActivePresaleEvents' ``` diff --git a/content/reference/services/SoftLayer_Location/getAvailableObjectStorageDatacenters.md b/content/reference/services/SoftLayer_Location/getAvailableObjectStorageDatacenters.md index 247d616124..42a6919a31 100644 --- a/content/reference/services/SoftLayer_Location/getAvailableObjectStorageDatacenters.md +++ b/content/reference/services/SoftLayer_Location/getAvailableObjectStorageDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getAvailableObjectStorageDatacenters-example) {#getAvailableObjectStorageDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getAvailableObjectStorageDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location/getBackboneDependents.md b/content/reference/services/SoftLayer_Location/getBackboneDependents.md index 6b844b2614..cb05ebd000 100644 --- a/content/reference/services/SoftLayer_Location/getBackboneDependents.md +++ b/content/reference/services/SoftLayer_Location/getBackboneDependents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getBackboneDependents-example) {#getBackboneDependents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getBackboneDependents' ``` diff --git a/content/reference/services/SoftLayer_Location/getBnppCompliantFlag.md b/content/reference/services/SoftLayer_Location/getBnppCompliantFlag.md index 45499bceee..1739e0ee5b 100644 --- a/content/reference/services/SoftLayer_Location/getBnppCompliantFlag.md +++ b/content/reference/services/SoftLayer_Location/getBnppCompliantFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getBnppCompliantFlag-example) {#getBnppCompliantFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getBnppCompliantFlag' ``` diff --git a/content/reference/services/SoftLayer_Location/getDatacenters.md b/content/reference/services/SoftLayer_Location/getDatacenters.md index 369a0d69ce..daaf4a9dbd 100644 --- a/content/reference/services/SoftLayer_Location/getDatacenters.md +++ b/content/reference/services/SoftLayer_Location/getDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getDatacenters-example) {#getDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location/getDatacentersWithVirtualImageStoreServiceResourceRecord.md b/content/reference/services/SoftLayer_Location/getDatacentersWithVirtualImageStoreServiceResourceRecord.md index c5abddac0e..5c37e7ae71 100644 --- a/content/reference/services/SoftLayer_Location/getDatacentersWithVirtualImageStoreServiceResourceRecord.md +++ b/content/reference/services/SoftLayer_Location/getDatacentersWithVirtualImageStoreServiceResourceRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getDatacentersWithVirtualImageStoreServiceResourceRecord-example) {#getDatacentersWithVirtualImageStoreServiceResourceRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getDatacentersWithVirtualImageStoreServiceResourceRecord' ``` diff --git a/content/reference/services/SoftLayer_Location/getEuCompliantFlag.md b/content/reference/services/SoftLayer_Location/getEuCompliantFlag.md index 432c08dae4..ca4b326b2a 100644 --- a/content/reference/services/SoftLayer_Location/getEuCompliantFlag.md +++ b/content/reference/services/SoftLayer_Location/getEuCompliantFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getEuCompliantFlag-example) {#getEuCompliantFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getEuCompliantFlag' ``` diff --git a/content/reference/services/SoftLayer_Location/getGroups.md b/content/reference/services/SoftLayer_Location/getGroups.md index e3408fece1..30c383ddb7 100644 --- a/content/reference/services/SoftLayer_Location/getGroups.md +++ b/content/reference/services/SoftLayer_Location/getGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getGroups-example) {#getGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getGroups' ``` diff --git a/content/reference/services/SoftLayer_Location/getHardwareFirewalls.md b/content/reference/services/SoftLayer_Location/getHardwareFirewalls.md index 4d8344bee4..b8f3ab33bd 100644 --- a/content/reference/services/SoftLayer_Location/getHardwareFirewalls.md +++ b/content/reference/services/SoftLayer_Location/getHardwareFirewalls.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getHardwareFirewalls-example) {#getHardwareFirewalls-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getHardwareFirewalls' ``` diff --git a/content/reference/services/SoftLayer_Location/getLocationAddress.md b/content/reference/services/SoftLayer_Location/getLocationAddress.md index 4a986d7fd9..cce35e314a 100644 --- a/content/reference/services/SoftLayer_Location/getLocationAddress.md +++ b/content/reference/services/SoftLayer_Location/getLocationAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getLocationAddress-example) {#getLocationAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getLocationAddress' ``` diff --git a/content/reference/services/SoftLayer_Location/getLocationAddresses.md b/content/reference/services/SoftLayer_Location/getLocationAddresses.md index cc0f023091..9da4366dea 100644 --- a/content/reference/services/SoftLayer_Location/getLocationAddresses.md +++ b/content/reference/services/SoftLayer_Location/getLocationAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getLocationAddresses-example) {#getLocationAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getLocationAddresses' ``` diff --git a/content/reference/services/SoftLayer_Location/getLocationReservationMember.md b/content/reference/services/SoftLayer_Location/getLocationReservationMember.md index 43d1b84cd8..b4c36c4492 100644 --- a/content/reference/services/SoftLayer_Location/getLocationReservationMember.md +++ b/content/reference/services/SoftLayer_Location/getLocationReservationMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getLocationReservationMember-example) {#getLocationReservationMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getLocationReservationMember' ``` diff --git a/content/reference/services/SoftLayer_Location/getLocationStatus.md b/content/reference/services/SoftLayer_Location/getLocationStatus.md index 57caac5f8e..adcace9317 100644 --- a/content/reference/services/SoftLayer_Location/getLocationStatus.md +++ b/content/reference/services/SoftLayer_Location/getLocationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getLocationStatus-example) {#getLocationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getLocationStatus' ``` diff --git a/content/reference/services/SoftLayer_Location/getNetworkConfigurationAttribute.md b/content/reference/services/SoftLayer_Location/getNetworkConfigurationAttribute.md index a9b57dc6e9..8503741a9e 100644 --- a/content/reference/services/SoftLayer_Location/getNetworkConfigurationAttribute.md +++ b/content/reference/services/SoftLayer_Location/getNetworkConfigurationAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getNetworkConfigurationAttribute-example) {#getNetworkConfigurationAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getNetworkConfigurationAttribute' ``` diff --git a/content/reference/services/SoftLayer_Location/getObject.md b/content/reference/services/SoftLayer_Location/getObject.md index e413a159d5..4a1e46a6c1 100644 --- a/content/reference/services/SoftLayer_Location/getObject.md +++ b/content/reference/services/SoftLayer_Location/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location/getOnlineSslVpnUserCount.md b/content/reference/services/SoftLayer_Location/getOnlineSslVpnUserCount.md index cd81afe5aa..e026199dae 100644 --- a/content/reference/services/SoftLayer_Location/getOnlineSslVpnUserCount.md +++ b/content/reference/services/SoftLayer_Location/getOnlineSslVpnUserCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getOnlineSslVpnUserCount-example) {#getOnlineSslVpnUserCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getOnlineSslVpnUserCount' ``` diff --git a/content/reference/services/SoftLayer_Location/getPathString.md b/content/reference/services/SoftLayer_Location/getPathString.md index abb0d5b99f..64accae050 100644 --- a/content/reference/services/SoftLayer_Location/getPathString.md +++ b/content/reference/services/SoftLayer_Location/getPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getPathString-example) {#getPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getPathString' ``` diff --git a/content/reference/services/SoftLayer_Location/getPriceGroups.md b/content/reference/services/SoftLayer_Location/getPriceGroups.md index 6e25b687d5..bd732f5f09 100644 --- a/content/reference/services/SoftLayer_Location/getPriceGroups.md +++ b/content/reference/services/SoftLayer_Location/getPriceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getPriceGroups-example) {#getPriceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getPriceGroups' ``` diff --git a/content/reference/services/SoftLayer_Location/getRegions.md b/content/reference/services/SoftLayer_Location/getRegions.md index 128f449348..337eb220cf 100644 --- a/content/reference/services/SoftLayer_Location/getRegions.md +++ b/content/reference/services/SoftLayer_Location/getRegions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getRegions-example) {#getRegions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getRegions' ``` diff --git a/content/reference/services/SoftLayer_Location/getTimezone.md b/content/reference/services/SoftLayer_Location/getTimezone.md index 67d449ef47..66acfdd163 100644 --- a/content/reference/services/SoftLayer_Location/getTimezone.md +++ b/content/reference/services/SoftLayer_Location/getTimezone.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getTimezone-example) {#getTimezone-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getTimezone' ``` diff --git a/content/reference/services/SoftLayer_Location/getVdrGroup.md b/content/reference/services/SoftLayer_Location/getVdrGroup.md index ed9df1c06f..7dab02cc18 100644 --- a/content/reference/services/SoftLayer_Location/getVdrGroup.md +++ b/content/reference/services/SoftLayer_Location/getVdrGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getVdrGroup-example) {#getVdrGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/{SoftLayer_LocationID}/getVdrGroup' ``` diff --git a/content/reference/services/SoftLayer_Location/getViewableDatacenters.md b/content/reference/services/SoftLayer_Location/getViewableDatacenters.md index 06586a7a7f..0d87ba8f14 100644 --- a/content/reference/services/SoftLayer_Location/getViewableDatacenters.md +++ b/content/reference/services/SoftLayer_Location/getViewableDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getViewableDatacenters-example) {#getViewableDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getViewableDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location/getViewablePopsAndDataCenters.md b/content/reference/services/SoftLayer_Location/getViewablePopsAndDataCenters.md index 437a919d4f..e60712a1e9 100644 --- a/content/reference/services/SoftLayer_Location/getViewablePopsAndDataCenters.md +++ b/content/reference/services/SoftLayer_Location/getViewablePopsAndDataCenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getViewablePopsAndDataCenters-example) {#getViewablePopsAndDataCenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getViewablePopsAndDataCenters' ``` diff --git a/content/reference/services/SoftLayer_Location/getViewablepointOfPresence.md b/content/reference/services/SoftLayer_Location/getViewablepointOfPresence.md index 59372f1b98..7a1906b005 100644 --- a/content/reference/services/SoftLayer_Location/getViewablepointOfPresence.md +++ b/content/reference/services/SoftLayer_Location/getViewablepointOfPresence.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getViewablepointOfPresence-example) {#getViewablepointOfPresence-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getViewablepointOfPresence' ``` diff --git a/content/reference/services/SoftLayer_Location/getpointOfPresence.md b/content/reference/services/SoftLayer_Location/getpointOfPresence.md index 32e6a68667..10b3117e79 100644 --- a/content/reference/services/SoftLayer_Location/getpointOfPresence.md +++ b/content/reference/services/SoftLayer_Location/getpointOfPresence.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location" --- -### Curl Example +# [REST Example](#getpointOfPresence-example) {#getpointOfPresence-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location/getpointOfPresence' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getActiveItemPresaleEvents.md b/content/reference/services/SoftLayer_Location_Datacenter/getActiveItemPresaleEvents.md index 9004dc3974..efb426bea9 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getActiveItemPresaleEvents.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getActiveItemPresaleEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getActiveItemPresaleEvents-example) {#getActiveItemPresaleEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getActiveItemPresaleEvents' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getActivePresaleEvents.md b/content/reference/services/SoftLayer_Location_Datacenter/getActivePresaleEvents.md index df37a3c9c8..32aea30441 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getActivePresaleEvents.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getActivePresaleEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getActivePresaleEvents-example) {#getActivePresaleEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getActivePresaleEvents' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getAvailableObjectStorageDatacenters.md b/content/reference/services/SoftLayer_Location_Datacenter/getAvailableObjectStorageDatacenters.md index 3bb9763346..20fdf7f1fa 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getAvailableObjectStorageDatacenters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getAvailableObjectStorageDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getAvailableObjectStorageDatacenters-example) {#getAvailableObjectStorageDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getAvailableObjectStorageDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getBackboneDependents.md b/content/reference/services/SoftLayer_Location_Datacenter/getBackboneDependents.md index d80ea647b4..17f29ce604 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getBackboneDependents.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getBackboneDependents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getBackboneDependents-example) {#getBackboneDependents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getBackboneDependents' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getBackendHardwareRouters.md b/content/reference/services/SoftLayer_Location_Datacenter/getBackendHardwareRouters.md index b81cbd4283..c335944c8d 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getBackendHardwareRouters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getBackendHardwareRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getBackendHardwareRouters-example) {#getBackendHardwareRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getBackendHardwareRouters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getBnppCompliantFlag.md b/content/reference/services/SoftLayer_Location_Datacenter/getBnppCompliantFlag.md index a063abf365..c922eba7bb 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getBnppCompliantFlag.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getBnppCompliantFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getBnppCompliantFlag-example) {#getBnppCompliantFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getBnppCompliantFlag' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getBoundSubnets.md b/content/reference/services/SoftLayer_Location_Datacenter/getBoundSubnets.md index f97a69a108..9cfb7c0974 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getBoundSubnets.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getBoundSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getBoundSubnets-example) {#getBoundSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getBoundSubnets' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getBrandCountryRestrictions.md b/content/reference/services/SoftLayer_Location_Datacenter/getBrandCountryRestrictions.md index be0d57feaa..9113dff178 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getBrandCountryRestrictions.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getBrandCountryRestrictions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getBrandCountryRestrictions-example) {#getBrandCountryRestrictions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getBrandCountryRestrictions' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getDatacenters.md b/content/reference/services/SoftLayer_Location_Datacenter/getDatacenters.md index 334ce33e5c..c7c3bff36b 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getDatacenters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getDatacenters-example) {#getDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getDatacentersWithVirtualImageStoreServiceResourceRecord.md b/content/reference/services/SoftLayer_Location_Datacenter/getDatacentersWithVirtualImageStoreServiceResourceRecord.md index eeeb3c2b01..6dfc7a5a65 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getDatacentersWithVirtualImageStoreServiceResourceRecord.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getDatacentersWithVirtualImageStoreServiceResourceRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getDatacentersWithVirtualImageStoreServiceResourceRecord-example) {#getDatacentersWithVirtualImageStoreServiceResourceRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getDatacentersWithVirtualImageStoreServiceResourceRecord' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getEuCompliantFlag.md b/content/reference/services/SoftLayer_Location_Datacenter/getEuCompliantFlag.md index 5dd59cb125..5a426e169c 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getEuCompliantFlag.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getEuCompliantFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getEuCompliantFlag-example) {#getEuCompliantFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getEuCompliantFlag' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getFrontendHardwareRouters.md b/content/reference/services/SoftLayer_Location_Datacenter/getFrontendHardwareRouters.md index a699dad132..8b26710151 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getFrontendHardwareRouters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getFrontendHardwareRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getFrontendHardwareRouters-example) {#getFrontendHardwareRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getFrontendHardwareRouters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getGroups.md b/content/reference/services/SoftLayer_Location_Datacenter/getGroups.md index 806d5d8c4e..84673b97d2 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getGroups.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getGroups-example) {#getGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getGroups' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getHardwareFirewalls.md b/content/reference/services/SoftLayer_Location_Datacenter/getHardwareFirewalls.md index 63e295a925..3b2e2206ab 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getHardwareFirewalls.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getHardwareFirewalls.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getHardwareFirewalls-example) {#getHardwareFirewalls-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getHardwareFirewalls' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getHardwareRouters.md b/content/reference/services/SoftLayer_Location_Datacenter/getHardwareRouters.md index e09514c91b..2f20b95c4b 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getHardwareRouters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getHardwareRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getHardwareRouters-example) {#getHardwareRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getHardwareRouters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddress.md b/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddress.md index 403b7b4717..14344f1846 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddress.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getLocationAddress-example) {#getLocationAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getLocationAddress' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddresses.md b/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddresses.md index f14f572af7..5f38f8778e 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddresses.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getLocationAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getLocationAddresses-example) {#getLocationAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getLocationAddresses' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getLocationReservationMember.md b/content/reference/services/SoftLayer_Location_Datacenter/getLocationReservationMember.md index 60f11093fa..3c99293b3b 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getLocationReservationMember.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getLocationReservationMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getLocationReservationMember-example) {#getLocationReservationMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getLocationReservationMember' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getLocationStatus.md b/content/reference/services/SoftLayer_Location_Datacenter/getLocationStatus.md index 8045ad54bf..5f971ff0e8 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getLocationStatus.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getLocationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getLocationStatus-example) {#getLocationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getLocationStatus' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getNetworkConfigurationAttribute.md b/content/reference/services/SoftLayer_Location_Datacenter/getNetworkConfigurationAttribute.md index d3daef9c7b..cc3e4a7ade 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getNetworkConfigurationAttribute.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getNetworkConfigurationAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getNetworkConfigurationAttribute-example) {#getNetworkConfigurationAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getNetworkConfigurationAttribute' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getObject.md b/content/reference/services/SoftLayer_Location_Datacenter/getObject.md index bcf843f206..40ec0ab45b 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getObject.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getOnlineSslVpnUserCount.md b/content/reference/services/SoftLayer_Location_Datacenter/getOnlineSslVpnUserCount.md index 8d1602c10d..0789a6e3fa 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getOnlineSslVpnUserCount.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getOnlineSslVpnUserCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getOnlineSslVpnUserCount-example) {#getOnlineSslVpnUserCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getOnlineSslVpnUserCount' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getPathString.md b/content/reference/services/SoftLayer_Location_Datacenter/getPathString.md index 356a13d370..2c0a847f92 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getPathString.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getPathString.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getPathString-example) {#getPathString-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getPathString' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getPresaleEvents.md b/content/reference/services/SoftLayer_Location_Datacenter/getPresaleEvents.md index a972948204..b2836136f3 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getPresaleEvents.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getPresaleEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getPresaleEvents-example) {#getPresaleEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getPresaleEvents' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getPriceGroups.md b/content/reference/services/SoftLayer_Location_Datacenter/getPriceGroups.md index 72f60e1508..0d0bd3e56b 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getPriceGroups.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getPriceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getPriceGroups-example) {#getPriceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getPriceGroups' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getRegionalGroup.md b/content/reference/services/SoftLayer_Location_Datacenter/getRegionalGroup.md index 676e789745..6d604ba381 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getRegionalGroup.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getRegionalGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getRegionalGroup-example) {#getRegionalGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getRegionalGroup' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Location_Datacenter/getRegionalInternetRegistry.md index 9788a9b646..57fca06710 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getRegions.md b/content/reference/services/SoftLayer_Location_Datacenter/getRegions.md index 6087c1e686..6ab3c35dcf 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getRegions.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getRegions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getRegions-example) {#getRegions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getRegions' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getRoutableBoundSubnets.md b/content/reference/services/SoftLayer_Location_Datacenter/getRoutableBoundSubnets.md index 481d333337..a371689260 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getRoutableBoundSubnets.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getRoutableBoundSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getRoutableBoundSubnets-example) {#getRoutableBoundSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getRoutableBoundSubnets' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getStatisticsGraphImage.md b/content/reference/services/SoftLayer_Location_Datacenter/getStatisticsGraphImage.md index dc8fc25898..1de341901e 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getStatisticsGraphImage.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getStatisticsGraphImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getStatisticsGraphImage-example) {#getStatisticsGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getStatisticsGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getTimezone.md b/content/reference/services/SoftLayer_Location_Datacenter/getTimezone.md index 414a80908e..367928f4ee 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getTimezone.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getTimezone.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getTimezone-example) {#getTimezone-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getTimezone' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getVdrGroup.md b/content/reference/services/SoftLayer_Location_Datacenter/getVdrGroup.md index 6298ee489b..16a8b28de4 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getVdrGroup.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getVdrGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getVdrGroup-example) {#getVdrGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/{SoftLayer_Location_DatacenterID}/getVdrGroup' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getViewableDatacenters.md b/content/reference/services/SoftLayer_Location_Datacenter/getViewableDatacenters.md index a149076c87..b5dd0597f5 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getViewableDatacenters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getViewableDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getViewableDatacenters-example) {#getViewableDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getViewableDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getViewablePopsAndDataCenters.md b/content/reference/services/SoftLayer_Location_Datacenter/getViewablePopsAndDataCenters.md index 7a82f609ce..42f2415184 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getViewablePopsAndDataCenters.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getViewablePopsAndDataCenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getViewablePopsAndDataCenters-example) {#getViewablePopsAndDataCenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getViewablePopsAndDataCenters' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getViewablepointOfPresence.md b/content/reference/services/SoftLayer_Location_Datacenter/getViewablepointOfPresence.md index 70af1c7350..2391e04c06 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getViewablepointOfPresence.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getViewablepointOfPresence.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getViewablepointOfPresence-example) {#getViewablepointOfPresence-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getViewablepointOfPresence' ``` diff --git a/content/reference/services/SoftLayer_Location_Datacenter/getpointOfPresence.md b/content/reference/services/SoftLayer_Location_Datacenter/getpointOfPresence.md index 2ff592fcb8..88be33f7b2 100644 --- a/content/reference/services/SoftLayer_Location_Datacenter/getpointOfPresence.md +++ b/content/reference/services/SoftLayer_Location_Datacenter/getpointOfPresence.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Datacenter" --- -### Curl Example +# [REST Example](#getpointOfPresence-example) {#getpointOfPresence-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Datacenter/getpointOfPresence' ``` diff --git a/content/reference/services/SoftLayer_Location_Group/getAllObjects.md b/content/reference/services/SoftLayer_Location_Group/getAllObjects.md index 246eff0b8d..f1ab9590ff 100644 --- a/content/reference/services/SoftLayer_Location_Group/getAllObjects.md +++ b/content/reference/services/SoftLayer_Location_Group/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Location_Group/getLocationGroupType.md b/content/reference/services/SoftLayer_Location_Group/getLocationGroupType.md index eb07711f05..acbfde3d51 100644 --- a/content/reference/services/SoftLayer_Location_Group/getLocationGroupType.md +++ b/content/reference/services/SoftLayer_Location_Group/getLocationGroupType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group" --- -### Curl Example +# [REST Example](#getLocationGroupType-example) {#getLocationGroupType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group/{SoftLayer_Location_GroupID}/getLocationGroupType' ``` diff --git a/content/reference/services/SoftLayer_Location_Group/getLocations.md b/content/reference/services/SoftLayer_Location_Group/getLocations.md index 1502ebb347..a698d51c42 100644 --- a/content/reference/services/SoftLayer_Location_Group/getLocations.md +++ b/content/reference/services/SoftLayer_Location_Group/getLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group" --- -### Curl Example +# [REST Example](#getLocations-example) {#getLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group/{SoftLayer_Location_GroupID}/getLocations' ``` diff --git a/content/reference/services/SoftLayer_Location_Group/getObject.md b/content/reference/services/SoftLayer_Location_Group/getObject.md index 0b7a980646..c40c42c987 100644 --- a/content/reference/services/SoftLayer_Location_Group/getObject.md +++ b/content/reference/services/SoftLayer_Location_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group/{SoftLayer_Location_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Pricing/getAllObjects.md b/content/reference/services/SoftLayer_Location_Group_Pricing/getAllObjects.md index 2a236d176d..39dea71057 100644 --- a/content/reference/services/SoftLayer_Location_Group_Pricing/getAllObjects.md +++ b/content/reference/services/SoftLayer_Location_Group_Pricing/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Pricing" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Pricing/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Pricing/getLocationGroupType.md b/content/reference/services/SoftLayer_Location_Group_Pricing/getLocationGroupType.md index bddb8a63c3..a8c59b9f94 100644 --- a/content/reference/services/SoftLayer_Location_Group_Pricing/getLocationGroupType.md +++ b/content/reference/services/SoftLayer_Location_Group_Pricing/getLocationGroupType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Pricing" --- -### Curl Example +# [REST Example](#getLocationGroupType-example) {#getLocationGroupType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Pricing/{SoftLayer_Location_Group_PricingID}/getLocationGroupType' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Pricing/getLocations.md b/content/reference/services/SoftLayer_Location_Group_Pricing/getLocations.md index 60d874b634..82f4298d9e 100644 --- a/content/reference/services/SoftLayer_Location_Group_Pricing/getLocations.md +++ b/content/reference/services/SoftLayer_Location_Group_Pricing/getLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Pricing" --- -### Curl Example +# [REST Example](#getLocations-example) {#getLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Pricing/{SoftLayer_Location_Group_PricingID}/getLocations' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Pricing/getObject.md b/content/reference/services/SoftLayer_Location_Group_Pricing/getObject.md index 77bcc83d2d..4ed45b0284 100644 --- a/content/reference/services/SoftLayer_Location_Group_Pricing/getObject.md +++ b/content/reference/services/SoftLayer_Location_Group_Pricing/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Pricing" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Pricing/{SoftLayer_Location_Group_PricingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Pricing/getPrices.md b/content/reference/services/SoftLayer_Location_Group_Pricing/getPrices.md index f395696848..e956a8abdb 100644 --- a/content/reference/services/SoftLayer_Location_Group_Pricing/getPrices.md +++ b/content/reference/services/SoftLayer_Location_Group_Pricing/getPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Pricing" --- -### Curl Example +# [REST Example](#getPrices-example) {#getPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Pricing/{SoftLayer_Location_Group_PricingID}/getPrices' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Regional/getAllObjects.md b/content/reference/services/SoftLayer_Location_Group_Regional/getAllObjects.md index 52c8462e29..89837e01db 100644 --- a/content/reference/services/SoftLayer_Location_Group_Regional/getAllObjects.md +++ b/content/reference/services/SoftLayer_Location_Group_Regional/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Regional" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Regional/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Regional/getDatacenters.md b/content/reference/services/SoftLayer_Location_Group_Regional/getDatacenters.md index 006450cead..6e7239e232 100644 --- a/content/reference/services/SoftLayer_Location_Group_Regional/getDatacenters.md +++ b/content/reference/services/SoftLayer_Location_Group_Regional/getDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Regional" --- -### Curl Example +# [REST Example](#getDatacenters-example) {#getDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Regional/{SoftLayer_Location_Group_RegionalID}/getDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Regional/getLocationGroupType.md b/content/reference/services/SoftLayer_Location_Group_Regional/getLocationGroupType.md index 857161207f..20dd059daa 100644 --- a/content/reference/services/SoftLayer_Location_Group_Regional/getLocationGroupType.md +++ b/content/reference/services/SoftLayer_Location_Group_Regional/getLocationGroupType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Regional" --- -### Curl Example +# [REST Example](#getLocationGroupType-example) {#getLocationGroupType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Regional/{SoftLayer_Location_Group_RegionalID}/getLocationGroupType' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Regional/getLocations.md b/content/reference/services/SoftLayer_Location_Group_Regional/getLocations.md index e861ade94a..40546cd704 100644 --- a/content/reference/services/SoftLayer_Location_Group_Regional/getLocations.md +++ b/content/reference/services/SoftLayer_Location_Group_Regional/getLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Regional" --- -### Curl Example +# [REST Example](#getLocations-example) {#getLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Regional/{SoftLayer_Location_Group_RegionalID}/getLocations' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Regional/getObject.md b/content/reference/services/SoftLayer_Location_Group_Regional/getObject.md index 4b8b4dd8bb..473d956ffe 100644 --- a/content/reference/services/SoftLayer_Location_Group_Regional/getObject.md +++ b/content/reference/services/SoftLayer_Location_Group_Regional/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Regional" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Regional/{SoftLayer_Location_Group_RegionalID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location_Group_Regional/getPreferredDatacenter.md b/content/reference/services/SoftLayer_Location_Group_Regional/getPreferredDatacenter.md index 237786dc11..bd3b6e277d 100644 --- a/content/reference/services/SoftLayer_Location_Group_Regional/getPreferredDatacenter.md +++ b/content/reference/services/SoftLayer_Location_Group_Regional/getPreferredDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Group_Regional" --- -### Curl Example +# [REST Example](#getPreferredDatacenter-example) {#getPreferredDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Group_Regional/{SoftLayer_Location_Group_RegionalID}/getPreferredDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getAccount.md b/content/reference/services/SoftLayer_Location_Reservation/getAccount.md index 6d3391d257..ba7d847fc8 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getAccount.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/{SoftLayer_Location_ReservationID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getAccountReservations.md b/content/reference/services/SoftLayer_Location_Reservation/getAccountReservations.md index 8f1538e8b4..170039f129 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getAccountReservations.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getAccountReservations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getAccountReservations-example) {#getAccountReservations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/getAccountReservations' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getAllotment.md b/content/reference/services/SoftLayer_Location_Reservation/getAllotment.md index 306ff8b922..b7dc40f351 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getAllotment.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getAllotment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getAllotment-example) {#getAllotment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/{SoftLayer_Location_ReservationID}/getAllotment' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getBillingItem.md b/content/reference/services/SoftLayer_Location_Reservation/getBillingItem.md index 0ecdc74815..e36b670bb9 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getBillingItem.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/{SoftLayer_Location_ReservationID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getLocation.md b/content/reference/services/SoftLayer_Location_Reservation/getLocation.md index e0b4058f0d..7d50447fea 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getLocation.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/{SoftLayer_Location_ReservationID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getLocationReservationRack.md b/content/reference/services/SoftLayer_Location_Reservation/getLocationReservationRack.md index f35b3817bb..97de96ff85 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getLocationReservationRack.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getLocationReservationRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getLocationReservationRack-example) {#getLocationReservationRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/{SoftLayer_Location_ReservationID}/getLocationReservationRack' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation/getObject.md b/content/reference/services/SoftLayer_Location_Reservation/getObject.md index f2be980fa1..708af7fd6d 100644 --- a/content/reference/services/SoftLayer_Location_Reservation/getObject.md +++ b/content/reference/services/SoftLayer_Location_Reservation/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation/{SoftLayer_Location_ReservationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack/getAllotment.md b/content/reference/services/SoftLayer_Location_Reservation_Rack/getAllotment.md index dfb2867493..444e23cb41 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack/getAllotment.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack/getAllotment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack" --- -### Curl Example +# [REST Example](#getAllotment-example) {#getAllotment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack/{SoftLayer_Location_Reservation_RackID}/getAllotment' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack/getChildren.md b/content/reference/services/SoftLayer_Location_Reservation_Rack/getChildren.md index a2bbebe97b..b5cab53f41 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack/getChildren.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack/{SoftLayer_Location_Reservation_RackID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocation.md b/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocation.md index a6eef1a433..4f25b0bc04 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocation.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack/{SoftLayer_Location_Reservation_RackID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocationReservation.md b/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocationReservation.md index 09b5c01505..e25787c6d2 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocationReservation.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack/getLocationReservation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack" --- -### Curl Example +# [REST Example](#getLocationReservation-example) {#getLocationReservation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack/{SoftLayer_Location_Reservation_RackID}/getLocationReservation' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack/getObject.md b/content/reference/services/SoftLayer_Location_Reservation_Rack/getObject.md index 3f7c41114f..74b0f35581 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack/getObject.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack/{SoftLayer_Location_Reservation_RackID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocation.md b/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocation.md index 8ff08753b4..a1f72eea0f 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocation.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack_Member" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack_Member/{SoftLayer_Location_Reservation_Rack_MemberID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocationReservationRack.md b/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocationReservationRack.md index 584980ec2d..6012c6ab91 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocationReservationRack.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getLocationReservationRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack_Member" --- -### Curl Example +# [REST Example](#getLocationReservationRack-example) {#getLocationReservationRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack_Member/{SoftLayer_Location_Reservation_Rack_MemberID}/getLocationReservationRack' ``` diff --git a/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getObject.md b/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getObject.md index f9280d9a4f..cdba13b04e 100644 --- a/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getObject.md +++ b/content/reference/services/SoftLayer_Location_Reservation_Rack_Member/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Location_Reservation_Rack_Member" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Location_Reservation_Rack_Member/{SoftLayer_Location_Reservation_Rack_MemberID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getAllObjects.md b/content/reference/services/SoftLayer_Marketplace_Partner/getAllObjects.md index 8c0f729f26..47772b5867 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getAllObjects.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getAllPublishedPartners.md b/content/reference/services/SoftLayer_Marketplace_Partner/getAllPublishedPartners.md index 68e6eb7e72..67e4a39e16 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getAllPublishedPartners.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getAllPublishedPartners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getAllPublishedPartners-example) {#getAllPublishedPartners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/getAllPublishedPartners' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getAttachments.md b/content/reference/services/SoftLayer_Marketplace_Partner/getAttachments.md index 78bf9e35ec..24415a6f1f 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getAttachments.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getAttachments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getAttachments-example) {#getAttachments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getAttachments' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getFeaturedPartners.md b/content/reference/services/SoftLayer_Marketplace_Partner/getFeaturedPartners.md index d2f54aaf32..a19d466d4d 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getFeaturedPartners.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getFeaturedPartners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getFeaturedPartners-example) {#getFeaturedPartners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/getFeaturedPartners' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getFile.md b/content/reference/services/SoftLayer_Marketplace_Partner/getFile.md index 0eee9678a7..e9476d5d72 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getFile.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getFile-example) {#getFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getFile' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMedium.md b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMedium.md index 4516149b44..dbda2471be 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMedium.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMedium.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getLogoMedium-example) {#getLogoMedium-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getLogoMedium' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMediumTemp.md b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMediumTemp.md index 803ba788a7..8b965b5614 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMediumTemp.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoMediumTemp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getLogoMediumTemp-example) {#getLogoMediumTemp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getLogoMediumTemp' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmall.md b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmall.md index 9c5757793f..8dbdd4a5df 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmall.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getLogoSmall-example) {#getLogoSmall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getLogoSmall' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmallTemp.md b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmallTemp.md index f64681505b..406071d987 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmallTemp.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getLogoSmallTemp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getLogoSmallTemp-example) {#getLogoSmallTemp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getLogoSmallTemp' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getObject.md b/content/reference/services/SoftLayer_Marketplace_Partner/getObject.md index 79e71e27ac..0da0be2b4d 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getObject.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/{SoftLayer_Marketplace_PartnerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Marketplace_Partner/getPartnerByUrlIdentifier.md b/content/reference/services/SoftLayer_Marketplace_Partner/getPartnerByUrlIdentifier.md index b5c0ddbbee..329be408eb 100644 --- a/content/reference/services/SoftLayer_Marketplace_Partner/getPartnerByUrlIdentifier.md +++ b/content/reference/services/SoftLayer_Marketplace_Partner/getPartnerByUrlIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Marketplace_Partner" --- -### Curl Example +# [REST Example](#getPartnerByUrlIdentifier-example) {#getPartnerByUrlIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Marketplace_Partner/getPartnerByUrlIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthData.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthData.md index 93f6499aa7..90cc4a24bc 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthData.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getBandwidthData-example) {#getBandwidthData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getBandwidthData' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthGraph.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthGraph.md index d452fa5c5f..3d51c0af96 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthGraph.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthGraph.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getBandwidthGraph-example) {#getBandwidthGraph-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, int, int, int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, int, int, int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getBandwidthGraph' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthTotal.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthTotal.md index f6a9448bf6..625fa3a418 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthTotal.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getBandwidthTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getBandwidthTotal-example) {#getBandwidthTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getBandwidthTotal' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getDetailsForDateRange.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getDetailsForDateRange.md index 81b16a542b..cdfaae5958 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getDetailsForDateRange.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getDetailsForDateRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getDetailsForDateRange-example) {#getDetailsForDateRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getDetailsForDateRange' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getGraph.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getGraph.md index 0fefafc419..f6c7b69a64 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getGraph.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getGraph.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getGraph-example) {#getGraph-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getGraph' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getMetricDataTypes.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getMetricDataTypes.md index 84c8a70c8a..745c62a94e 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getMetricDataTypes.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getMetricDataTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getMetricDataTypes-example) {#getMetricDataTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getMetricDataTypes' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getObject.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getObject.md index 0191e07231..31a2774a18 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getObject.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummary.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummary.md index b186a26ec3..4199b70e63 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummary.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getSummary-example) {#getSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getSummary' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummaryData.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummaryData.md index d68bb87adc..0ff7b10a9e 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummaryData.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getSummaryData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getSummaryData-example) {#getSummaryData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, SoftLayer_Container_Metric_Data_Type, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, SoftLayer_Container_Metric_Data_Type, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getSummaryData' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object/getType.md b/content/reference/services/SoftLayer_Metric_Tracking_Object/getType.md index fee1e2dd9c..7bcf3936a3 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object/getType.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object/{SoftLayer_Metric_Tracking_ObjectID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Metric_Tracking_Object_Bandwidth_Summary/getObject.md b/content/reference/services/SoftLayer_Metric_Tracking_Object_Bandwidth_Summary/getObject.md index bb48f563db..e24fba0b9d 100644 --- a/content/reference/services/SoftLayer_Metric_Tracking_Object_Bandwidth_Summary/getObject.md +++ b/content/reference/services/SoftLayer_Metric_Tracking_Object_Bandwidth_Summary/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Metric_Tracking_Object_Bandwidth_Summary" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Metric_Tracking_Object_Bandwidth_Summary/{SoftLayer_Metric_Tracking_Object_Bandwidth_SummaryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Monitoring_Robot/checkConnection.md b/content/reference/services/SoftLayer_Monitoring_Robot/checkConnection.md index ffb95f688e..1dc1c61ce1 100644 --- a/content/reference/services/SoftLayer_Monitoring_Robot/checkConnection.md +++ b/content/reference/services/SoftLayer_Monitoring_Robot/checkConnection.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Monitoring_Robot" --- -### Curl Example +# [REST Example](#checkConnection-example) {#checkConnection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Monitoring_Robot/{SoftLayer_Monitoring_RobotID}/checkConnection' ``` diff --git a/content/reference/services/SoftLayer_Monitoring_Robot/getObject.md b/content/reference/services/SoftLayer_Monitoring_Robot/getObject.md index e069efaf27..3244edf488 100644 --- a/content/reference/services/SoftLayer_Monitoring_Robot/getObject.md +++ b/content/reference/services/SoftLayer_Monitoring_Robot/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Monitoring_Robot" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Monitoring_Robot/{SoftLayer_Monitoring_RobotID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network/connectPrivateEndpointService.md b/content/reference/services/SoftLayer_Network/connectPrivateEndpointService.md index e1b796afed..0528a28de7 100644 --- a/content/reference/services/SoftLayer_Network/connectPrivateEndpointService.md +++ b/content/reference/services/SoftLayer_Network/connectPrivateEndpointService.md @@ -31,8 +31,8 @@ layout: "method" mainService : "SoftLayer_Network" --- -### Curl Example +# [REST Example](#connectPrivateEndpointService-example) {#connectPrivateEndpointService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network/connectPrivateEndpointService' ``` diff --git a/content/reference/services/SoftLayer_Network/disconnectPrivateEndpointService.md b/content/reference/services/SoftLayer_Network/disconnectPrivateEndpointService.md index 56efb4d1c3..efae2ab004 100644 --- a/content/reference/services/SoftLayer_Network/disconnectPrivateEndpointService.md +++ b/content/reference/services/SoftLayer_Network/disconnectPrivateEndpointService.md @@ -31,8 +31,8 @@ layout: "method" mainService : "SoftLayer_Network" --- -### Curl Example +# [REST Example](#disconnectPrivateEndpointService-example) {#disconnectPrivateEndpointService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network/disconnectPrivateEndpointService' ``` diff --git a/content/reference/services/SoftLayer_Network/getObject.md b/content/reference/services/SoftLayer_Network/getObject.md index 3b891940da..e06328a617 100644 --- a/content/reference/services/SoftLayer_Network/getObject.md +++ b/content/reference/services/SoftLayer_Network/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network/{SoftLayer_NetworkID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network/isConnectedToPrivateEndpointService.md b/content/reference/services/SoftLayer_Network/isConnectedToPrivateEndpointService.md index d2b6afb343..506d61c6a1 100644 --- a/content/reference/services/SoftLayer_Network/isConnectedToPrivateEndpointService.md +++ b/content/reference/services/SoftLayer_Network/isConnectedToPrivateEndpointService.md @@ -31,8 +31,8 @@ layout: "method" mainService : "SoftLayer_Network" --- -### Curl Example +# [REST Example](#isConnectedToPrivateEndpointService-example) {#isConnectedToPrivateEndpointService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network/isConnectedToPrivateEndpointService' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/createLiveLoadBalancer.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/createLiveLoadBalancer.md index 01745e4cc5..7304531390 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/createLiveLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/createLiveLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#createLiveLoadBalancer-example) {#createLiveLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/createLiveLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancer.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancer.md index 61db83612f..fb7dc9e698 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#deleteLiveLoadBalancer-example) {#deleteLiveLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/deleteLiveLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancerService.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancerService.md index bea6e1b690..1688762add 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancerService.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/deleteLiveLoadBalancerService.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#deleteLiveLoadBalancerService-example) {#deleteLiveLoadBalancerService-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_Service]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_Service]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/deleteLiveLoadBalancerService' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/editObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/editObject.md index 049bc4df1f..875667fa91 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/editObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Application_Delivery_Controller]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Application_Delivery_Controller]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAccount.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAccount.md index ecfc5a9e84..76a2c577d6 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAverageDailyPublicBandwidthUsage.md index 0f58cec639..d1f59db02b 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthDataByDate.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthDataByDate.md index fa513f8b67..fc8cbb343f 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthDataByDate.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getBandwidthDataByDate-example) {#getBandwidthDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getBandwidthDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthImageByDate.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthImageByDate.md index 2e0fdf6d03..53e355c548 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthImageByDate.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBandwidthImageByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getBandwidthImageByDate-example) {#getBandwidthImageByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getBandwidthImageByDate' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBillingItem.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBillingItem.md index eb839bd85a..39a4a4880c 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getConfigurationHistory.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getConfigurationHistory.md index e88ed1371e..b79c2d2f73 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getConfigurationHistory.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getConfigurationHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getConfigurationHistory-example) {#getConfigurationHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getConfigurationHistory' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDatacenter.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDatacenter.md index cd8c215110..70525857ee 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDatacenter.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDescription.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDescription.md index 7b3869de49..0b1423d844 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDescription.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getDescription-example) {#getDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getDescription' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getInboundPublicBandwidthUsage.md index 769caed68c..11136ca5b5 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLicenseExpirationDate.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLicenseExpirationDate.md index bc24f7f902..d8265e49b3 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLicenseExpirationDate.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLicenseExpirationDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getLicenseExpirationDate-example) {#getLicenseExpirationDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getLicenseExpirationDate' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLiveLoadBalancerServiceGraphImage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLiveLoadBalancerServiceGraphImage.md index fd6fd4acd0..def188e315 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLiveLoadBalancerServiceGraphImage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLiveLoadBalancerServiceGraphImage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getLiveLoadBalancerServiceGraphImage-example) {#getLiveLoadBalancerServiceGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_Service, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_Service, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getLiveLoadBalancerServiceGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLoadBalancers.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLoadBalancers.md index 0a1755fd23..d4d9ce044e 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLoadBalancers.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getLoadBalancers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getLoadBalancers-example) {#getLoadBalancers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getLoadBalancers' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagedResourceFlag.md index 024b648479..441f3e3a31 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagementIpAddress.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagementIpAddress.md index 2457954ee3..2bbcdd8c04 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagementIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getManagementIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getManagementIpAddress-example) {#getManagementIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getManagementIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlan.md index 152a3e2e8f..a0be850e0f 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlans.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlans.md index 14fedb6fb8..81ab14a474 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getObject.md index ec7fe30399..28933df5ae 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getOutboundPublicBandwidthUsage.md index ab27b9a509..507d7592a0 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPassword.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPassword.md index a4ff429f72..01b3de8031 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPassword.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getPassword-example) {#getPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPrimaryIpAddress.md index c3b8be4e0c..493e35c3ea 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getProjectedPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getProjectedPublicBandwidthUsage.md index b0333c49a5..b7b222b97c 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getProjectedPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getProjectedPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getProjectedPublicBandwidthUsage-example) {#getProjectedPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getProjectedPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getSubnets.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getSubnets.md index 0980ef3612..90d747a18e 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getSubnets.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getSubnets-example) {#getSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getTagReferences.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getTagReferences.md index 4ae2807998..167cffe25e 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getTagReferences.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getType.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getType.md index 78a4dc323b..580f8014c2 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getType.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getVirtualIpAddresses.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getVirtualIpAddresses.md index 7b5e143c5c..1feb3e8978 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getVirtualIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/getVirtualIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#getVirtualIpAddresses-example) {#getVirtualIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/getVirtualIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreBaseConfiguration.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreBaseConfiguration.md index 981d5f9d59..9aa081c996 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreBaseConfiguration.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreBaseConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#restoreBaseConfiguration-example) {#restoreBaseConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/restoreBaseConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreConfiguration.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreConfiguration.md index 995c9037d2..72e79bfa5d 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreConfiguration.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/restoreConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#restoreConfiguration-example) {#restoreConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/restoreConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/saveCurrentConfiguration.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/saveCurrentConfiguration.md index 9334c4ef78..7898f111c7 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/saveCurrentConfiguration.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/saveCurrentConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#saveCurrentConfiguration-example) {#saveCurrentConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/saveCurrentConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateLiveLoadBalancer.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateLiveLoadBalancer.md index 457dfe876f..6ddbb3cbfa 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateLiveLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateLiveLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#updateLiveLoadBalancer-example) {#updateLiveLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/updateLiveLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateNetScalerLicense.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateNetScalerLicense.md index 9ae050763f..8ebab5fea6 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateNetScalerLicense.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller/updateNetScalerLicense.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller" --- -### Curl Example +# [REST Example](#updateNetScalerLicense-example) {#updateNetScalerLicense-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller/{SoftLayer_Network_Application_Delivery_ControllerID}/updateNetScalerLicense' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/deleteObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/deleteObject.md index 69ef6554f4..f3f4d46fa3 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_Configuration_History" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/{SoftLayer_Network_Application_Delivery_Controller_Configuration_HistoryID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getController.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getController.md index 083f537c89..6ff7f23627 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getController.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getController.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_Configuration_History" --- -### Curl Example +# [REST Example](#getController-example) {#getController-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/{SoftLayer_Network_Application_Delivery_Controller_Configuration_HistoryID}/getController' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getObject.md index 6af8eb67d7..49d73659cb 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_Configuration_History" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_Configuration_History/{SoftLayer_Network_Application_Delivery_Controller_Configuration_HistoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getHealthCheck.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getHealthCheck.md index 07b956528a..f03d612418 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getHealthCheck.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getHealthCheck.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute" --- -### Curl Example +# [REST Example](#getHealthCheck-example) {#getHealthCheck-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_AttributeID}/getHealthCheck' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getObject.md index e186d7e360..fe848a3d6f 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_AttributeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getType.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getType.md index 7cb203a3cf..95c77d56f8 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getType.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_AttributeID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getAllObjects.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getAllObjects.md index 453b767a32..a8d0ed270e 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getObject.md index 889270a397..942352bb11 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_Type/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Attribute_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getAttributes.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getAttributes.md index 7bd3f7792f..93d56bb8c7 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getAttributes.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_CheckID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getObject.md index 112acf8f64..1dcf8635c9 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_CheckID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getServices.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getServices.md index ce645fa31e..f970a9fb18 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getServices.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getServices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check" --- -### Curl Example +# [REST Example](#getServices-example) {#getServices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_CheckID}/getServices' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getType.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getType.md index da2e464e44..1eaef78140 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getType.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_CheckID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getAllObjects.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getAllObjects.md index 21d8ac4b16..83cfaf1054 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getObject.md index 2c8591c0da..6d9da4b644 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getAllObjects.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getAllObjects.md index 6f72c88c8c..c6ebd7511d 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getObject.md index 60fe1ff452..4c8c930d1c 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_MethodID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getAllObjects.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getAllObjects.md index c2e1458cf9..cd75dfdbe3 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getObject.md index 73aec508cd..fa2c6cf2f1 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/deleteObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/deleteObject.md index c265e035c3..65d8071b61 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGraphImage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGraphImage.md index d895611e3c..125ca8f1e7 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGraphImage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGraphImage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getGraphImage-example) {#getGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroupReferences.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroupReferences.md index 622960a3a1..b75b5e08ea 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroupReferences.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroupReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getGroupReferences-example) {#getGroupReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getGroupReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroups.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroups.md index 13492ddcf0..68e7748627 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroups.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getGroups-example) {#getGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthCheck.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthCheck.md index 3e6cdc4cd1..23fe1eefab 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthCheck.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthCheck.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getHealthCheck-example) {#getHealthCheck-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getHealthCheck' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthChecks.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthChecks.md index b2de86dd2c..ded5396f35 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthChecks.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getHealthChecks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getHealthChecks-example) {#getHealthChecks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getHealthChecks' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getIpAddress.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getIpAddress.md index d31f5ecf12..65b3c5931d 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getIpAddress-example) {#getIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getObject.md index fb372e98d5..f9e6615cd9 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getServiceGroup.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getServiceGroup.md index e6ea66c25a..1617caa11b 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getServiceGroup.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/getServiceGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getServiceGroup-example) {#getServiceGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/getServiceGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/toggleStatus.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/toggleStatus.md index 3cc4e7aabf..f047c31471 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/toggleStatus.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/toggleStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#toggleStatus-example) {#toggleStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_ServiceID}/toggleStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getGraphImage.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getGraphImage.md index 683f6aa6fc..fa89c62295 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getGraphImage.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getGraphImage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getGraphImage-example) {#getGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getObject.md index 3b7b2cbc08..dc6a323157 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingMethod.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingMethod.md index da309663d4..5437b5f89c 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingMethod.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingMethod.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getRoutingMethod-example) {#getRoutingMethod-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getRoutingMethod' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingType.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingType.md index 4d354b6a3c..eda5411776 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingType.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getRoutingType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getRoutingType-example) {#getRoutingType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getRoutingType' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServiceReferences.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServiceReferences.md index f5cb0fd25d..4e53386115 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServiceReferences.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServiceReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getServiceReferences-example) {#getServiceReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getServiceReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServices.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServices.md index d5b31fff89..b5e6d2809f 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServices.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getServices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getServices-example) {#getServices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getServices' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServer.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServer.md index 628beed44b..a2f56241c0 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServer.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getVirtualServer-example) {#getVirtualServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getVirtualServer' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServers.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServers.md index 79b3a9df48..0bcdba8571 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServers.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/getVirtualServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#getVirtualServers-example) {#getVirtualServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/getVirtualServers' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/kickAllConnections.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/kickAllConnections.md index 12df3d236c..999fc4ac0a 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/kickAllConnections.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/kickAllConnections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group" --- -### Curl Example +# [REST Example](#kickAllConnections-example) {#kickAllConnections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_GroupID}/kickAllConnections' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/editObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/editObject.md index f919be2f36..c2ea90573b 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/editObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAccount.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAccount.md index c76143f6ef..4c5a5df57d 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryController.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryController.md index ade8cbfb0d..e323ecb886 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryController.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryController.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getApplicationDeliveryController-example) {#getApplicationDeliveryController-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getApplicationDeliveryController' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryControllers.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryControllers.md index ae6bcccf57..b8517fb7b5 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryControllers.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getApplicationDeliveryControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getApplicationDeliveryControllers-example) {#getApplicationDeliveryControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getApplicationDeliveryControllers' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportCiphers.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportCiphers.md index dcd3f53347..2a1c97c3a4 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportCiphers.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportCiphers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getAvailableSecureTransportCiphers-example) {#getAvailableSecureTransportCiphers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getAvailableSecureTransportCiphers' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportProtocols.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportProtocols.md index 6c35ed3ebd..8d5bd95628 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportProtocols.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getAvailableSecureTransportProtocols.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getAvailableSecureTransportProtocols-example) {#getAvailableSecureTransportProtocols-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getAvailableSecureTransportProtocols' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getBillingItem.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getBillingItem.md index 14974698eb..0a9ce99fcd 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getDedicatedBillingItem.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getDedicatedBillingItem.md index e3cc4afeab..4aef6a63a2 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getDedicatedBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getDedicatedBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getDedicatedBillingItem-example) {#getDedicatedBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getDedicatedBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getHighAvailabilityFlag.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getHighAvailabilityFlag.md index b165ca3033..c0071c4d84 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getHighAvailabilityFlag.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getHighAvailabilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getHighAvailabilityFlag-example) {#getHighAvailabilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getHighAvailabilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getIpAddress.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getIpAddress.md index ee15296367..d450628f7e 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getIpAddress-example) {#getIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getLoadBalancerHardware.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getLoadBalancerHardware.md index 5ae66cc24a..4692d1f143 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getLoadBalancerHardware.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getLoadBalancerHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getLoadBalancerHardware-example) {#getLoadBalancerHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getLoadBalancerHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md index 57c7e5925e..f5c1ca0e4a 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getObject.md index 13441b0712..3cefe968ad 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportCiphers.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportCiphers.md index 4b1623f72e..8e2cc61ce8 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportCiphers.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportCiphers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getSecureTransportCiphers-example) {#getSecureTransportCiphers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getSecureTransportCiphers' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportProtocols.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportProtocols.md index 46f4532d3b..544bab1469 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportProtocols.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecureTransportProtocols.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getSecureTransportProtocols-example) {#getSecureTransportProtocols-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getSecureTransportProtocols' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificate.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificate.md index 45c12def64..f89f33cb17 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificate.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getSecurityCertificate-example) {#getSecurityCertificate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getSecurityCertificate' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificateEntry.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificateEntry.md index 3c09de3f12..bc39770383 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificateEntry.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getSecurityCertificateEntry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getSecurityCertificateEntry-example) {#getSecurityCertificateEntry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getSecurityCertificateEntry' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getVirtualServers.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getVirtualServers.md index 41abfe0297..62c65d2b7e 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getVirtualServers.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/getVirtualServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getVirtualServers-example) {#getVirtualServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/getVirtualServers' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/startSsl.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/startSsl.md index 187010f5ae..6b974498c8 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/startSsl.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/startSsl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#startSsl-example) {#startSsl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/startSsl' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/stopSsl.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/stopSsl.md index f2cab39aad..0e737ed036 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/stopSsl.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/stopSsl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#stopSsl-example) {#stopSsl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/stopSsl' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md index 5249148821..f8573223ee 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#upgradeConnectionLimit-example) {#upgradeConnectionLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddressID}/upgradeConnectionLimit' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/deleteObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/deleteObject.md index 55076733d5..08b5cf9ea7 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getObject.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getObject.md index 67ef921e51..0d031c6cdb 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getObject.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getRoutingMethod.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getRoutingMethod.md index d87b1c3385..68d6b6ee9d 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getRoutingMethod.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getRoutingMethod.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#getRoutingMethod-example) {#getRoutingMethod-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/getRoutingMethod' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getServiceGroups.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getServiceGroups.md index 4e8a04f7e6..9d8d274f0c 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getServiceGroups.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getServiceGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#getServiceGroups-example) {#getServiceGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/getServiceGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getVirtualIpAddress.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getVirtualIpAddress.md index ee7b80f0c4..8cb8c9fb3f 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getVirtualIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/getVirtualIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#getVirtualIpAddress-example) {#getVirtualIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/getVirtualIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/startSsl.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/startSsl.md index 00bf44e2b4..c174182760 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/startSsl.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/startSsl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#startSsl-example) {#startSsl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/startSsl' ``` diff --git a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/stopSsl.md b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/stopSsl.md index f1b3b05932..2ea4007636 100644 --- a/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/stopSsl.md +++ b/content/reference/services/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/stopSsl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer" --- -### Curl Example +# [REST Example](#stopSsl-example) {#stopSsl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer/{SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServerID}/stopSsl' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone/getAllBackbones.md b/content/reference/services/SoftLayer_Network_Backbone/getAllBackbones.md index ca2f80de6c..38a68e8a1d 100644 --- a/content/reference/services/SoftLayer_Network_Backbone/getAllBackbones.md +++ b/content/reference/services/SoftLayer_Network_Backbone/getAllBackbones.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone" --- -### Curl Example +# [REST Example](#getAllBackbones-example) {#getAllBackbones-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone/getAllBackbones' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone/getBackbonesForLocationName.md b/content/reference/services/SoftLayer_Network_Backbone/getBackbonesForLocationName.md index e246472de9..0e17cc91c6 100644 --- a/content/reference/services/SoftLayer_Network_Backbone/getBackbonesForLocationName.md +++ b/content/reference/services/SoftLayer_Network_Backbone/getBackbonesForLocationName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone" --- -### Curl Example +# [REST Example](#getBackbonesForLocationName-example) {#getBackbonesForLocationName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone/getBackbonesForLocationName' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone/getHealth.md b/content/reference/services/SoftLayer_Network_Backbone/getHealth.md index 8d032621aa..8129c5d656 100644 --- a/content/reference/services/SoftLayer_Network_Backbone/getHealth.md +++ b/content/reference/services/SoftLayer_Network_Backbone/getHealth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone" --- -### Curl Example +# [REST Example](#getHealth-example) {#getHealth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone/{SoftLayer_Network_BackboneID}/getHealth' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone/getLocation.md b/content/reference/services/SoftLayer_Network_Backbone/getLocation.md index 04e3c69f7d..c0d927d36a 100644 --- a/content/reference/services/SoftLayer_Network_Backbone/getLocation.md +++ b/content/reference/services/SoftLayer_Network_Backbone/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone/{SoftLayer_Network_BackboneID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone/getNetworkComponent.md b/content/reference/services/SoftLayer_Network_Backbone/getNetworkComponent.md index b38747e184..037ea6afc5 100644 --- a/content/reference/services/SoftLayer_Network_Backbone/getNetworkComponent.md +++ b/content/reference/services/SoftLayer_Network_Backbone/getNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone" --- -### Curl Example +# [REST Example](#getNetworkComponent-example) {#getNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone/{SoftLayer_Network_BackboneID}/getNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone/getObject.md b/content/reference/services/SoftLayer_Network_Backbone/getObject.md index 6124c9ae90..628ff0c21e 100644 --- a/content/reference/services/SoftLayer_Network_Backbone/getObject.md +++ b/content/reference/services/SoftLayer_Network_Backbone/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone/{SoftLayer_Network_BackboneID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getAllObjects.md b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getAllObjects.md index 8c8812e018..043b5225c5 100644 --- a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone_Location_Dependent" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone_Location_Dependent/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getDependentLocation.md b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getDependentLocation.md index 6295e0fdb4..28420a17f8 100644 --- a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getDependentLocation.md +++ b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getDependentLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone_Location_Dependent" --- -### Curl Example +# [REST Example](#getDependentLocation-example) {#getDependentLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone_Location_Dependent/{SoftLayer_Network_Backbone_Location_DependentID}/getDependentLocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getObject.md b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getObject.md index db37922a5a..30c63de87b 100644 --- a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getObject.md +++ b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone_Location_Dependent" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone_Location_Dependent/{SoftLayer_Network_Backbone_Location_DependentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceDependentsByName.md b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceDependentsByName.md index 1a87344e19..45c30fc7ba 100644 --- a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceDependentsByName.md +++ b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceDependentsByName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone_Location_Dependent" --- -### Curl Example +# [REST Example](#getSourceDependentsByName-example) {#getSourceDependentsByName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone_Location_Dependent/getSourceDependentsByName' ``` diff --git a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceLocation.md b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceLocation.md index 3400312d9e..d5834dcc84 100644 --- a/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceLocation.md +++ b/content/reference/services/SoftLayer_Network_Backbone_Location_Dependent/getSourceLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Backbone_Location_Dependent" --- -### Curl Example +# [REST Example](#getSourceLocation-example) {#getSourceLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Backbone_Location_Dependent/{SoftLayer_Network_Backbone_Location_DependentID}/getSourceLocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/createObject.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/createObject.md index c4f5ec4f6d..f50ca6d483 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/createObject.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Bandwidth_Version1_Allotment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Bandwidth_Version1_Allotment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/editObject.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/editObject.md index 9339b7c2de..14f78cad8f 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/editObject.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Bandwidth_Version1_Allotment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Bandwidth_Version1_Allotment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAccount.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAccount.md index 97a4d3ec62..e4862477f9 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getActiveDetails.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getActiveDetails.md index 5f867f6dba..0703ee5336 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getActiveDetails.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getActiveDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getActiveDetails-example) {#getActiveDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getActiveDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getApplicationDeliveryControllers.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getApplicationDeliveryControllers.md index 87e1498da3..1d1bf2147b 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getApplicationDeliveryControllers.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getApplicationDeliveryControllers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getApplicationDeliveryControllers-example) {#getApplicationDeliveryControllers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getApplicationDeliveryControllers' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAverageDailyPublicBandwidthUsage.md index 1086c0a84b..b91683ca5a 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthAllotmentType.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthAllotmentType.md index ee5d59314f..75545b6c1e 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthAllotmentType.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthAllotmentType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentType-example) {#getBandwidthAllotmentType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBandwidthAllotmentType' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthForDateRange.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthForDateRange.md index 85c59a1b0b..3005090f14 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthForDateRange.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthForDateRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBandwidthForDateRange-example) {#getBandwidthForDateRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBandwidthForDateRange' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthImage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthImage.md index bda7a24281..4f1b2c5bae 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthImage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBandwidthImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBandwidthImage-example) {#getBandwidthImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, boolean, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBandwidthImage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBareMetalInstances.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBareMetalInstances.md index 9bf9363424..463612e123 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBareMetalInstances.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBareMetalInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBareMetalInstances-example) {#getBareMetalInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBareMetalInstances' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCycleBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCycleBandwidthUsage.md index fffd4c78df..124dd4f74b 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCycleBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCycleBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBillingCycleBandwidthUsage-example) {#getBillingCycleBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBillingCycleBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePrivateBandwidthUsage.md index f5ae88d321..5e38f611e4 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBillingCyclePrivateBandwidthUsage-example) {#getBillingCyclePrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBillingCyclePrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicBandwidthUsage.md index 1ab0acb39d..5bc80694fb 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBillingCyclePublicBandwidthUsage-example) {#getBillingCyclePublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBillingCyclePublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicUsageTotal.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicUsageTotal.md index 680856444c..c81036fa4b 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicUsageTotal.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingCyclePublicUsageTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBillingCyclePublicUsageTotal-example) {#getBillingCyclePublicUsageTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBillingCyclePublicUsageTotal' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingItem.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingItem.md index 05a6b74daa..485b50f28a 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getCurrentBandwidthSummary.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getCurrentBandwidthSummary.md index 468cb0459c..3f74a1feba 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getCurrentBandwidthSummary.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getCurrentBandwidthSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getCurrentBandwidthSummary-example) {#getCurrentBandwidthSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getCurrentBandwidthSummary' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getDetails.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getDetails.md index 875f2bb8af..f18d0ed7d1 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getDetails.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getDetails-example) {#getDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getHardware.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getHardware.md index 2a1a560e56..4cadb3c021 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getInboundPublicBandwidthUsage.md index 9e8ecd605d..2b82dada55 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getLocationGroup.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getLocationGroup.md index 25eb70479a..9d71615f4f 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getLocationGroup.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getLocationGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getLocationGroup-example) {#getLocationGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getLocationGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedBareMetalInstances.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedBareMetalInstances.md index 18a32061f7..877d0c1061 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedBareMetalInstances.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedBareMetalInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getManagedBareMetalInstances-example) {#getManagedBareMetalInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getManagedBareMetalInstances' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedHardware.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedHardware.md index d1ae75a47b..ecd1d46a6a 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedHardware.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getManagedHardware-example) {#getManagedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getManagedHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedVirtualGuests.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedVirtualGuests.md index bff5974ef6..0bbc50f7b5 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getManagedVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getManagedVirtualGuests-example) {#getManagedVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getManagedVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObject.md index af78fcaa14..b8d754aca5 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObjectId.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObjectId.md index 9ff748ee44..8f37b7050a 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObjectId.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getMetricTrackingObjectId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getMetricTrackingObjectId-example) {#getMetricTrackingObjectId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getMetricTrackingObjectId' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getObject.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getObject.md index 923cf8bc13..023254c95c 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getObject.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOutboundPublicBandwidthUsage.md index 4919f855f1..62584f77e5 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOverBandwidthAllocationFlag.md index df8d434d73..4228fdbc2a 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getOverBandwidthAllocationFlag-example) {#getOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getPrivateNetworkOnlyHardware.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getPrivateNetworkOnlyHardware.md index 41eecea419..07ba980e4e 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getPrivateNetworkOnlyHardware.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getPrivateNetworkOnlyHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyHardware-example) {#getPrivateNetworkOnlyHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getPrivateNetworkOnlyHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedOverBandwidthAllocationFlag.md index f75dbc37e3..a71e4259d2 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getProjectedOverBandwidthAllocationFlag-example) {#getProjectedOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getProjectedOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedPublicBandwidthUsage.md index ba701ca4b2..e2f2dbb042 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getProjectedPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getProjectedPublicBandwidthUsage-example) {#getProjectedPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getProjectedPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getServiceProvider.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getServiceProvider.md index 3a42e0b0d2..a4c6a3d0ff 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getTotalBandwidthAllocated.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getTotalBandwidthAllocated.md index 728a7f5b54..2364d75f19 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getTotalBandwidthAllocated.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getTotalBandwidthAllocated.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getTotalBandwidthAllocated-example) {#getTotalBandwidthAllocated-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getTotalBandwidthAllocated' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVdrMemberRecurringFee.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVdrMemberRecurringFee.md index 0effa11ccc..d5fb88f093 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVdrMemberRecurringFee.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVdrMemberRecurringFee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getVdrMemberRecurringFee-example) {#getVdrMemberRecurringFee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getVdrMemberRecurringFee' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVirtualGuests.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVirtualGuests.md index e9b781a222..91589c6b77 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/reassignServers.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/reassignServers.md index 52e44a1ef2..e2863bff33 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/reassignServers.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/reassignServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#reassignServers-example) {#reassignServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/reassignServers' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrCancellation.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrCancellation.md index 0e8afc96b6..40db0ba9b3 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrCancellation.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrCancellation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#requestVdrCancellation-example) {#requestVdrCancellation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/requestVdrCancellation' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrContentUpdates.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrContentUpdates.md index 66ad0d8695..036ac4bb96 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrContentUpdates.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/requestVdrContentUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#requestVdrContentUpdates-example) {#requestVdrContentUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, SoftLayer_Hardware, SoftLayer_Virtual_Guest, SoftLayer_Virtual_Guest, int, SoftLayer_Network_Application_Delivery_Controller, SoftLayer_Network_Application_Delivery_Controller]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, SoftLayer_Hardware, SoftLayer_Virtual_Guest, SoftLayer_Virtual_Guest, int, SoftLayer_Network_Application_Delivery_Controller, SoftLayer_Network_Application_Delivery_Controller]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/requestVdrContentUpdates' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/setVdrContent.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/setVdrContent.md index 3d9eb9c1a0..fbf92b7d3c 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/setVdrContent.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/setVdrContent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#setVdrContent-example) {#setVdrContent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, SoftLayer_Hardware, SoftLayer_Virtual_Guest, SoftLayer_Network_Application_Delivery_Controller, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, SoftLayer_Hardware, SoftLayer_Virtual_Guest, SoftLayer_Network_Application_Delivery_Controller, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/setVdrContent' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/unassignServers.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/unassignServers.md index 0fd7fddc88..34e5e76a3e 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/unassignServers.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/unassignServers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#unassignServers-example) {#unassignServers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/unassignServers' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingServerMove.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingServerMove.md index b466cfa55b..f6abeb698b 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingServerMove.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingServerMove.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#voidPendingServerMove-example) {#voidPendingServerMove-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/voidPendingServerMove' ``` diff --git a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingVdrCancellation.md b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingVdrCancellation.md index 6b7293360e..3f6cbebab1 100644 --- a/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingVdrCancellation.md +++ b/content/reference/services/SoftLayer_Network_Bandwidth_Version1_Allotment/voidPendingVdrCancellation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Bandwidth_Version1_Allotment" --- -### Curl Example +# [REST Example](#voidPendingVdrCancellation-example) {#voidPendingVdrCancellation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Bandwidth_Version1_Allotment/{SoftLayer_Network_Bandwidth_Version1_AllotmentID}/voidPendingVdrCancellation' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getAccount.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getAccount.md index 293a99e977..621fa5cfe8 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getAccount.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Account" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Account/{SoftLayer_Network_CdnMarketplace_AccountID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getBillingItem.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getBillingItem.md index 5b46844737..f35dad1ef3 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Account" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Account/{SoftLayer_Network_CdnMarketplace_AccountID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getObject.md index c13ee72ead..d79c1504d1 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Account" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Account/{SoftLayer_Network_CdnMarketplace_AccountID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/verifyCdnAccountExists.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/verifyCdnAccountExists.md index 51951dccfb..3b8cc3b822 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/verifyCdnAccountExists.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Account/verifyCdnAccountExists.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Account" --- -### Curl Example +# [REST Example](#verifyCdnAccountExists-example) {#verifyCdnAccountExists-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Account/verifyCdnAccountExists' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/createGeoblocking.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/createGeoblocking.md index 4e2afd18d0..1b8841f0fc 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/createGeoblocking.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/createGeoblocking.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking" --- -### Curl Example +# [REST Example](#createGeoblocking-example) {#createGeoblocking-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/createGeoblocking' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/deleteGeoblocking.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/deleteGeoblocking.md index f98bad0a2a..ffb5e9133d 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/deleteGeoblocking.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/deleteGeoblocking.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking" --- -### Curl Example +# [REST Example](#deleteGeoblocking-example) {#deleteGeoblocking-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/deleteGeoblocking' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblocking.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblocking.md index 4afe40f04d..c8d0f93cf5 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblocking.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblocking.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking" --- -### Curl Example +# [REST Example](#getGeoblocking-example) {#getGeoblocking-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblocking' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblockingAllowedTypesAndRegions.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblockingAllowedTypesAndRegions.md index 0f5628d8ea..ecf2bd3efc 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblockingAllowedTypesAndRegions.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblockingAllowedTypesAndRegions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking" --- -### Curl Example +# [REST Example](#getGeoblockingAllowedTypesAndRegions-example) {#getGeoblockingAllowedTypesAndRegions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getGeoblockingAllowedTypesAndRegions' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getObject.md index 4cd5a04954..484b1e3958 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/{SoftLayer_Network_CdnMarketplace_Configuration_Behavior_GeoblockingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/updateGeoblocking.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/updateGeoblocking.md index 49044d673f..5611955c47 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/updateGeoblocking.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/updateGeoblocking.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking" --- -### Curl Example +# [REST Example](#updateGeoblocking-example) {#updateGeoblocking-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_Geoblocking/updateGeoblocking' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/createHotlinkProtection.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/createHotlinkProtection.md index 0aed044b61..70949350bd 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/createHotlinkProtection.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/createHotlinkProtection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection" --- -### Curl Example +# [REST Example](#createHotlinkProtection-example) {#createHotlinkProtection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/createHotlinkProtection' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/deleteHotlinkProtection.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/deleteHotlinkProtection.md index 6d211b2bb6..616be61f71 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/deleteHotlinkProtection.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/deleteHotlinkProtection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection" --- -### Curl Example +# [REST Example](#deleteHotlinkProtection-example) {#deleteHotlinkProtection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/deleteHotlinkProtection' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getHotlinkProtection.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getHotlinkProtection.md index 4c272e0536..f456a5cb2e 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getHotlinkProtection.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getHotlinkProtection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection" --- -### Curl Example +# [REST Example](#getHotlinkProtection-example) {#getHotlinkProtection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getHotlinkProtection' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getObject.md index b1c62a5082..17ee66be01 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/{SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtectionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/updateHotlinkProtection.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/updateHotlinkProtection.md index e6e10b4637..54e9fdae77 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/updateHotlinkProtection.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/updateHotlinkProtection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection" --- -### Curl Example +# [REST Example](#updateHotlinkProtection-example) {#updateHotlinkProtection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_HotlinkProtection/updateHotlinkProtection' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/createModifyResponseHeader.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/createModifyResponseHeader.md index 719c491a62..dc1e7562de 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/createModifyResponseHeader.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/createModifyResponseHeader.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader" --- -### Curl Example +# [REST Example](#createModifyResponseHeader-example) {#createModifyResponseHeader-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/createModifyResponseHeader' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/deleteModifyResponseHeader.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/deleteModifyResponseHeader.md index d044b73a9b..d0f2f611b7 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/deleteModifyResponseHeader.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/deleteModifyResponseHeader.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader" --- -### Curl Example +# [REST Example](#deleteModifyResponseHeader-example) {#deleteModifyResponseHeader-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/deleteModifyResponseHeader' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/getObject.md index 93aaa156b3..f217b2f90a 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/{SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeaderID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/listModifyResponseHeader.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/listModifyResponseHeader.md index 6ffee88786..62eb047326 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/listModifyResponseHeader.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/listModifyResponseHeader.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader" --- -### Curl Example +# [REST Example](#listModifyResponseHeader-example) {#listModifyResponseHeader-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/listModifyResponseHeader' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/updateModifyResponseHeader.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/updateModifyResponseHeader.md index ac08f87670..a2af016f93 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/updateModifyResponseHeader.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/updateModifyResponseHeader.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader" --- -### Curl Example +# [REST Example](#updateModifyResponseHeader-example) {#updateModifyResponseHeader-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_ModifyResponseHeader/updateModifyResponseHeader' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/createTokenAuthPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/createTokenAuthPath.md index 6d1e734644..b7843128d2 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/createTokenAuthPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/createTokenAuthPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth" --- -### Curl Example +# [REST Example](#createTokenAuthPath-example) {#createTokenAuthPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_TokenAuth]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_TokenAuth]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/createTokenAuthPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/deleteTokenAuthPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/deleteTokenAuthPath.md index 28b1666a3c..a52e869b41 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/deleteTokenAuthPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/deleteTokenAuthPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth" --- -### Curl Example +# [REST Example](#deleteTokenAuthPath-example) {#deleteTokenAuthPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/deleteTokenAuthPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/getObject.md index 914caaeab4..56391d5708 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/{SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuthID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/listTokenAuthPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/listTokenAuthPath.md index 6ae78f2d55..f96d42c344 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/listTokenAuthPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/listTokenAuthPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth" --- -### Curl Example +# [REST Example](#listTokenAuthPath-example) {#listTokenAuthPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/listTokenAuthPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/updateTokenAuthPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/updateTokenAuthPath.md index 4ffd233dff..f73a39f4ee 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/updateTokenAuthPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/updateTokenAuthPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth" --- -### Curl Example +# [REST Example](#updateTokenAuthPath-example) {#updateTokenAuthPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_TokenAuth]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Behavior_TokenAuth]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Behavior_TokenAuth/updateTokenAuthPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/createPurge.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/createPurge.md index 60bb55ab6c..8e2c8484c4 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/createPurge.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/createPurge.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge" --- -### Curl Example +# [REST Example](#createPurge-example) {#createPurge-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/createPurge' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getObject.md index 274d8ecd53..7100e39a1b 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/{SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeHistoryPerMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeHistoryPerMapping.md index 8a23a29257..813e71ae72 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeHistoryPerMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeHistoryPerMapping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge" --- -### Curl Example +# [REST Example](#getPurgeHistoryPerMapping-example) {#getPurgeHistoryPerMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeHistoryPerMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeStatus.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeStatus.md index f185e235ca..1e8672022c 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeStatus.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge" --- -### Curl Example +# [REST Example](#getPurgeStatus-example) {#getPurgeStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/getPurgeStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/saveOrUnsavePurgePath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/saveOrUnsavePurgePath.md index 333e993ea9..8251c263bb 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/saveOrUnsavePurgePath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/saveOrUnsavePurgePath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge" --- -### Curl Example +# [REST Example](#saveOrUnsavePurgePath-example) {#saveOrUnsavePurgePath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge/saveOrUnsavePurgePath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/createPurgeGroup.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/createPurgeGroup.md index 23d8c1a2b4..5d16b620d1 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/createPurgeGroup.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/createPurgeGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#createPurgeGroup-example) {#createPurgeGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/createPurgeGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getObject.md index f30531bacc..1f29f8bc77 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/{SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupByGroupId.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupByGroupId.md index 78667815a5..b511c0cc56 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupByGroupId.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupByGroupId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#getPurgeGroupByGroupId-example) {#getPurgeGroupByGroupId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupByGroupId' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupQuota.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupQuota.md index 428de8e044..0fc1a05e94 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupQuota.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupQuota.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#getPurgeGroupQuota-example) {#getPurgeGroupQuota-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/getPurgeGroupQuota' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listFavoriteGroup.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listFavoriteGroup.md index 8cbbbcbb79..492212d612 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listFavoriteGroup.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listFavoriteGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#listFavoriteGroup-example) {#listFavoriteGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listFavoriteGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listUnfavoriteGroup.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listUnfavoriteGroup.md index 7fd5855ca8..bac53d5771 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listUnfavoriteGroup.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listUnfavoriteGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#listUnfavoriteGroup-example) {#listUnfavoriteGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/listUnfavoriteGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/purgeByGroupIds.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/purgeByGroupIds.md index 638a38f1fc..4cd32068f8 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/purgeByGroupIds.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/purgeByGroupIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#purgeByGroupIds-example) {#purgeByGroupIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/purgeByGroupIds' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/removePurgeGroupFromFavorite.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/removePurgeGroupFromFavorite.md index 23028e7049..ab470f7c13 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/removePurgeGroupFromFavorite.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/removePurgeGroupFromFavorite.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#removePurgeGroupFromFavorite-example) {#removePurgeGroupFromFavorite-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/removePurgeGroupFromFavorite' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/savePurgeGroupAsFavorite.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/savePurgeGroupAsFavorite.md index bdcbba00da..3509d4ae5b 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/savePurgeGroupAsFavorite.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/savePurgeGroupAsFavorite.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup" --- -### Curl Example +# [REST Example](#savePurgeGroupAsFavorite-example) {#savePurgeGroupAsFavorite-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeGroup/savePurgeGroupAsFavorite' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/getObject.md index 99dc7fc609..a0aaebd1f7 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/{SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/listPurgeGroupHistory.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/listPurgeGroupHistory.md index 2c180b8732..f0b3face99 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/listPurgeGroupHistory.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/listPurgeGroupHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory" --- -### Curl Example +# [REST Example](#listPurgeGroupHistory-example) {#listPurgeGroupHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_PurgeHistory/listPurgeGroupHistory' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/createTimeToLive.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/createTimeToLive.md index d8f4c32c39..7805945de7 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/createTimeToLive.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/createTimeToLive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive" --- -### Curl Example +# [REST Example](#createTimeToLive-example) {#createTimeToLive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/createTimeToLive' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/deleteTimeToLive.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/deleteTimeToLive.md index f768e97e50..debff2cfdb 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/deleteTimeToLive.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/deleteTimeToLive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive" --- -### Curl Example +# [REST Example](#deleteTimeToLive-example) {#deleteTimeToLive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/deleteTimeToLive' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/getObject.md index 0de87bd33d..49f36777ea 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/{SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLiveID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/listTimeToLive.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/listTimeToLive.md index 39636318b6..6f437ed435 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/listTimeToLive.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/listTimeToLive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive" --- -### Curl Example +# [REST Example](#listTimeToLive-example) {#listTimeToLive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/listTimeToLive' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/updateTimeToLive.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/updateTimeToLive.md index 2760871b46..968ee3f63c 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/updateTimeToLive.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/updateTimeToLive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive" --- -### Curl Example +# [REST Example](#updateTimeToLive-example) {#updateTimeToLive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Cache_TimeToLive/updateTimeToLive' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/createDomainMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/createDomainMapping.md index bf9525b2ca..9831d58b5e 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/createDomainMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/createDomainMapping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#createDomainMapping-example) {#createDomainMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/createDomainMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/deleteDomainMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/deleteDomainMapping.md index 6476f451a2..aa77f562fc 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/deleteDomainMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/deleteDomainMapping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#deleteDomainMapping-example) {#deleteDomainMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/deleteDomainMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/getObject.md index 941c642f28..bd1e9b0203 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/{SoftLayer_Network_CdnMarketplace_Configuration_MappingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappingByUniqueId.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappingByUniqueId.md index 9b2e0b2fbb..17b356cdf5 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappingByUniqueId.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappingByUniqueId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#listDomainMappingByUniqueId-example) {#listDomainMappingByUniqueId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappingByUniqueId' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappings.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappings.md index 3d65805516..5460aeb61e 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappings.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#listDomainMappings-example) {#listDomainMappings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/listDomainMappings' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/retryHttpsActionRequest.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/retryHttpsActionRequest.md index 4580de59ef..bf7c228a3a 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/retryHttpsActionRequest.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/retryHttpsActionRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#retryHttpsActionRequest-example) {#retryHttpsActionRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/retryHttpsActionRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/startDomainMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/startDomainMapping.md index 603467d905..1d285be514 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/startDomainMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/startDomainMapping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#startDomainMapping-example) {#startDomainMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/startDomainMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/stopDomainMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/stopDomainMapping.md index 1332a705ce..1353bf2182 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/stopDomainMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/stopDomainMapping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#stopDomainMapping-example) {#stopDomainMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/stopDomainMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/updateDomainMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/updateDomainMapping.md index 1cac3c0488..9769e3c12d 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/updateDomainMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/updateDomainMapping.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#updateDomainMapping-example) {#updateDomainMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/updateDomainMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyCname.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyCname.md index 0cb84da688..120e1cad75 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyCname.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyCname.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#verifyCname-example) {#verifyCname-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyCname' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyDomainMapping.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyDomainMapping.md index f75b6458e1..039bc70403 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyDomainMapping.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyDomainMapping.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping" --- -### Curl Example +# [REST Example](#verifyDomainMapping-example) {#verifyDomainMapping-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping/verifyDomainMapping' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/createOriginPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/createOriginPath.md index 6be586aa2d..9a75718e0c 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/createOriginPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/createOriginPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path" --- -### Curl Example +# [REST Example](#createOriginPath-example) {#createOriginPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/createOriginPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/deleteOriginPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/deleteOriginPath.md index 192d7ed97d..03c460e7e1 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/deleteOriginPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/deleteOriginPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path" --- -### Curl Example +# [REST Example](#deleteOriginPath-example) {#deleteOriginPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/deleteOriginPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/getObject.md index debe3f9a78..5431f37cd6 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/{SoftLayer_Network_CdnMarketplace_Configuration_Mapping_PathID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/listOriginPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/listOriginPath.md index f44574712e..d75d1ec51b 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/listOriginPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/listOriginPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path" --- -### Curl Example +# [REST Example](#listOriginPath-example) {#listOriginPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/listOriginPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/updateOriginPath.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/updateOriginPath.md index 538faf17c2..7ebaeccfb7 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/updateOriginPath.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/updateOriginPath.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path" --- -### Curl Example +# [REST Example](#updateOriginPath-example) {#updateOriginPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_CdnMarketplace_Configuration_Input]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path/updateOriginPath' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerInvoicingMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerInvoicingMetrics.md index 5db0e7af7c..2dc02dfe23 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerInvoicingMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerInvoicingMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getCustomerInvoicingMetrics-example) {#getCustomerInvoicingMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerInvoicingMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerRealTimeMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerRealTimeMetrics.md index ae12921b47..3ca2d012e1 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerRealTimeMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerRealTimeMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getCustomerRealTimeMetrics-example) {#getCustomerRealTimeMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerRealTimeMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerUsageMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerUsageMetrics.md index 69379fa860..4db309100e 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerUsageMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerUsageMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getCustomerUsageMetrics-example) {#getCustomerUsageMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getCustomerUsageMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthByRegionMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthByRegionMetrics.md index b68727e3f5..b532de2768 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthByRegionMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthByRegionMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingBandwidthByRegionMetrics-example) {#getMappingBandwidthByRegionMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthByRegionMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthMetrics.md index ef11935c40..975fe8eb68 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingBandwidthMetrics-example) {#getMappingBandwidthMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingBandwidthMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsByTypeMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsByTypeMetrics.md index b13198fc50..aaee3c76af 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsByTypeMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsByTypeMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingHitsByTypeMetrics-example) {#getMappingHitsByTypeMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsByTypeMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsMetrics.md index fefce985e3..3ec6c29d62 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingHitsMetrics-example) {#getMappingHitsMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingHitsMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingIntegratedMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingIntegratedMetrics.md index ac1869692f..3135c4f3f4 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingIntegratedMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingIntegratedMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingIntegratedMetrics-example) {#getMappingIntegratedMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingIntegratedMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingRealTimeMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingRealTimeMetrics.md index b9005a9da6..63cab0a3e3 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingRealTimeMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingRealTimeMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingRealTimeMetrics-example) {#getMappingRealTimeMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingRealTimeMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingUsageMetrics.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingUsageMetrics.md index bbd0b78ff5..312a1386ca 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingUsageMetrics.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Metrics/getMappingUsageMetrics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Metrics" --- -### Curl Example +# [REST Example](#getMappingUsageMetrics-example) {#getMappingUsageMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Metrics/getMappingUsageMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/getObject.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/getObject.md index 2a765af245..500ecc5849 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/getObject.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Vendor" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Vendor/{SoftLayer_Network_CdnMarketplace_VendorID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/listVendors.md b/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/listVendors.md index d1de0b81ca..f8b360cc57 100644 --- a/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/listVendors.md +++ b/content/reference/services/SoftLayer_Network_CdnMarketplace_Vendor/listVendors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_CdnMarketplace_Vendor" --- -### Curl Example +# [REST Example](#listVendors-example) {#listVendors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_CdnMarketplace_Vendor/listVendors' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/addNetworkVlanTrunks.md b/content/reference/services/SoftLayer_Network_Component/addNetworkVlanTrunks.md index b15dafcc2a..cc65fb9764 100644 --- a/content/reference/services/SoftLayer_Network_Component/addNetworkVlanTrunks.md +++ b/content/reference/services/SoftLayer_Network_Component/addNetworkVlanTrunks.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#addNetworkVlanTrunks-example) {#addNetworkVlanTrunks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/addNetworkVlanTrunks' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/clearNetworkVlanTrunks.md b/content/reference/services/SoftLayer_Network_Component/clearNetworkVlanTrunks.md index d7c02e5618..52f26fd651 100644 --- a/content/reference/services/SoftLayer_Network_Component/clearNetworkVlanTrunks.md +++ b/content/reference/services/SoftLayer_Network_Component/clearNetworkVlanTrunks.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#clearNetworkVlanTrunks-example) {#clearNetworkVlanTrunks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/clearNetworkVlanTrunks' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getActiveCommand.md b/content/reference/services/SoftLayer_Network_Component/getActiveCommand.md index 719e28f428..9989365e59 100644 --- a/content/reference/services/SoftLayer_Network_Component/getActiveCommand.md +++ b/content/reference/services/SoftLayer_Network_Component/getActiveCommand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getActiveCommand-example) {#getActiveCommand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getActiveCommand' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getDownlinkComponent.md b/content/reference/services/SoftLayer_Network_Component/getDownlinkComponent.md index 26be8a106b..914daee68a 100644 --- a/content/reference/services/SoftLayer_Network_Component/getDownlinkComponent.md +++ b/content/reference/services/SoftLayer_Network_Component/getDownlinkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getDownlinkComponent-example) {#getDownlinkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getDownlinkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getDuplexMode.md b/content/reference/services/SoftLayer_Network_Component/getDuplexMode.md index 74befebcfd..3dd68c113d 100644 --- a/content/reference/services/SoftLayer_Network_Component/getDuplexMode.md +++ b/content/reference/services/SoftLayer_Network_Component/getDuplexMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getDuplexMode-example) {#getDuplexMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getDuplexMode' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getHardware.md b/content/reference/services/SoftLayer_Network_Component/getHardware.md index 79a3d94c9a..7456244c04 100644 --- a/content/reference/services/SoftLayer_Network_Component/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Component/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getHighAvailabilityFirewallFlag.md b/content/reference/services/SoftLayer_Network_Component/getHighAvailabilityFirewallFlag.md index f6aec76cd6..747a201596 100644 --- a/content/reference/services/SoftLayer_Network_Component/getHighAvailabilityFirewallFlag.md +++ b/content/reference/services/SoftLayer_Network_Component/getHighAvailabilityFirewallFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getHighAvailabilityFirewallFlag-example) {#getHighAvailabilityFirewallFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getHighAvailabilityFirewallFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getIpAddressBindings.md b/content/reference/services/SoftLayer_Network_Component/getIpAddressBindings.md index 5d64d57c34..f440fba01f 100644 --- a/content/reference/services/SoftLayer_Network_Component/getIpAddressBindings.md +++ b/content/reference/services/SoftLayer_Network_Component/getIpAddressBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getIpAddressBindings-example) {#getIpAddressBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getIpAddressBindings' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getIpAddresses.md b/content/reference/services/SoftLayer_Network_Component/getIpAddresses.md index 3590ecb3a1..cb71e3cfff 100644 --- a/content/reference/services/SoftLayer_Network_Component/getIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Component/getIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getIpAddresses-example) {#getIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getLastCommand.md b/content/reference/services/SoftLayer_Network_Component/getLastCommand.md index 595f1994b0..22e156f9e7 100644 --- a/content/reference/services/SoftLayer_Network_Component/getLastCommand.md +++ b/content/reference/services/SoftLayer_Network_Component/getLastCommand.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getLastCommand-example) {#getLastCommand-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getLastCommand' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Component/getMetricTrackingObject.md index 91e6897482..bf1221dba2 100644 --- a/content/reference/services/SoftLayer_Network_Component/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Component/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getNetworkComponentFirewall.md b/content/reference/services/SoftLayer_Network_Component/getNetworkComponentFirewall.md index af6d9f38b8..251f226784 100644 --- a/content/reference/services/SoftLayer_Network_Component/getNetworkComponentFirewall.md +++ b/content/reference/services/SoftLayer_Network_Component/getNetworkComponentFirewall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewall-example) {#getNetworkComponentFirewall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getNetworkComponentFirewall' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getNetworkComponentGroup.md b/content/reference/services/SoftLayer_Network_Component/getNetworkComponentGroup.md index 6b8f1a35be..4569b6cbc1 100644 --- a/content/reference/services/SoftLayer_Network_Component/getNetworkComponentGroup.md +++ b/content/reference/services/SoftLayer_Network_Component/getNetworkComponentGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkComponentGroup-example) {#getNetworkComponentGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getNetworkComponentGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getNetworkHardware.md b/content/reference/services/SoftLayer_Network_Component/getNetworkHardware.md index dc56305092..d431c54b1d 100644 --- a/content/reference/services/SoftLayer_Network_Component/getNetworkHardware.md +++ b/content/reference/services/SoftLayer_Network_Component/getNetworkHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkHardware-example) {#getNetworkHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getNetworkHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Component/getNetworkVlan.md index 893b167682..1399127a0a 100644 --- a/content/reference/services/SoftLayer_Network_Component/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Component/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getNetworkVlanTrunks.md b/content/reference/services/SoftLayer_Network_Component/getNetworkVlanTrunks.md index f6fee48363..481ad5515a 100644 --- a/content/reference/services/SoftLayer_Network_Component/getNetworkVlanTrunks.md +++ b/content/reference/services/SoftLayer_Network_Component/getNetworkVlanTrunks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkVlanTrunks-example) {#getNetworkVlanTrunks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getNetworkVlanTrunks' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getNetworkVlansTrunkable.md b/content/reference/services/SoftLayer_Network_Component/getNetworkVlansTrunkable.md index 109c330820..725376e8e7 100644 --- a/content/reference/services/SoftLayer_Network_Component/getNetworkVlansTrunkable.md +++ b/content/reference/services/SoftLayer_Network_Component/getNetworkVlansTrunkable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkVlansTrunkable-example) {#getNetworkVlansTrunkable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getNetworkVlansTrunkable' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getObject.md b/content/reference/services/SoftLayer_Network_Component/getObject.md index 4d776fd08b..90a642be1d 100644 --- a/content/reference/services/SoftLayer_Network_Component/getObject.md +++ b/content/reference/services/SoftLayer_Network_Component/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getPortStatistics.md b/content/reference/services/SoftLayer_Network_Component/getPortStatistics.md index 917e14e6e7..d992c4a276 100644 --- a/content/reference/services/SoftLayer_Network_Component/getPortStatistics.md +++ b/content/reference/services/SoftLayer_Network_Component/getPortStatistics.md @@ -24,8 +24,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getPortStatistics-example) {#getPortStatistics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getPortStatistics' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getPrimaryIpAddressRecord.md b/content/reference/services/SoftLayer_Network_Component/getPrimaryIpAddressRecord.md index 67cc9ae513..fb00579e26 100644 --- a/content/reference/services/SoftLayer_Network_Component/getPrimaryIpAddressRecord.md +++ b/content/reference/services/SoftLayer_Network_Component/getPrimaryIpAddressRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getPrimaryIpAddressRecord-example) {#getPrimaryIpAddressRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getPrimaryIpAddressRecord' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getPrimarySubnet.md b/content/reference/services/SoftLayer_Network_Component/getPrimarySubnet.md index bef81248fd..3ec88a38bd 100644 --- a/content/reference/services/SoftLayer_Network_Component/getPrimarySubnet.md +++ b/content/reference/services/SoftLayer_Network_Component/getPrimarySubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getPrimarySubnet-example) {#getPrimarySubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getPrimarySubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getPrimaryVersion6IpAddressRecord.md b/content/reference/services/SoftLayer_Network_Component/getPrimaryVersion6IpAddressRecord.md index 645ad15706..f2dfc957b3 100644 --- a/content/reference/services/SoftLayer_Network_Component/getPrimaryVersion6IpAddressRecord.md +++ b/content/reference/services/SoftLayer_Network_Component/getPrimaryVersion6IpAddressRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getPrimaryVersion6IpAddressRecord-example) {#getPrimaryVersion6IpAddressRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getPrimaryVersion6IpAddressRecord' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getRecentCommands.md b/content/reference/services/SoftLayer_Network_Component/getRecentCommands.md index 61d5a857cd..68ebd6bf93 100644 --- a/content/reference/services/SoftLayer_Network_Component/getRecentCommands.md +++ b/content/reference/services/SoftLayer_Network_Component/getRecentCommands.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getRecentCommands-example) {#getRecentCommands-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getRecentCommands' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getRedundancyCapableFlag.md b/content/reference/services/SoftLayer_Network_Component/getRedundancyCapableFlag.md index 725585ef84..04d6de6188 100644 --- a/content/reference/services/SoftLayer_Network_Component/getRedundancyCapableFlag.md +++ b/content/reference/services/SoftLayer_Network_Component/getRedundancyCapableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getRedundancyCapableFlag-example) {#getRedundancyCapableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getRedundancyCapableFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getRedundancyEnabledFlag.md b/content/reference/services/SoftLayer_Network_Component/getRedundancyEnabledFlag.md index 0a3d7e57da..eb5d54d1d2 100644 --- a/content/reference/services/SoftLayer_Network_Component/getRedundancyEnabledFlag.md +++ b/content/reference/services/SoftLayer_Network_Component/getRedundancyEnabledFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getRedundancyEnabledFlag-example) {#getRedundancyEnabledFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getRedundancyEnabledFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getRemoteManagementUsers.md b/content/reference/services/SoftLayer_Network_Component/getRemoteManagementUsers.md index 7303722c08..c8ded4e3aa 100644 --- a/content/reference/services/SoftLayer_Network_Component/getRemoteManagementUsers.md +++ b/content/reference/services/SoftLayer_Network_Component/getRemoteManagementUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getRemoteManagementUsers-example) {#getRemoteManagementUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getRemoteManagementUsers' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getRouter.md b/content/reference/services/SoftLayer_Network_Component/getRouter.md index e0334ae1ee..f601ff761b 100644 --- a/content/reference/services/SoftLayer_Network_Component/getRouter.md +++ b/content/reference/services/SoftLayer_Network_Component/getRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getRouter-example) {#getRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getRouter' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getStorageNetworkFlag.md b/content/reference/services/SoftLayer_Network_Component/getStorageNetworkFlag.md index 4e151ca640..cf9b90f6ce 100644 --- a/content/reference/services/SoftLayer_Network_Component/getStorageNetworkFlag.md +++ b/content/reference/services/SoftLayer_Network_Component/getStorageNetworkFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getStorageNetworkFlag-example) {#getStorageNetworkFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getStorageNetworkFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getSubnets.md b/content/reference/services/SoftLayer_Network_Component/getSubnets.md index fe32283053..c852e8d52b 100644 --- a/content/reference/services/SoftLayer_Network_Component/getSubnets.md +++ b/content/reference/services/SoftLayer_Network_Component/getSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getSubnets-example) {#getSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getUplinkComponent.md b/content/reference/services/SoftLayer_Network_Component/getUplinkComponent.md index cfcc47e7b9..52d00a5a91 100644 --- a/content/reference/services/SoftLayer_Network_Component/getUplinkComponent.md +++ b/content/reference/services/SoftLayer_Network_Component/getUplinkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getUplinkComponent-example) {#getUplinkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getUplinkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/getUplinkDuplexMode.md b/content/reference/services/SoftLayer_Network_Component/getUplinkDuplexMode.md index 733581a5a1..ce3bc1271d 100644 --- a/content/reference/services/SoftLayer_Network_Component/getUplinkDuplexMode.md +++ b/content/reference/services/SoftLayer_Network_Component/getUplinkDuplexMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#getUplinkDuplexMode-example) {#getUplinkDuplexMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/getUplinkDuplexMode' ``` diff --git a/content/reference/services/SoftLayer_Network_Component/removeNetworkVlanTrunks.md b/content/reference/services/SoftLayer_Network_Component/removeNetworkVlanTrunks.md index bbc4dd2730..96ca7857f5 100644 --- a/content/reference/services/SoftLayer_Network_Component/removeNetworkVlanTrunks.md +++ b/content/reference/services/SoftLayer_Network_Component/removeNetworkVlanTrunks.md @@ -23,8 +23,8 @@ layout: "method" mainService : "SoftLayer_Network_Component" --- -### Curl Example +# [REST Example](#removeNetworkVlanTrunks-example) {#removeNetworkVlanTrunks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component/{SoftLayer_Network_ComponentID}/removeNetworkVlanTrunks' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getApplyServerRuleSubnets.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getApplyServerRuleSubnets.md index 2adbb9d4d6..7aa29a692e 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getApplyServerRuleSubnets.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getApplyServerRuleSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getApplyServerRuleSubnets-example) {#getApplyServerRuleSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getApplyServerRuleSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getBillingItem.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getBillingItem.md index 15a6121823..017d1239c2 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getGuestNetworkComponent.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getGuestNetworkComponent.md index ae93a8b26d..f8d8e053de 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getGuestNetworkComponent.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getGuestNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getGuestNetworkComponent-example) {#getGuestNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getGuestNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkComponent.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkComponent.md index e5c6763f6d..c9d49c0ebe 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkComponent.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getNetworkComponent-example) {#getNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkFirewallUpdateRequest.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkFirewallUpdateRequest.md index cbe37e29b2..de1f5f0aa9 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkFirewallUpdateRequest.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getNetworkFirewallUpdateRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getNetworkFirewallUpdateRequest-example) {#getNetworkFirewallUpdateRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getNetworkFirewallUpdateRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getObject.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getObject.md index aa5f19906d..b1001cc487 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getObject.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getRules.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getRules.md index 88d5a5153f..8c4110d513 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getRules.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/getSubnets.md b/content/reference/services/SoftLayer_Network_Component_Firewall/getSubnets.md index ed8b40e28e..a100cd99d1 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/getSubnets.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/getSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#getSubnets-example) {#getSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/getSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Component_Firewall/hasActiveTransactions.md b/content/reference/services/SoftLayer_Network_Component_Firewall/hasActiveTransactions.md index 081deffe8d..15a250b8e0 100644 --- a/content/reference/services/SoftLayer_Network_Component_Firewall/hasActiveTransactions.md +++ b/content/reference/services/SoftLayer_Network_Component_Firewall/hasActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Component_Firewall" --- -### Curl Example +# [REST Example](#hasActiveTransactions-example) {#hasActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Component_Firewall/{SoftLayer_Network_Component_FirewallID}/hasActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Network_Customer_Subnet/createObject.md b/content/reference/services/SoftLayer_Network_Customer_Subnet/createObject.md index 7d2931ce8f..13f6776dd4 100644 --- a/content/reference/services/SoftLayer_Network_Customer_Subnet/createObject.md +++ b/content/reference/services/SoftLayer_Network_Customer_Subnet/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Customer_Subnet" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Customer_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Customer_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Customer_Subnet/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Customer_Subnet/getIpAddresses.md b/content/reference/services/SoftLayer_Network_Customer_Subnet/getIpAddresses.md index 3587366d65..ed2e04845c 100644 --- a/content/reference/services/SoftLayer_Network_Customer_Subnet/getIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Customer_Subnet/getIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Customer_Subnet" --- -### Curl Example +# [REST Example](#getIpAddresses-example) {#getIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Customer_Subnet/{SoftLayer_Network_Customer_SubnetID}/getIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Customer_Subnet/getObject.md b/content/reference/services/SoftLayer_Network_Customer_Subnet/getObject.md index 8ef70c92dd..1ceb96d703 100644 --- a/content/reference/services/SoftLayer_Network_Customer_Subnet/getObject.md +++ b/content/reference/services/SoftLayer_Network_Customer_Subnet/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Customer_Subnet" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Customer_Subnet/{SoftLayer_Network_Customer_SubnetID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_Location/getAllObjects.md b/content/reference/services/SoftLayer_Network_DirectLink_Location/getAllObjects.md index 45a552027f..36fad770c5 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_Location/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_Location/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_Location" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_Location/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_Location/getLocation.md b/content/reference/services/SoftLayer_Network_DirectLink_Location/getLocation.md index c9e2c76d8c..107fd31aa4 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_Location/getLocation.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_Location/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_Location" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_Location/{SoftLayer_Network_DirectLink_LocationID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_Location/getObject.md b/content/reference/services/SoftLayer_Network_DirectLink_Location/getObject.md index b5effb5275..65fb774498 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_Location/getObject.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_Location/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_Location" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_Location/{SoftLayer_Network_DirectLink_LocationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_Location/getProvider.md b/content/reference/services/SoftLayer_Network_DirectLink_Location/getProvider.md index 676e11e9d7..783c9027bd 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_Location/getProvider.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_Location/getProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_Location" --- -### Curl Example +# [REST Example](#getProvider-example) {#getProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_Location/{SoftLayer_Network_DirectLink_LocationID}/getProvider' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_Location/getServiceType.md b/content/reference/services/SoftLayer_Network_DirectLink_Location/getServiceType.md index cc3368df41..533e31e734 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_Location/getServiceType.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_Location/getServiceType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_Location" --- -### Curl Example +# [REST Example](#getServiceType-example) {#getServiceType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_Location/{SoftLayer_Network_DirectLink_LocationID}/getServiceType' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_Provider/getObject.md b/content/reference/services/SoftLayer_Network_DirectLink_Provider/getObject.md index 6977a3df6f..d7c0838c19 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_Provider/getObject.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_Provider/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_Provider" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_Provider/{SoftLayer_Network_DirectLink_ProviderID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_DirectLink_ServiceType/getObject.md b/content/reference/services/SoftLayer_Network_DirectLink_ServiceType/getObject.md index f47650e7b8..17d045e466 100644 --- a/content/reference/services/SoftLayer_Network_DirectLink_ServiceType/getObject.md +++ b/content/reference/services/SoftLayer_Network_DirectLink_ServiceType/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_DirectLink_ServiceType" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_DirectLink_ServiceType/{SoftLayer_Network_DirectLink_ServiceTypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkFirewallUpdateRequests.md b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkFirewallUpdateRequests.md index c1cd8ba556..3972fcc7ee 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkFirewallUpdateRequests.md +++ b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkFirewallUpdateRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_AccessControlList" --- -### Curl Example +# [REST Example](#getNetworkFirewallUpdateRequests-example) {#getNetworkFirewallUpdateRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_AccessControlList/{SoftLayer_Network_Firewall_AccessControlListID}/getNetworkFirewallUpdateRequests' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkVlan.md index 9ac0fdd75e..efb2a8c1d2 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_AccessControlList" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_AccessControlList/{SoftLayer_Network_Firewall_AccessControlListID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getObject.md b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getObject.md index 49704e7a20..9ba2736440 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_AccessControlList" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_AccessControlList/{SoftLayer_Network_Firewall_AccessControlListID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getRules.md b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getRules.md index bfb6af622f..6b5ecd6fd4 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getRules.md +++ b/content/reference/services/SoftLayer_Network_Firewall_AccessControlList/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_AccessControlList" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_AccessControlList/{SoftLayer_Network_Firewall_AccessControlListID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Interface/getFirewallContextAccessControlLists.md b/content/reference/services/SoftLayer_Network_Firewall_Interface/getFirewallContextAccessControlLists.md index bb66a3cb30..3e0012deb6 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Interface/getFirewallContextAccessControlLists.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Interface/getFirewallContextAccessControlLists.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Interface" --- -### Curl Example +# [REST Example](#getFirewallContextAccessControlLists-example) {#getFirewallContextAccessControlLists-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Interface/{SoftLayer_Network_Firewall_InterfaceID}/getFirewallContextAccessControlLists' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Interface/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Firewall_Interface/getNetworkVlan.md index 792e4d176d..26e9d4e607 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Interface/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Interface/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Interface" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Interface/{SoftLayer_Network_Firewall_InterfaceID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Interface/getObject.md b/content/reference/services/SoftLayer_Network_Firewall_Interface/getObject.md index 85d63ec123..cf8078b5d5 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Interface/getObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Interface/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Interface" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Interface/{SoftLayer_Network_Firewall_InterfaceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getFirewallContextAccessControlLists.md b/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getFirewallContextAccessControlLists.md index 3abfc00ed7..e402e4ba5b 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getFirewallContextAccessControlLists.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getFirewallContextAccessControlLists.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Module_Context_Interface" --- -### Curl Example +# [REST Example](#getFirewallContextAccessControlLists-example) {#getFirewallContextAccessControlLists-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Module_Context_Interface/{SoftLayer_Network_Firewall_Module_Context_InterfaceID}/getFirewallContextAccessControlLists' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getNetworkVlan.md index 306e1be83a..62c239f796 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Module_Context_Interface" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Module_Context_Interface/{SoftLayer_Network_Firewall_Module_Context_InterfaceID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getObject.md b/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getObject.md index 4c9bb71b07..b0693b604b 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Module_Context_Interface/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Module_Context_Interface" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Module_Context_Interface/{SoftLayer_Network_Firewall_Module_Context_InterfaceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Template/getAllObjects.md b/content/reference/services/SoftLayer_Network_Firewall_Template/getAllObjects.md index da1bd12c7e..159150f3ed 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Template/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Template/getAllObjects.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Template" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Template/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Template/getObject.md b/content/reference/services/SoftLayer_Network_Firewall_Template/getObject.md index 4fe97d3c46..9dc035790e 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Template/getObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Template/getObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Template" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Template/{SoftLayer_Network_Firewall_TemplateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Template/getRules.md b/content/reference/services/SoftLayer_Network_Firewall_Template/getRules.md index e7c956a184..b42e8a2156 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Template/getRules.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Template/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Template" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Template/{SoftLayer_Network_Firewall_TemplateID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/createObject.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/createObject.md index 55f9ec5adf..07504eeea2 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/createObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Firewall_Update_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Firewall_Update_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getAuthorizingUser.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getAuthorizingUser.md index b731a58278..548db5bc05 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getAuthorizingUser.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getAuthorizingUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getAuthorizingUser-example) {#getAuthorizingUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/{SoftLayer_Network_Firewall_Update_RequestID}/getAuthorizingUser' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getFirewallUpdateRequestRuleAttributes.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getFirewallUpdateRequestRuleAttributes.md index 45dbb21dee..ae37e3fc97 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getFirewallUpdateRequestRuleAttributes.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getFirewallUpdateRequestRuleAttributes.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getFirewallUpdateRequestRuleAttributes-example) {#getFirewallUpdateRequestRuleAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/getFirewallUpdateRequestRuleAttributes' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getGuest.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getGuest.md index 3c63ce94a5..8d7939ed45 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getGuest.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getGuest-example) {#getGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/{SoftLayer_Network_Firewall_Update_RequestID}/getGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getHardware.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getHardware.md index 5cc126f166..5adc10b4ad 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/{SoftLayer_Network_Firewall_Update_RequestID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getNetworkComponentFirewall.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getNetworkComponentFirewall.md index 708f58170a..cd27881069 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getNetworkComponentFirewall.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getNetworkComponentFirewall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewall-example) {#getNetworkComponentFirewall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/{SoftLayer_Network_Firewall_Update_RequestID}/getNetworkComponentFirewall' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getObject.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getObject.md index 69729c2032..bb3cd0c72d 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/{SoftLayer_Network_Firewall_Update_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getRules.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getRules.md index 972d7d2b61..3f3c4ac67a 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getRules.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/{SoftLayer_Network_Firewall_Update_RequestID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/updateRuleNote.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/updateRuleNote.md index a520d4f4da..5439904292 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request/updateRuleNote.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request/updateRuleNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request" --- -### Curl Example +# [REST Example](#updateRuleNote-example) {#updateRuleNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Component_Firewall_Rule, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Component_Firewall_Rule, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request/updateRuleNote' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/createObject.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/createObject.md index 1ce926c233..e3d6f4d38e 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/createObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request_Rule" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Firewall_Update_Request_Rule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Firewall_Update_Request_Rule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request_Rule/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getFirewallUpdateRequest.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getFirewallUpdateRequest.md index 2a8faf6d1f..5cda1ab8e2 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getFirewallUpdateRequest.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getFirewallUpdateRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request_Rule" --- -### Curl Example +# [REST Example](#getFirewallUpdateRequest-example) {#getFirewallUpdateRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request_Rule/{SoftLayer_Network_Firewall_Update_Request_RuleID}/getFirewallUpdateRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getObject.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getObject.md index 32fd2dbda3..0b345d1877 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getObject.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request_Rule" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request_Rule/{SoftLayer_Network_Firewall_Update_Request_RuleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/validateRule.md b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/validateRule.md index 6cddb78f2b..2c1c740daa 100644 --- a/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/validateRule.md +++ b/content/reference/services/SoftLayer_Network_Firewall_Update_Request_Rule/validateRule.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Firewall_Update_Request_Rule" --- -### Curl Example +# [REST Example](#validateRule-example) {#validateRule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Firewall_Update_Request_Rule, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Firewall_Update_Request_Rule, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Firewall_Update_Request_Rule/validateRule' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/bypassAllVlans.md b/content/reference/services/SoftLayer_Network_Gateway/bypassAllVlans.md index a0d8d8210d..4daeafe948 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/bypassAllVlans.md +++ b/content/reference/services/SoftLayer_Network_Gateway/bypassAllVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#bypassAllVlans-example) {#bypassAllVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/bypassAllVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/bypassVlans.md b/content/reference/services/SoftLayer_Network_Gateway/bypassVlans.md index 7f813405c7..26c4e58206 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/bypassVlans.md +++ b/content/reference/services/SoftLayer_Network_Gateway/bypassVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#bypassVlans-example) {#bypassVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/bypassVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/changeGatewayVersion.md b/content/reference/services/SoftLayer_Network_Gateway/changeGatewayVersion.md index ab2210392a..b0e41ea3e4 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/changeGatewayVersion.md +++ b/content/reference/services/SoftLayer_Network_Gateway/changeGatewayVersion.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#changeGatewayVersion-example) {#changeGatewayVersion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/changeGatewayVersion' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/checkAccountWhiteList.md b/content/reference/services/SoftLayer_Network_Gateway/checkAccountWhiteList.md index 6532be25ab..eecc80d5e7 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/checkAccountWhiteList.md +++ b/content/reference/services/SoftLayer_Network_Gateway/checkAccountWhiteList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#checkAccountWhiteList-example) {#checkAccountWhiteList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/checkAccountWhiteList' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/createObject.md b/content/reference/services/SoftLayer_Network_Gateway/createObject.md index 7c47faf12b..97a205634d 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/createObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/editObject.md b/content/reference/services/SoftLayer_Network_Gateway/editObject.md index fad2ba2a09..e258b04849 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/editObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/forceRebuildCluster.md b/content/reference/services/SoftLayer_Network_Gateway/forceRebuildCluster.md index 272bfd63dd..8675349487 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/forceRebuildCluster.md +++ b/content/reference/services/SoftLayer_Network_Gateway/forceRebuildCluster.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#forceRebuildCluster-example) {#forceRebuildCluster-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/forceRebuildCluster' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getAccount.md b/content/reference/services/SoftLayer_Network_Gateway/getAccount.md index 9cfbe573b9..0ff3edc980 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getAllowedOsPriceIds.md b/content/reference/services/SoftLayer_Network_Gateway/getAllowedOsPriceIds.md index c09697f8d5..252658f550 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getAllowedOsPriceIds.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getAllowedOsPriceIds.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getAllowedOsPriceIds-example) {#getAllowedOsPriceIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getAllowedOsPriceIds' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getCapacity.md b/content/reference/services/SoftLayer_Network_Gateway/getCapacity.md index fe22d09201..51f471d0a9 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getCapacity.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getCapacity.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getCapacity-example) {#getCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getCapacity' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getInsideVlans.md b/content/reference/services/SoftLayer_Network_Gateway/getInsideVlans.md index ce16783d66..87585e8cbe 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getInsideVlans.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getInsideVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getInsideVlans-example) {#getInsideVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getInsideVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getManufacturer.md b/content/reference/services/SoftLayer_Network_Gateway/getManufacturer.md index 83c50878dd..660bc3adb6 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getManufacturer.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getManufacturer.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getManufacturer-example) {#getManufacturer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getManufacturer' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getMemberGatewayImagesMatch.md b/content/reference/services/SoftLayer_Network_Gateway/getMemberGatewayImagesMatch.md index 7196e771ed..91fd9c8c5d 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getMemberGatewayImagesMatch.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getMemberGatewayImagesMatch.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getMemberGatewayImagesMatch-example) {#getMemberGatewayImagesMatch-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getMemberGatewayImagesMatch' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getMembers.md b/content/reference/services/SoftLayer_Network_Gateway/getMembers.md index 030dc7b1d7..ac5485f9c4 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getMembers.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getMembers-example) {#getMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewall.md b/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewall.md index 197c9b6b2b..03a77c5ddd 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewall.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getNetworkFirewall-example) {#getNetworkFirewall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getNetworkFirewall' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewallFlag.md b/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewallFlag.md index cefb863cc1..d1d6338f5a 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewallFlag.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getNetworkFirewallFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getNetworkFirewallFlag-example) {#getNetworkFirewallFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getNetworkFirewallFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getObject.md b/content/reference/services/SoftLayer_Network_Gateway/getObject.md index 1c00af9188..e95f731155 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getPossibleInsideVlans.md b/content/reference/services/SoftLayer_Network_Gateway/getPossibleInsideVlans.md index 60a060566a..6767721ac6 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getPossibleInsideVlans.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getPossibleInsideVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getPossibleInsideVlans-example) {#getPossibleInsideVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getPossibleInsideVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getPrivateIpAddress.md b/content/reference/services/SoftLayer_Network_Gateway/getPrivateIpAddress.md index f391971b0b..cce0bd177a 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getPrivateIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getPrivateIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getPrivateIpAddress-example) {#getPrivateIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getPrivateIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getPrivateVlan.md b/content/reference/services/SoftLayer_Network_Gateway/getPrivateVlan.md index d0d90c3f67..c381914f46 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getPrivateVlan.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getPrivateVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getPrivateVlan-example) {#getPrivateVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getPrivateVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getPublicIpAddress.md b/content/reference/services/SoftLayer_Network_Gateway/getPublicIpAddress.md index cc6714d8ab..11041ae6b7 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getPublicIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getPublicIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getPublicIpAddress-example) {#getPublicIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getPublicIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getPublicIpv6Address.md b/content/reference/services/SoftLayer_Network_Gateway/getPublicIpv6Address.md index a427cf85d6..6a4746bbd7 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getPublicIpv6Address.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getPublicIpv6Address.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getPublicIpv6Address-example) {#getPublicIpv6Address-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getPublicIpv6Address' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getPublicVlan.md b/content/reference/services/SoftLayer_Network_Gateway/getPublicVlan.md index 4522bb801a..7c7c6d4ac4 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getPublicVlan.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getPublicVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getPublicVlan-example) {#getPublicVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getPublicVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getRollbackSupport.md b/content/reference/services/SoftLayer_Network_Gateway/getRollbackSupport.md index 0739be3393..b3fff22f59 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getRollbackSupport.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getRollbackSupport.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getRollbackSupport-example) {#getRollbackSupport-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getRollbackSupport' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getStatus.md b/content/reference/services/SoftLayer_Network_Gateway/getStatus.md index 4260e3304b..db45954af3 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getStatus.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Network_Gateway/getUpgradeItemPrices.md index 79a3da9e65..dba730e51b 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Network_Gateway/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/isAccountWhiteListed.md b/content/reference/services/SoftLayer_Network_Gateway/isAccountWhiteListed.md index 272cc95d74..4f5c9d2630 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/isAccountWhiteListed.md +++ b/content/reference/services/SoftLayer_Network_Gateway/isAccountWhiteListed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#isAccountWhiteListed-example) {#isAccountWhiteListed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/isAccountWhiteListed' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/isLicenseServerAllowed.md b/content/reference/services/SoftLayer_Network_Gateway/isLicenseServerAllowed.md index 44f09a6758..4f790d8493 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/isLicenseServerAllowed.md +++ b/content/reference/services/SoftLayer_Network_Gateway/isLicenseServerAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#isLicenseServerAllowed-example) {#isLicenseServerAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/isLicenseServerAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/isRollbackAllowed.md b/content/reference/services/SoftLayer_Network_Gateway/isRollbackAllowed.md index f5e941bc04..8a2dd237c3 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/isRollbackAllowed.md +++ b/content/reference/services/SoftLayer_Network_Gateway/isRollbackAllowed.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#isRollbackAllowed-example) {#isRollbackAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/isRollbackAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/manageLicenses.md b/content/reference/services/SoftLayer_Network_Gateway/manageLicenses.md index 50f805d3cd..353edcef5f 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/manageLicenses.md +++ b/content/reference/services/SoftLayer_Network_Gateway/manageLicenses.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#manageLicenses-example) {#manageLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/manageLicenses' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/rebuildHACluster.md b/content/reference/services/SoftLayer_Network_Gateway/rebuildHACluster.md index 0ca214f0db..12af517043 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/rebuildHACluster.md +++ b/content/reference/services/SoftLayer_Network_Gateway/rebuildHACluster.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#rebuildHACluster-example) {#rebuildHACluster-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/rebuildHACluster' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/rebuildvSRXHACluster.md b/content/reference/services/SoftLayer_Network_Gateway/rebuildvSRXHACluster.md index c1064f5d9c..15de0c2f91 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/rebuildvSRXHACluster.md +++ b/content/reference/services/SoftLayer_Network_Gateway/rebuildvSRXHACluster.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#rebuildvSRXHACluster-example) {#rebuildvSRXHACluster-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/rebuildvSRXHACluster' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/refreshGatewayLicense.md b/content/reference/services/SoftLayer_Network_Gateway/refreshGatewayLicense.md index 7218aeeba3..1dce574f5a 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/refreshGatewayLicense.md +++ b/content/reference/services/SoftLayer_Network_Gateway/refreshGatewayLicense.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#refreshGatewayLicense-example) {#refreshGatewayLicense-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/refreshGatewayLicense' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/rename.md b/content/reference/services/SoftLayer_Network_Gateway/rename.md index fb1f9aa514..c4639847f5 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/rename.md +++ b/content/reference/services/SoftLayer_Network_Gateway/rename.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#rename-example) {#rename-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/rename' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/setGatewayPassword.md b/content/reference/services/SoftLayer_Network_Gateway/setGatewayPassword.md index 419ef95513..b1396f2b65 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/setGatewayPassword.md +++ b/content/reference/services/SoftLayer_Network_Gateway/setGatewayPassword.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#setGatewayPassword-example) {#setGatewayPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/setGatewayPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/unbypassAllVlans.md b/content/reference/services/SoftLayer_Network_Gateway/unbypassAllVlans.md index e74fdd5057..1622a87ffe 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/unbypassAllVlans.md +++ b/content/reference/services/SoftLayer_Network_Gateway/unbypassAllVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#unbypassAllVlans-example) {#unbypassAllVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/unbypassAllVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/unbypassVlans.md b/content/reference/services/SoftLayer_Network_Gateway/unbypassVlans.md index 2b692e7fde..8dac305a33 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/unbypassVlans.md +++ b/content/reference/services/SoftLayer_Network_Gateway/unbypassVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#unbypassVlans-example) {#unbypassVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/unbypassVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway/updateGatewayUserPassword.md b/content/reference/services/SoftLayer_Network_Gateway/updateGatewayUserPassword.md index a4e57ee3d9..f97457baa7 100644 --- a/content/reference/services/SoftLayer_Network_Gateway/updateGatewayUserPassword.md +++ b/content/reference/services/SoftLayer_Network_Gateway/updateGatewayUserPassword.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway" --- -### Curl Example +# [REST Example](#updateGatewayUserPassword-example) {#updateGatewayUserPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member_Passwords]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member_Passwords]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway/{SoftLayer_Network_GatewayID}/updateGatewayUserPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/createObject.md b/content/reference/services/SoftLayer_Network_Gateway_Member/createObject.md index 633ab1d75c..34249797e1 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/createObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/createObjects.md b/content/reference/services/SoftLayer_Network_Gateway_Member/createObjects.md index 1d68dde7b9..55287d0d57 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/createObjects.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/editObject.md b/content/reference/services/SoftLayer_Network_Gateway_Member/editObject.md index 5a909754b6..340fc4e1d4 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/editObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Member]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getAttributes.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getAttributes.md index 5053f7e045..71b81429ad 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getAttributes.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getGatewaySoftwareDescription.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getGatewaySoftwareDescription.md index 71a15325e8..14a618e2eb 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getGatewaySoftwareDescription.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getGatewaySoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getGatewaySoftwareDescription-example) {#getGatewaySoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getGatewaySoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getHardware.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getHardware.md index 087af3803c..83a54b07e1 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getLicenses.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getLicenses.md index 41cc52a729..0e8ebf1a3b 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getLicenses.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getLicenses-example) {#getLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getLicenses' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getNetworkGateway.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getNetworkGateway.md index e6345c5b1b..ef94a00dea 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getNetworkGateway.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getNetworkGateway.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getNetworkGateway-example) {#getNetworkGateway-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getNetworkGateway' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getObject.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getObject.md index 6ceae85345..9770d67f94 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getPasswords.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getPasswords.md index a557d72631..bbc35e356b 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getPasswords.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getPasswords-example) {#getPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getPasswords' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member/getPublicIpAddress.md b/content/reference/services/SoftLayer_Network_Gateway_Member/getPublicIpAddress.md index f7dff8785f..037a903aec 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member/getPublicIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member/getPublicIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member" --- -### Curl Example +# [REST Example](#getPublicIpAddress-example) {#getPublicIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member/{SoftLayer_Network_Gateway_MemberID}/getPublicIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getGatewayMember.md b/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getGatewayMember.md index 4e97703d6b..e2ef93e615 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getGatewayMember.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getGatewayMember.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member_Attribute" --- -### Curl Example +# [REST Example](#getGatewayMember-example) {#getGatewayMember-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member_Attribute/{SoftLayer_Network_Gateway_Member_AttributeID}/getGatewayMember' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getObject.md b/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getObject.md index ea5b0baa87..7917a84469 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Member_Attribute/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Member_Attribute" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Member_Attribute/{SoftLayer_Network_Gateway_Member_AttributeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Precheck/getObject.md b/content/reference/services/SoftLayer_Network_Gateway_Precheck/getObject.md index 92859245e1..4c09f21506 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Precheck/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Precheck/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Precheck" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Precheck/{SoftLayer_Network_Gateway_PrecheckID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Precheck/getPrecheckStatus.md b/content/reference/services/SoftLayer_Network_Gateway_Precheck/getPrecheckStatus.md index 2eb5cc0730..dd9f00e442 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Precheck/getPrecheckStatus.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Precheck/getPrecheckStatus.md @@ -31,8 +31,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Precheck" --- -### Curl Example +# [REST Example](#getPrecheckStatus-example) {#getPrecheckStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Precheck/getPrecheckStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Precheck/licenseManagementPrecheck.md b/content/reference/services/SoftLayer_Network_Gateway_Precheck/licenseManagementPrecheck.md index 178e3aa82e..ee6e53ce73 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Precheck/licenseManagementPrecheck.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Precheck/licenseManagementPrecheck.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Precheck" --- -### Curl Example +# [REST Example](#licenseManagementPrecheck-example) {#licenseManagementPrecheck-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Precheck/licenseManagementPrecheck' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Precheck/osReloadPrecheck.md b/content/reference/services/SoftLayer_Network_Gateway_Precheck/osReloadPrecheck.md index 0c4e7b0c2d..ac76787638 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Precheck/osReloadPrecheck.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Precheck/osReloadPrecheck.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Precheck" --- -### Curl Example +# [REST Example](#osReloadPrecheck-example) {#osReloadPrecheck-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Precheck/osReloadPrecheck' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Precheck/upgradePrecheck.md b/content/reference/services/SoftLayer_Network_Gateway_Precheck/upgradePrecheck.md index 24d6efd808..5380823512 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Precheck/upgradePrecheck.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Precheck/upgradePrecheck.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Precheck" --- -### Curl Example +# [REST Example](#upgradePrecheck-example) {#upgradePrecheck-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Precheck/upgradePrecheck' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Status/getObject.md b/content/reference/services/SoftLayer_Network_Gateway_Status/getObject.md index 138b2ffe36..0ebe080fc2 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Status/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Status/{SoftLayer_Network_Gateway_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllByUpgradePkgUrlId.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllByUpgradePkgUrlId.md index 4d72c197a7..51beae5a1f 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllByUpgradePkgUrlId.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllByUpgradePkgUrlId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#getAllByUpgradePkgUrlId-example) {#getAllByUpgradePkgUrlId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/getAllByUpgradePkgUrlId' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllUpgradesByGatewayId.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllUpgradesByGatewayId.md index 816aba8d8f..518b530a8d 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllUpgradesByGatewayId.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getAllUpgradesByGatewayId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#getAllUpgradesByGatewayId-example) {#getAllUpgradesByGatewayId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/getAllUpgradesByGatewayId' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedLicenses.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedLicenses.md index 3f3729b0e5..460e175aee 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedLicenses.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedLicenses.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#getGwOrdersAllowedLicenses-example) {#getGwOrdersAllowedLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedLicenses' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedOS.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedOS.md index cf3ad59a66..8eeaeae60e 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedOS.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedOS.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#getGwOrdersAllowedOS-example) {#getGwOrdersAllowedOS-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/getGwOrdersAllowedOS' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getObject.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getObject.md index 9589af48d3..748836a53a 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/{SoftLayer_Network_Gateway_VersionUpgradeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getVsrxOrdersAllowedOS.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getVsrxOrdersAllowedOS.md index 8db9a0cd1f..5d4817ceb6 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getVsrxOrdersAllowedOS.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/getVsrxOrdersAllowedOS.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#getVsrxOrdersAllowedOS-example) {#getVsrxOrdersAllowedOS-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/getVsrxOrdersAllowedOS' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/validateVersionChange.md b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/validateVersionChange.md index 429a8c5231..c503a11fe3 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/validateVersionChange.md +++ b/content/reference/services/SoftLayer_Network_Gateway_VersionUpgrade/validateVersionChange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_VersionUpgrade" --- -### Curl Example +# [REST Example](#validateVersionChange-example) {#validateVersionChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_VersionUpgrade/{SoftLayer_Network_Gateway_VersionUpgradeID}/validateVersionChange' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/bypass.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/bypass.md index ccdba3a343..5323e54e3b 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/bypass.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/bypass.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#bypass-example) {#bypass-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/{SoftLayer_Network_Gateway_VlanID}/bypass' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObject.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObject.md index 96ad2be53b..44be19511d 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObjects.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObjects.md index 77ce13f9d3..94b3ec769f 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObjects.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObject.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObject.md index 2d959a39b5..e51afa03be 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/{SoftLayer_Network_Gateway_VlanID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObjects.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObjects.md index 6141b22154..35cf7be500 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObjects.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Gateway_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkGateway.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkGateway.md index 88b0f452eb..6aee75ecdc 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkGateway.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkGateway.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#getNetworkGateway-example) {#getNetworkGateway-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/{SoftLayer_Network_Gateway_VlanID}/getNetworkGateway' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkVlan.md index c7456fb92d..ed9f68dfc2 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/{SoftLayer_Network_Gateway_VlanID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/getObject.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/getObject.md index 2209a974f7..37608d99e3 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/getObject.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/{SoftLayer_Network_Gateway_VlanID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Gateway_Vlan/unbypass.md b/content/reference/services/SoftLayer_Network_Gateway_Vlan/unbypass.md index 64c7339886..f7776d53dd 100644 --- a/content/reference/services/SoftLayer_Network_Gateway_Vlan/unbypass.md +++ b/content/reference/services/SoftLayer_Network_Gateway_Vlan/unbypass.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Gateway_Vlan" --- -### Curl Example +# [REST Example](#unbypass-example) {#unbypass-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Gateway_Vlan/{SoftLayer_Network_Gateway_VlanID}/unbypass' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/allowDeleteConnection.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/allowDeleteConnection.md index 1a3a6a2643..f2748e388e 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/allowDeleteConnection.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/allowDeleteConnection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#allowDeleteConnection-example) {#allowDeleteConnection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/allowDeleteConnection' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/createConnection.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/createConnection.md index 95849276d4..2cef3d3acd 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/createConnection.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/createConnection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#createConnection-example) {#createConnection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Interconnect_Tenant]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Interconnect_Tenant]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/createConnection' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/deleteConnection.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/deleteConnection.md index 7c508577e0..49566980d3 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/deleteConnection.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/deleteConnection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#deleteConnection-example) {#deleteConnection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Interconnect_Tenant]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Interconnect_Tenant]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/deleteConnection' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/editConnection.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/editConnection.md index 040c2500cb..487fe483ff 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/editConnection.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/editConnection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#editConnection-example) {#editConnection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Interconnect_Tenant]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Interconnect_Tenant]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/editConnection' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllConnections.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllConnections.md index 04b05e28fa..28213b3fd7 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllConnections.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllConnections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getAllConnections-example) {#getAllConnections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getAllConnections' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllObjects.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllObjects.md index 54947a3a59..f7f0bedd34 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllPortLabelsWithCurrentUsage.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllPortLabelsWithCurrentUsage.md index ea45f6cd08..059dea873a 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllPortLabelsWithCurrentUsage.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getAllPortLabelsWithCurrentUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getAllPortLabelsWithCurrentUsage-example) {#getAllPortLabelsWithCurrentUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getAllPortLabelsWithCurrentUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBgpIpRange.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBgpIpRange.md index 2485075b39..d6939fa7c1 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBgpIpRange.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBgpIpRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getBgpIpRange-example) {#getBgpIpRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getBgpIpRange' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBillingItem.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBillingItem.md index df4150f794..4550c0659d 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getConnection.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getConnection.md index 6557d76cf7..229ff336c0 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getConnection.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getConnection.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getConnection-example) {#getConnection-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getConnection' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDatacenterName.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDatacenterName.md index 0e755df5cf..cd430a9ed7 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDatacenterName.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDatacenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getDatacenterName-example) {#getDatacenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getDatacenterName' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDirectLinkSpeeds.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDirectLinkSpeeds.md index e1f2110ab1..03b39a8f6b 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDirectLinkSpeeds.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getDirectLinkSpeeds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getDirectLinkSpeeds-example) {#getDirectLinkSpeeds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getDirectLinkSpeeds' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getNetworkZones.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getNetworkZones.md index 8dc1862dd1..1eb5ce25fe 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getNetworkZones.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getNetworkZones.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getNetworkZones-example) {#getNetworkZones-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getNetworkZones' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getObject.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getObject.md index 46bd76d16f..78f635d6f1 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getObject.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPortLabel.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPortLabel.md index bd97c70876..a0fbe2f0cc 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPortLabel.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPortLabel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getPortLabel-example) {#getPortLabel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getPortLabel' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPorts.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPorts.md index 0fcdaa1ca0..0dbdfacf1d 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPorts.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getPorts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getPorts-example) {#getPorts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/getPorts' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getServiceType.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getServiceType.md index e1a747e17e..f7316aea67 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getServiceType.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getServiceType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getServiceType-example) {#getServiceType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getServiceType' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getVendorName.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getVendorName.md index 59ead10207..d343189f69 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getVendorName.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getVendorName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getVendorName-example) {#getVendorName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getVendorName' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getZoneName.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getZoneName.md index 0ba70812ac..dfa079f0ca 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getZoneName.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/getZoneName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#getZoneName-example) {#getZoneName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/{SoftLayer_Network_Interconnect_TenantID}/getZoneName' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/isAdnAccount.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/isAdnAccount.md index 2975befb70..e5824b7d2f 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/isAdnAccount.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/isAdnAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#isAdnAccount-example) {#isAdnAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/isAdnAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/rejectApprovalRequests.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/rejectApprovalRequests.md index 2cadcccbc0..09cb1c857f 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/rejectApprovalRequests.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/rejectApprovalRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#rejectApprovalRequests-example) {#rejectApprovalRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/rejectApprovalRequests' ``` diff --git a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/updateConnectionStatus.md b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/updateConnectionStatus.md index 1d43dfbada..cd3065f2a1 100644 --- a/content/reference/services/SoftLayer_Network_Interconnect_Tenant/updateConnectionStatus.md +++ b/content/reference/services/SoftLayer_Network_Interconnect_Tenant/updateConnectionStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Interconnect_Tenant" --- -### Curl Example +# [REST Example](#updateConnectionStatus-example) {#updateConnectionStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Interconnect_Tenant/updateConnectionStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/getObject.md index 2b7af69931..d5a48349b6 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_HealthMonitor" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_HealthMonitor/{SoftLayer_Network_LBaaS_HealthMonitorID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/updateLoadBalancerHealthMonitors.md b/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/updateLoadBalancerHealthMonitors.md index 98d52935b3..4b6ddaaf3a 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/updateLoadBalancerHealthMonitors.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_HealthMonitor/updateLoadBalancerHealthMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_HealthMonitor" --- -### Curl Example +# [REST Example](#updateLoadBalancerHealthMonitors-example) {#updateLoadBalancerHealthMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_HealthMonitor/updateLoadBalancerHealthMonitors' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/addL7PoolMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/addL7PoolMembers.md index bc48d6333a..7ec66f62eb 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/addL7PoolMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/addL7PoolMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Member" --- -### Curl Example +# [REST Example](#addL7PoolMembers-example) {#addL7PoolMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Member]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Member]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Member/addL7PoolMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/deleteL7PoolMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/deleteL7PoolMembers.md index 11740cb0ee..0c15202388 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/deleteL7PoolMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/deleteL7PoolMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Member" --- -### Curl Example +# [REST Example](#deleteL7PoolMembers-example) {#deleteL7PoolMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Member/deleteL7PoolMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/getObject.md index ad8a118c39..4a1af17d05 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Member" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Member/{SoftLayer_Network_LBaaS_L7MemberID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/updateL7PoolMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/updateL7PoolMembers.md index e43ba6cc75..1feca2425b 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Member/updateL7PoolMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Member/updateL7PoolMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Member" --- -### Curl Example +# [REST Example](#updateL7PoolMembers-example) {#updateL7PoolMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Member]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Member]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Member/updateL7PoolMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/addL7Policies.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/addL7Policies.md index 025673bf4c..19ad9f701c 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/addL7Policies.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/addL7Policies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Policy" --- -### Curl Example +# [REST Example](#addL7Policies-example) {#addL7Policies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_PolicyRule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_PolicyRule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Policy/addL7Policies' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/deleteObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/deleteObject.md index 4a86e9ad4b..7409829ca5 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Policy" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Policy/{SoftLayer_Network_LBaaS_L7PolicyID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/editObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/editObject.md index 21313a8816..65764398c5 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/editObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Policy" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LBaaS_L7Policy]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LBaaS_L7Policy]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Policy/{SoftLayer_Network_LBaaS_L7PolicyID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getL7Rules.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getL7Rules.md index 10547acc69..df5849d811 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getL7Rules.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getL7Rules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Policy" --- -### Curl Example +# [REST Example](#getL7Rules-example) {#getL7Rules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Policy/{SoftLayer_Network_LBaaS_L7PolicyID}/getL7Rules' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getObject.md index de8efedce0..649534b416 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Policy/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Policy" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Policy/{SoftLayer_Network_LBaaS_L7PolicyID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/createL7Pool.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/createL7Pool.md index ab8d280f19..3060e7776b 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/createL7Pool.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/createL7Pool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#createL7Pool-example) {#createL7Pool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Pool, SoftLayer_Network_LBaaS_L7Member, SoftLayer_Network_LBaaS_L7HealthMonitor, SoftLayer_Network_LBaaS_L7SessionAffinity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Pool, SoftLayer_Network_LBaaS_L7Member, SoftLayer_Network_LBaaS_L7HealthMonitor, SoftLayer_Network_LBaaS_L7SessionAffinity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/createL7Pool' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/deleteObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/deleteObject.md index 2538562a28..73da1da783 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/{SoftLayer_Network_LBaaS_L7PoolID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7HealthMonitor.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7HealthMonitor.md index 7d403f0e60..8b49fa1155 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7HealthMonitor.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7HealthMonitor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#getL7HealthMonitor-example) {#getL7HealthMonitor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/{SoftLayer_Network_LBaaS_L7PoolID}/getL7HealthMonitor' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Members.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Members.md index 7baeba4191..c06385a8da 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Members.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Members.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#getL7Members-example) {#getL7Members-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/{SoftLayer_Network_LBaaS_L7PoolID}/getL7Members' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Policies.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Policies.md index dbefd1189a..1c14e3a86d 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Policies.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7Policies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#getL7Policies-example) {#getL7Policies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/{SoftLayer_Network_LBaaS_L7PoolID}/getL7Policies' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7PoolMemberHealth.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7PoolMemberHealth.md index e5437230fd..8ced2be720 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7PoolMemberHealth.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7PoolMemberHealth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#getL7PoolMemberHealth-example) {#getL7PoolMemberHealth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/getL7PoolMemberHealth' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7SessionAffinity.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7SessionAffinity.md index bf880c3c2d..cdbd1699d9 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7SessionAffinity.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getL7SessionAffinity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#getL7SessionAffinity-example) {#getL7SessionAffinity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/{SoftLayer_Network_LBaaS_L7PoolID}/getL7SessionAffinity' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getObject.md index 8a53c60b2a..24e09ee2cb 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/{SoftLayer_Network_LBaaS_L7PoolID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/updateL7Pool.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/updateL7Pool.md index ab2f2968ca..68bfa7faae 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/updateL7Pool.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Pool/updateL7Pool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Pool" --- -### Curl Example +# [REST Example](#updateL7Pool-example) {#updateL7Pool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Pool, SoftLayer_Network_LBaaS_L7HealthMonitor, SoftLayer_Network_LBaaS_L7SessionAffinity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Pool, SoftLayer_Network_LBaaS_L7HealthMonitor, SoftLayer_Network_LBaaS_L7SessionAffinity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Pool/updateL7Pool' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/addL7Rules.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/addL7Rules.md index 4580181f74..77f8c7f088 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/addL7Rules.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/addL7Rules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Rule" --- -### Curl Example +# [REST Example](#addL7Rules-example) {#addL7Rules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Rule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Rule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Rule/addL7Rules' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/deleteL7Rules.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/deleteL7Rules.md index 8547393221..eeaf45bd80 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/deleteL7Rules.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/deleteL7Rules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Rule" --- -### Curl Example +# [REST Example](#deleteL7Rules-example) {#deleteL7Rules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Rule/deleteL7Rules' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/getObject.md index 62509f7c7d..24a8c62a65 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Rule" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Rule/{SoftLayer_Network_LBaaS_L7RuleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/updateL7Rules.md b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/updateL7Rules.md index 6675824317..a22d8a1e03 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/updateL7Rules.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_L7Rule/updateL7Rules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_L7Rule" --- -### Curl Example +# [REST Example](#updateL7Rules-example) {#updateL7Rules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Rule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_L7Rule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_L7Rule/updateL7Rules' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Listener/deleteLoadBalancerProtocols.md b/content/reference/services/SoftLayer_Network_LBaaS_Listener/deleteLoadBalancerProtocols.md index a58f1620b4..fa23e1a2c7 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Listener/deleteLoadBalancerProtocols.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Listener/deleteLoadBalancerProtocols.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Listener" --- -### Curl Example +# [REST Example](#deleteLoadBalancerProtocols-example) {#deleteLoadBalancerProtocols-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Listener/deleteLoadBalancerProtocols' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Listener/getDefaultPool.md b/content/reference/services/SoftLayer_Network_LBaaS_Listener/getDefaultPool.md index a69d6618a3..dfe0b06281 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Listener/getDefaultPool.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Listener/getDefaultPool.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Listener" --- -### Curl Example +# [REST Example](#getDefaultPool-example) {#getDefaultPool-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Listener/{SoftLayer_Network_LBaaS_ListenerID}/getDefaultPool' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Listener/getL7Policies.md b/content/reference/services/SoftLayer_Network_LBaaS_Listener/getL7Policies.md index 405e38908a..5858c0807e 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Listener/getL7Policies.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Listener/getL7Policies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Listener" --- -### Curl Example +# [REST Example](#getL7Policies-example) {#getL7Policies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Listener/{SoftLayer_Network_LBaaS_ListenerID}/getL7Policies' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Listener/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_Listener/getObject.md index 21a438faf2..2998fef07f 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Listener/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Listener/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Listener" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Listener/{SoftLayer_Network_LBaaS_ListenerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Listener/updateLoadBalancerProtocols.md b/content/reference/services/SoftLayer_Network_LBaaS_Listener/updateLoadBalancerProtocols.md index 2ceaf57ce3..bd1d67fe6e 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Listener/updateLoadBalancerProtocols.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Listener/updateLoadBalancerProtocols.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Listener" --- -### Curl Example +# [REST Example](#updateLoadBalancerProtocols-example) {#updateLoadBalancerProtocols-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_LoadBalancerProtocolConfiguration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_LoadBalancerProtocolConfiguration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Listener/updateLoadBalancerProtocols' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/cancelLoadBalancer.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/cancelLoadBalancer.md index a0e333cea0..153403631e 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/cancelLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/cancelLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#cancelLoadBalancer-example) {#cancelLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/cancelLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/enableOrDisableDataLogs.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/enableOrDisableDataLogs.md index 2bb10cbd49..fcdaffcec2 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/enableOrDisableDataLogs.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/enableOrDisableDataLogs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#enableOrDisableDataLogs-example) {#enableOrDisableDataLogs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/enableOrDisableDataLogs' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getAllObjects.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getAllObjects.md index ef976321fd..49eb8de6e3 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getDatacenter.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getDatacenter.md index 8082d6797b..3ba0fe1f39 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getDatacenter.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getHealthMonitors.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getHealthMonitors.md index 4dac054741..432688cb79 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getHealthMonitors.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getHealthMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getHealthMonitors-example) {#getHealthMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getHealthMonitors' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getL7Pools.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getL7Pools.md index 7ebb19564f..7e8bd7b91e 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getL7Pools.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getL7Pools.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getL7Pools-example) {#getL7Pools-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getL7Pools' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListenerTimeSeriesData.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListenerTimeSeriesData.md index dea5419699..a5ca6ba2a9 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListenerTimeSeriesData.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListenerTimeSeriesData.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getListenerTimeSeriesData-example) {#getListenerTimeSeriesData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/getListenerTimeSeriesData' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListeners.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListeners.md index 33010a5bff..89ac54095c 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListeners.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getListeners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getListeners-example) {#getListeners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getListeners' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancer.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancer.md index b961f2ddae..aabde9b992 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getLoadBalancer-example) {#getLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerMemberHealth.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerMemberHealth.md index 069dfd7051..2a981ee8e6 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerMemberHealth.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerMemberHealth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getLoadBalancerMemberHealth-example) {#getLoadBalancerMemberHealth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerMemberHealth' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerStatistics.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerStatistics.md index e70f35a6ba..f801f0c791 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerStatistics.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerStatistics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getLoadBalancerStatistics-example) {#getLoadBalancerStatistics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/getLoadBalancerStatistics' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getMembers.md index 5400df0a2e..00e97d08ea 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getMembers-example) {#getMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getObject.md index b2a5174fe2..f564675d40 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getSslCiphers.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getSslCiphers.md index 7d76d6414e..f1e850792b 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getSslCiphers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/getSslCiphers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#getSslCiphers-example) {#getSslCiphers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/{SoftLayer_Network_LBaaS_LoadBalancerID}/getSslCiphers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/serviceLoadBalancer.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/serviceLoadBalancer.md index d5a2240ff9..2333b8a9ab 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/serviceLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/serviceLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#serviceLoadBalancer-example) {#serviceLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/serviceLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateLoadBalancer.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateLoadBalancer.md index ef492deb15..1f175edad9 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateLoadBalancer.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateLoadBalancer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#updateLoadBalancer-example) {#updateLoadBalancer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/updateLoadBalancer' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateSslCiphers.md b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateSslCiphers.md index 864afda9f4..7b4fcf29d7 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateSslCiphers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_LoadBalancer/updateSslCiphers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_LoadBalancer" --- -### Curl Example +# [REST Example](#updateSslCiphers-example) {#updateSslCiphers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_LoadBalancer/updateSslCiphers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Member/addLoadBalancerMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_Member/addLoadBalancerMembers.md index a3e70c72a2..f215ad9012 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Member/addLoadBalancerMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Member/addLoadBalancerMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Member" --- -### Curl Example +# [REST Example](#addLoadBalancerMembers-example) {#addLoadBalancerMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_LoadBalancerServerInstanceInfo]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_LoadBalancerServerInstanceInfo]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Member/addLoadBalancerMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Member/deleteLoadBalancerMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_Member/deleteLoadBalancerMembers.md index fd31adf867..9ba782350f 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Member/deleteLoadBalancerMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Member/deleteLoadBalancerMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Member" --- -### Curl Example +# [REST Example](#deleteLoadBalancerMembers-example) {#deleteLoadBalancerMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Member/deleteLoadBalancerMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Member/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_Member/getObject.md index f70f69aaa8..4fc34a2202 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Member/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Member/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Member" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Member/{SoftLayer_Network_LBaaS_MemberID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_Member/updateLoadBalancerMembers.md b/content/reference/services/SoftLayer_Network_LBaaS_Member/updateLoadBalancerMembers.md index 75520e8f50..992528228b 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_Member/updateLoadBalancerMembers.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_Member/updateLoadBalancerMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_Member" --- -### Curl Example +# [REST Example](#updateLoadBalancerMembers-example) {#updateLoadBalancerMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_Member]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Network_LBaaS_Member]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_Member/updateLoadBalancerMembers' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getAllObjects.md b/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getAllObjects.md index f210f35c28..d6fe474191 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_SSLCipher" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_SSLCipher/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getObject.md b/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getObject.md index a40b3d530e..3215a5a771 100644 --- a/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getObject.md +++ b/content/reference/services/SoftLayer_Network_LBaaS_SSLCipher/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LBaaS_SSLCipher" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LBaaS_SSLCipher/{SoftLayer_Network_LBaaS_SSLCipherID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/addNsRecord.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/addNsRecord.md index 1bdcc29e26..f8880d127d 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/addNsRecord.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/addNsRecord.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#addNsRecord-example) {#addNsRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/addNsRecord' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/editObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/editObject.md index f5c78d3524..2175a9bb7f 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/editObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/editObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_Global_Account]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_Global_Account]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getAccount.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getAccount.md index 07795bd89b..8694b7719e 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getAccount.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getBillingItem.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getBillingItem.md index c57d45f8a3..3720cb467e 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getHosts.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getHosts.md index 3944197966..9c6477b342 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getHosts.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#getHosts-example) {#getHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/getHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getLoadBalanceType.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getLoadBalanceType.md index e96850c8bc..65e5ed8acf 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getLoadBalanceType.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getLoadBalanceType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#getLoadBalanceType-example) {#getLoadBalanceType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/getLoadBalanceType' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getManagedResourceFlag.md index 296b2db3b2..4e6dda4bcd 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getObject.md index 30a33666a0..e8245dfe76 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/removeNsRecord.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/removeNsRecord.md index 7334587637..9379834003 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/removeNsRecord.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Account/removeNsRecord.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Account" --- -### Curl Example +# [REST Example](#removeNsRecord-example) {#removeNsRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Account/{SoftLayer_Network_LoadBalancer_Global_AccountID}/removeNsRecord' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/deleteObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/deleteObject.md index 384a966597..e4dfc52c95 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Host" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Host/{SoftLayer_Network_LoadBalancer_Global_HostID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getLoadBalancerAccount.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getLoadBalancerAccount.md index 1b2e839836..464e9ea866 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getLoadBalancerAccount.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getLoadBalancerAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Host" --- -### Curl Example +# [REST Example](#getLoadBalancerAccount-example) {#getLoadBalancerAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Host/{SoftLayer_Network_LoadBalancer_Global_HostID}/getLoadBalancerAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getObject.md index c0736adb71..e329ea671c 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Global_Host/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Global_Host" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Global_Host/{SoftLayer_Network_LoadBalancer_Global_HostID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/deleteObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/deleteObject.md index 5ecf9b298c..4f21865400 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Service/{SoftLayer_Network_LoadBalancer_ServiceID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getGraphImage.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getGraphImage.md index be11113e93..51e4035a9a 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getGraphImage.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getGraphImage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getGraphImage-example) {#getGraphImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Service/{SoftLayer_Network_LoadBalancer_ServiceID}/getGraphImage' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getObject.md index 994005906e..0be45e4c8e 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Service/{SoftLayer_Network_LoadBalancer_ServiceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getStatus.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getStatus.md index c72ad53fb9..a117ad5040 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getStatus.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getStatus.md @@ -28,8 +28,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Service/{SoftLayer_Network_LoadBalancer_ServiceID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getVip.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getVip.md index 52875b0969..4c78b8be53 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getVip.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/getVip.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#getVip-example) {#getVip-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Service/{SoftLayer_Network_LoadBalancer_ServiceID}/getVip' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/resetPeakConnections.md b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/resetPeakConnections.md index 20a4ed3553..9767b51814 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_Service/resetPeakConnections.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_Service/resetPeakConnections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_Service" --- -### Curl Example +# [REST Example](#resetPeakConnections-example) {#resetPeakConnections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_Service/{SoftLayer_Network_LoadBalancer_ServiceID}/resetPeakConnections' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/disable.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/disable.md index b76601d910..70943c6890 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/disable.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/disable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#disable-example) {#disable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/disable' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/editObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/editObject.md index 1b9f0f126d..7359033e8f 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/editObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_LoadBalancer_VirtualIpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/enable.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/enable.md index 8f9af5aa6d..f0d0ecfd29 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/enable.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/enable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#enable-example) {#enable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/enable' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getAccount.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getAccount.md index a0dc1758b1..538c65943d 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getAccount.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getBillingItem.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getBillingItem.md index 0446084e7e..382a6fac3d 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getCustomerManagedFlag.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getCustomerManagedFlag.md index 4e4240085b..b70360b50d 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getCustomerManagedFlag.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getCustomerManagedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getCustomerManagedFlag-example) {#getCustomerManagedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/getCustomerManagedFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md index aad74e3ca8..eb6d7e5251 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getObject.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getObject.md index fc18e2751e..97dfff6473 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getObject.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getServices.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getServices.md index c3dd6a76f5..bd57cb2a7e 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getServices.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/getServices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#getServices-example) {#getServices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/getServices' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/kickAllConnections.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/kickAllConnections.md index dffd317455..e131ac47b9 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/kickAllConnections.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/kickAllConnections.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#kickAllConnections-example) {#kickAllConnections-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/kickAllConnections' ``` diff --git a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md index e58f3bcb4a..17021e3df9 100644 --- a/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md +++ b/content/reference/services/SoftLayer_Network_LoadBalancer_VirtualIpAddress/upgradeConnectionLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_LoadBalancer_VirtualIpAddress" --- -### Curl Example +# [REST Example](#upgradeConnectionLimit-example) {#upgradeConnectionLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_LoadBalancer_VirtualIpAddress/{SoftLayer_Network_LoadBalancer_VirtualIpAddressID}/upgradeConnectionLimit' ``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/_index.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/_index.md deleted file mode 100644 index 3dba40d61f..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/_index.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Account" -description: "Transcoding is a service which allows you to transcode media files to different formats. For example, if you have a Windows Media Video file you wish to stream in Flash Video format, transcoding would be the process to make this change. Individual SoftLayer customer can have a single Transcode account and you need to create a Transcode account to use the service. To create a Transcode account, go to the 'Private Network' -> 'Transcoding' page in the SoftLayer [https://manage.softlayer.com customer portal] or invoke [SoftLayer_Network_Media_Transcode_Account::createTranscodeAccount](/reference/datatypes/$1/#$2) method. - -SoftLayer Transcoding service supports a large number of video and audio codecs. This means you can transcode many different types of movies. Refer to [http://knowledgelayer.softlayer.com/questions/409/SoftLayer+Transcoding+FAQ Transcode FAQ] for supported codes and media containers. Transcode server also has hundreds of pre-defined output formats that you can choose from. - -A Transcode account object allows you to communicate with the Transcode FTP (transcode.service.softlayer.com server) server and Transcode server. You can retrieve a directory listing, details on a media file, Transcode output presets, and Transcode FTP login credentials. Most importantly, you can create transcode jobs through your Transcode account. - -When a Transcode account is created, it creates an FTP account on the Transcode FTP. You can upload your media files to the /in directory and you can download transcoded media files from the /out directory. You can keep the files 3 days from the creation date. They will be automatically deleted after this point. For more details on the Transcode FTP server, refer to [SoftLayer_Network_Media_Transcode_Account::getFtpAttributes](/reference/datatypes/$1/#$2) method. " -date: "2018-02-12" -tags: - - "service" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "service" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/createTranscodeAccount.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/createTranscodeAccount.md deleted file mode 100644 index af95352242..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/createTranscodeAccount.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "createTranscodeAccount" -description: "With this method, you can create a transcode account. Individual SoftLayer account can have a single Transcode account. You have to pass your SoftLayer account id as a parameter. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/createTranscodeAccount' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/createTranscodeJob.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/createTranscodeJob.md deleted file mode 100644 index 5fc22acbc9..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/createTranscodeJob.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "createTranscodeJob" -description: "'''Note'''. This method is obsolete. Please use the [SoftLayer_Network_Media_Transcode_Job::createObject](/reference/datatypes/$1/#$2) method on SoftLayer_Network_Media_Transcode_Job object instead. SoftLayer_Network_Media_Transcode_Job::createObject returns an object of a newly created Transcode Job. - -With this method, you can create a transcode job. - -The very first step of creating a transcode job is to upload your media files to the /in directory on your Transcode FTP space. Then, you have to pass a [SoftLayer_Network_Media_Transcode_Job](/reference/datatypes/SoftLayer_Network_Media_Transcode_Job) object as a parameter for this method. - -There are 4 required properties of SoftLayer_Network_Media_Transcode_Job object: transcodePresetName, transcodePresetGuid, inputFile, and outputFile. A transcode preset is a configuration that defines a certain media output. You can retrieve all the supported presets with the [SoftLayer_Network_Media_Transcode_Account::getPresets](/reference/datatypes/$1/#$2) method. You can also use [SoftLayer_Network_Media_Transcode_Account::getPresetDetail](/reference/datatypes/$1/#$2) method to get more information on a preset. Use these two methods to determine appropriate values for 'transcodePresetName' and 'transcodePresetGuid' properties. For an 'inputFile', you must specify a file that exists in the /in directory of your Transcode FTP space. An 'outputFile' name will be used by the Transcode server for naming a transcoded file. An output file name must be in /out directory. If your outputFile name already exists in the /out directory, the Transcode server will append a file name with _n (an underscore and the total number of files with the identical name plus 1). - -The 'name' property is optional and it can help you keep track of transcode jobs easily. 'autoDeleteDuration' is another optional property that you can specify. It determines how soon your input file will be deleted. If autoDeleteDuration is set to zero, your input file will be removed immediately after the last transcode job running on it is completed. A value for autoDeleteDuration property is in seconds and the maximum value is 259200 which is 3 days. - -An example SoftLayer_Network_Media_Transcode_Job parameter looks like this: - - -* name: My transcoding -* transcodePresetName: F4V 896kbps 640x352 16x9 29.97fps -* transcodePresetGuid: {87E01268-C3E3-4A85-9701-052C9AC42BD4} -* inputFile: /in/my_birthday.wmv -* outputFile: /out/my_birthday_flash - - -Notice that an output file does not have a file extension. The Transcode server will append a file extension based on an output format. A newly created transcode job will be in 'Pending' status and it will be added to the Transcoding queue. You will receive a notification email whenever there is a status change on your transcode job. For example, the Transcode server starts to process your transcode job, you will be notified via an email. - -You can add up to 3 pending jobs at a time. Transcode jobs with any other status such as 'Complete' or 'Error' will not be counted toward your pending jobs. - -Once a job is complete, the Transcode server will place the output file into the /out directory along with a notification email. The files in the /out directory will be removed 3 days after they were created. You will need to use an FTP client to download transcoded files. - -" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Media_Transcode_Job]}' \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/createTranscodeJob' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getAccount.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getAccount.md deleted file mode 100644 index 786119c679..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getAccount.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getAccount" -description: "The SoftLayer account information" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getAccount' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getDirectoryInformation.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getDirectoryInformation.md deleted file mode 100644 index 796287a704..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getDirectoryInformation.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getDirectoryInformation" -description: "This method returns a collection of SoftLayer_Container_Network_Ftp_Directory objects. You can retrieve directory information for /in and /out directories. A [SoftLayer_Container_Network_Directory_Listing](/reference/datatypes/SoftLayer_Container_Network_Directory_Listing) object contains a type (indicating whether it is a file or a directory), name and file count if it is a directory. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getDirectoryInformation' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getFileDetail.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getFileDetail.md deleted file mode 100644 index bc0afd422e..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getFileDetail.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getFileDetail" -description: "This method returns detailed information of a media file that resides in the Transcode FTP server. A [SoftLayer_Container_Network_Media_Information](/reference/datatypes/SoftLayer_Container_Network_Media_Information) object contains media details such as file size, media format, frame rate, aspect ratio and so on. This information is merely for reference purposes. You should not rely on this data. Our library grabs small pieces of data from a media file to gather media details. This information may not be available for some files. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getFileDetail' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getFtpAttributes.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getFtpAttributes.md deleted file mode 100644 index ced5c02652..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getFtpAttributes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "getFtpAttributes" -description: "This method returns your Transcode FTP login credentials to the transcode.service.softlayer.com server. - -The Transcode FTP server is available via the SoftLayer private network. There is no API method that you can upload a file to Transcode server so you need to use an FTP client. You will have /in and /out directories on the Transcode FTP server. You will have read-write privileges for /in directory and read-only privilege for /out directory. All the files in both /in and /out directories will be deleted after 72 hours from the creation date. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getFtpAttributes' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getObject.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getObject.md deleted file mode 100644 index 5c7484fecb..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getObject.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getObject" -description: "getObject method retrieves the SoftLayer_Network_Media_Transcode_Account object whose ID number corresponds to the ID number of the initial parameter passed to the SoftLayer_Network_Media_Transcode_Account service. You can only retrieve a Transcode account assigned to your SoftLayer customer account. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getObject' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getPresetDetail.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getPresetDetail.md deleted file mode 100644 index ac1169c380..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getPresetDetail.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getPresetDetail" -description: "This method returns an array of [SoftLayer_Container_Network_Media_Transcode_Preset_Element](/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element) objects. Each preset has its own collection of preset elements such as encoder, frame rate, aspect ratio and so on. Each element object has a default value for itself and an array of [SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option](/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option) objects. For example, 'Frame Rate' element for 'Windows Media 9 - Download - 1 Mbps - NTSC - Constrained VBR' preset has 19 element options. 15.0 frame rate is selected by default. Currently, you are not able to change the default value. Customizing these values may be possible in the future. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getPresetDetail' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getPresets.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getPresets.md deleted file mode 100644 index 1d3837052f..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getPresets.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getPresets" -description: "A transcode preset is a configuration that defines a certain media output. This method returns an array of transcoding preset objects supported by SoftLayer's Transcode server. Each [SoftLayer_Container_Network_Media_Transcode_Preset](/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset) contains a GUID property. You will need a GUID string when you create a new transcode job. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getPresets' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getTranscodeJobs.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getTranscodeJobs.md deleted file mode 100644 index da58d00d1b..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Account/getTranscodeJobs.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getTranscodeJobs" -description: "Transcode jobs" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Account" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Account" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Account/{SoftLayer_Network_Media_Transcode_AccountID}/getTranscodeJobs' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/_index.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/_index.md deleted file mode 100644 index 58b48fa8a9..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/_index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Job" -description: "SoftLayer_Network_Media_Transcode_Job holds information on a transcode job. To create a transcode job, use a [SoftLayer_Network_Media_Transcode_Account](/reference/datatypes/SoftLayer_Network_Media_Transcode_Account) object. " -date: "2018-02-12" -tags: - - "service" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "service" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/createObject.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/createObject.md deleted file mode 100644 index 0dc6ba52f0..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/createObject.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "createObject" -description: "With this method, you can create a transcode job. - -The very first step of creating a transcode job is to upload your media files to the /in directory on your Transcode FTP space. Then, you have to pass a [SoftLayer_Network_Media_Transcode_Job](/reference/datatypes/SoftLayer_Network_Media_Transcode_Job) object as a parameter for this method. - -There are 4 required properties of SoftLayer_Network_Media_Transcode_Job object: transcodePresetName, transcodePresetGuid, inputFile, and outputFile. A transcode preset is a configuration that defines a certain media output. You can retrieve all the supported presets with the [SoftLayer_Network_Media_Transcode_Account::getPresets](/reference/datatypes/$1/#$2) method. You can also use [SoftLayer_Network_Media_Transcode_Account::getPresetDetail](/reference/datatypes/$1/#$2) method to get more information on a preset. Use these two methods to determine appropriate values for 'transcodePresetName' and 'transcodePresetGuid' properties. For an 'inputFile', you must specify a file that exists in the /in directory of your Transcode FTP space. An 'outputFile' name will be used by the Transcode server for naming a transcoded file. An output file name must be in /out directory. If your outputFile name already exists in the /out directory, the Transcode server will append a file name with _n (an underscore and the total number of files with the identical name plus 1). - -The 'name' property is optional and it can help you keep track of transcode jobs easily. 'autoDeleteDuration' is another optional property that you can specify. It determines how soon your input file will be deleted. If autoDeleteDuration is set to zero, your input file will be removed immediately after the last transcode job running on it is completed. A value for autoDeleteDuration property is in seconds and the maximum value is 259200 which is 3 days. - -An example SoftLayer_Network_Media_Transcode_Job parameter looks like this: - - -* name: My transcoding -* transcodePresetName: F4V 896kbps 640x352 16x9 29.97fps -* transcodePresetGuid: {87E01268-C3E3-4A85-9701-052C9AC42BD4} -* inputFile: /in/my_birthday.wmv -* outputFile: /out/my_birthday_flash - - -Notice that an output file does not have a file extension. The Transcode server will append a file extension based on an output format. A newly created transcode job will be in 'Pending' status and it will be added to the Transcoding queue. You will receive a notification email whenever there is a status change on your transcode job. For example, the Transcode server starts to process your transcode job, you will be notified via an email. - -You can add up to 3 pending jobs at a time. Transcode jobs with any other status such as 'Complete' or 'Error' will not be counted toward your pending jobs. - -Once a job is complete, the Transcode server will place the output file into the /out directory along with a notification email. The files in the /out directory will be removed 3 days after they were created. You will need to use an FTP client to download transcoded files. - -" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Media_Transcode_Job]}' \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/createObject' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getHistory.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getHistory.md deleted file mode 100644 index 2228121630..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getHistory.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getHistory" -description: "" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/{SoftLayer_Network_Media_Transcode_JobID}/getHistory' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getObject.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getObject.md deleted file mode 100644 index 6181aaf505..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getObject.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getObject" -description: "Retrieve a SoftLayer_Network_Media_Transcode_Job record." -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/{SoftLayer_Network_Media_Transcode_JobID}/getObject' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeAccount.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeAccount.md deleted file mode 100644 index 68a3e282b9..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeAccount.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getTranscodeAccount" -description: "The transcode service account" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/{SoftLayer_Network_Media_Transcode_JobID}/getTranscodeAccount' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeStatus.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeStatus.md deleted file mode 100644 index c5247be55d..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeStatus.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getTranscodeStatus" -description: "The status information of a transcode job" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/{SoftLayer_Network_Media_Transcode_JobID}/getTranscodeStatus' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeStatusName.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeStatusName.md deleted file mode 100644 index 4e1c9ad156..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getTranscodeStatusName.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getTranscodeStatusName" -description: "The status of a transcode job" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/{SoftLayer_Network_Media_Transcode_JobID}/getTranscodeStatusName' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getUser.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getUser.md deleted file mode 100644 index e3fbae6aa1..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job/getUser.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getUser" -description: "The SoftLayer user that created the transcode job" -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job/{SoftLayer_Network_Media_Transcode_JobID}/getUser' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/_index.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/_index.md deleted file mode 100644 index 62668ee7fe..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/_index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "SoftLayer_Network_Media_Transcode_Job_Status" -description: "A Transcode job's status. It can be Pending, Processing, Complete, Error or Deleted. " -date: "2018-02-12" -tags: - - "service" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job_Status" -type: "reference" -layout: "service" -mainService : "SoftLayer_Network_Media_Transcode_Job_Status" ---- diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/getAllStatuses.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/getAllStatuses.md deleted file mode 100644 index c5bc7383d3..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/getAllStatuses.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getAllStatuses" -description: "This method returns all transcode job statuses. " -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job_Status" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job_Status" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job_Status/getAllStatuses' -``` diff --git a/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/getObject.md b/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/getObject.md deleted file mode 100644 index 8f9b365457..0000000000 --- a/content/reference/services/SoftLayer_Network_Media_Transcode_Job_Status/getObject.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "getObject" -description: "Retrieve a SoftLayer_Network_Media_Transcode_Job_Status record." -date: "2018-02-12" -tags: - - "method" - - "sldn" - - "Network" -classes: - - "SoftLayer_Network_Media_Transcode_Job_Status" -type: "reference" -layout: "method" -mainService : "SoftLayer_Network_Media_Transcode_Job_Status" ---- - -### Curl Example -```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ -'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Media_Transcode_Job_Status/{SoftLayer_Network_Media_Transcode_Job_StatusID}/getObject' -``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/editObject.md b/content/reference/services/SoftLayer_Network_Message_Delivery/editObject.md index 049a39227e..9db4fe4ff9 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/editObject.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Message_Delivery]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Message_Delivery]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/getAccount.md b/content/reference/services/SoftLayer_Network_Message_Delivery/getAccount.md index 29284265be..3aeeb13a33 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/getBillingItem.md b/content/reference/services/SoftLayer_Network_Message_Delivery/getBillingItem.md index ff3815763e..a6f1c73534 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/getObject.md b/content/reference/services/SoftLayer_Network_Message_Delivery/getObject.md index 77d680267e..5c05fc8c3f 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/getObject.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/getType.md b/content/reference/services/SoftLayer_Network_Message_Delivery/getType.md index 2b50a0b0ba..7bf84d8016 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/getType.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Network_Message_Delivery/getUpgradeItemPrices.md index 982e2aa6a7..166ba27556 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery/getVendor.md b/content/reference/services/SoftLayer_Network_Message_Delivery/getVendor.md index 96f69f57bc..82913fe36d 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery/getVendor.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery/getVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery" --- -### Curl Example +# [REST Example](#getVendor-example) {#getVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery/{SoftLayer_Network_Message_DeliveryID}/getVendor' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/addUnsubscribeEmailAddress.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/addUnsubscribeEmailAddress.md index 3df7d0a389..e5d3a31d79 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/addUnsubscribeEmailAddress.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/addUnsubscribeEmailAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#addUnsubscribeEmailAddress-example) {#addUnsubscribeEmailAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/addUnsubscribeEmailAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/deleteEmailListEntries.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/deleteEmailListEntries.md index 6ec93a242d..c212fe207d 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/deleteEmailListEntries.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/deleteEmailListEntries.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#deleteEmailListEntries-example) {#deleteEmailListEntries-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/deleteEmailListEntries' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/disableSmtpAccess.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/disableSmtpAccess.md index 2ebe525e27..f0eff6cd6a 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/disableSmtpAccess.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/disableSmtpAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#disableSmtpAccess-example) {#disableSmtpAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/disableSmtpAccess' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/editObject.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/editObject.md index 68a25eb746..e16a6b6358 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/editObject.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Message_Delivery]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Message_Delivery]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/enableSmtpAccess.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/enableSmtpAccess.md index 280f1be7b8..9b67e2321d 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/enableSmtpAccess.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/enableSmtpAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#enableSmtpAccess-example) {#enableSmtpAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/enableSmtpAccess' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccount.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccount.md index 9f79837ea2..b1aa92ca8e 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccountOverview.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccountOverview.md index e254fd6ec9..2e721dc395 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccountOverview.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getAccountOverview.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getAccountOverview-example) {#getAccountOverview-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getAccountOverview' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getBillingItem.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getBillingItem.md index 72cd669735..ad892405a0 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailAddress.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailAddress.md index 3be5397cf6..54f8ffc248 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailAddress.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getEmailAddress-example) {#getEmailAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getEmailAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailList.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailList.md index f24f16367a..ade3f17386 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailList.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getEmailList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getEmailList-example) {#getEmailList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getEmailList' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getObject.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getObject.md index 4a1ef0caa8..bf1eecaa91 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getObject.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getOfferingsList.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getOfferingsList.md index 8eca01b8cf..7c82a9b1d1 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getOfferingsList.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getOfferingsList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getOfferingsList-example) {#getOfferingsList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getOfferingsList' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getSmtpAccess.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getSmtpAccess.md index bb6b79cec7..acc31463a3 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getSmtpAccess.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getSmtpAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getSmtpAccess-example) {#getSmtpAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getSmtpAccess' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatistics.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatistics.md index 42d6bf3464..1316083c0f 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatistics.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatistics.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getStatistics-example) {#getStatistics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Message_Delivery_Email_Sendgrid_Statistics_Options]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Message_Delivery_Email_Sendgrid_Statistics_Options]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getStatistics' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatisticsGraph.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatisticsGraph.md index 18c7552f52..23e709c855 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatisticsGraph.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getStatisticsGraph.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getStatisticsGraph-example) {#getStatisticsGraph-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Message_Delivery_Email_Sendgrid_Statistics_Options]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Message_Delivery_Email_Sendgrid_Statistics_Options]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getStatisticsGraph' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getType.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getType.md index 215f1b0df9..21ac050702 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getType.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getUpgradeItemPrices.md index 18e4d0e4f3..098afc8ed8 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getUpgradeItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getVendor.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getVendor.md index 65d5e5a0f4..da48924b8c 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getVendor.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/getVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#getVendor-example) {#getVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/getVendor' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/singleSignOn.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/singleSignOn.md index e21b3d4e8f..19a62c0b59 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/singleSignOn.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/singleSignOn.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#singleSignOn-example) {#singleSignOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/singleSignOn' ``` diff --git a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/updateEmailAddress.md b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/updateEmailAddress.md index 5efd9f2661..6c8d84055d 100644 --- a/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/updateEmailAddress.md +++ b/content/reference/services/SoftLayer_Network_Message_Delivery_Email_Sendgrid/updateEmailAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Message_Delivery_Email_Sendgrid" --- -### Curl Example +# [REST Example](#updateEmailAddress-example) {#updateEmailAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Message_Delivery_Email_Sendgrid/{SoftLayer_Network_Message_Delivery_Email_SendgridID}/updateEmailAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByHardware.md b/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByHardware.md index 1cb8259ad3..6340e194d6 100644 --- a/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByHardware.md +++ b/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor" --- -### Curl Example +# [REST Example](#getIpAddressesByHardware-example) {#getIpAddressesByHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor/getIpAddressesByHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByVirtualGuest.md b/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByVirtualGuest.md index ae4e042144..ee596b45ff 100644 --- a/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Monitor/getIpAddressesByVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor" --- -### Curl Example +# [REST Example](#getIpAddressesByVirtualGuest-example) {#getIpAddressesByVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor/getIpAddressesByVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObject.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObject.md index fafe76a334..4b24655aa7 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObject.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObjects.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObjects.md index 31e3d04639..ce191c8cc3 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObjects.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObject.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObject.md index 05da3f61bf..221e7af646 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObjects.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObjects.md index fdd0ccadc8..99de9f0664 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObjects.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObject.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObject.md index 35406676b9..16f1550519 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObject.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObjects.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObjects.md index e4c6be846f..e78a6a64f9 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObjects.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Monitor_Version1_Query_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/findByHardwareId.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/findByHardwareId.md index 17739a117a..3753d948da 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/findByHardwareId.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/findByHardwareId.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#findByHardwareId-example) {#findByHardwareId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/findByHardwareId' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getHardware.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getHardware.md index 8b33246e50..9cc9e1c4f1 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getLastResult.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getLastResult.md index 1f4b1174ef..84b991ac26 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getLastResult.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getLastResult.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#getLastResult-example) {#getLastResult-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/getLastResult' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getObject.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getObject.md index 28476a4a60..66f918997d 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getObject.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getQueryType.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getQueryType.md index 0ef0edf054..63042d4515 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getQueryType.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getQueryType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#getQueryType-example) {#getQueryType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/getQueryType' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getResponseAction.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getResponseAction.md index f2758a5b17..74bfd50b5a 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getResponseAction.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host/getResponseAction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host" --- -### Curl Example +# [REST Example](#getResponseAction-example) {#getResponseAction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host/{SoftLayer_Network_Monitor_Version1_Query_HostID}/getResponseAction' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllQueryTypes.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllQueryTypes.md index f4598a740b..6632411d3c 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllQueryTypes.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllQueryTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host_Stratum" --- -### Curl Example +# [REST Example](#getAllQueryTypes-example) {#getAllQueryTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllQueryTypes' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllResponseTypes.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllResponseTypes.md index 77d239f930..613317bf4f 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllResponseTypes.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllResponseTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host_Stratum" --- -### Curl Example +# [REST Example](#getAllResponseTypes-example) {#getAllResponseTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getAllResponseTypes' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getHardware.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getHardware.md index 14b6fac0e6..2b971d6271 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host_Stratum" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/{SoftLayer_Network_Monitor_Version1_Query_Host_StratumID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getObject.md b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getObject.md index 02855286c9..c2c6d5d8c9 100644 --- a/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getObject.md +++ b/content/reference/services/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Monitor_Version1_Query_Host_Stratum" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Monitor_Version1_Query_Host_Stratum/{SoftLayer_Network_Monitor_Version1_Query_Host_StratumID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Pod/getAllObjects.md b/content/reference/services/SoftLayer_Network_Pod/getAllObjects.md index 2639f57eb4..ea9ba02a66 100644 --- a/content/reference/services/SoftLayer_Network_Pod/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Pod/getAllObjects.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_Network_Pod" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Pod/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Pod/getCapabilities.md b/content/reference/services/SoftLayer_Network_Pod/getCapabilities.md index 35774520ea..7be580b5ec 100644 --- a/content/reference/services/SoftLayer_Network_Pod/getCapabilities.md +++ b/content/reference/services/SoftLayer_Network_Pod/getCapabilities.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Pod" --- -### Curl Example +# [REST Example](#getCapabilities-example) {#getCapabilities-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Pod/{SoftLayer_Network_PodID}/getCapabilities' ``` diff --git a/content/reference/services/SoftLayer_Network_Pod/getObject.md b/content/reference/services/SoftLayer_Network_Pod/getObject.md index f807eb7f48..6baaefc612 100644 --- a/content/reference/services/SoftLayer_Network_Pod/getObject.md +++ b/content/reference/services/SoftLayer_Network_Pod/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Pod" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Pod/{SoftLayer_Network_PodID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Pod/listCapabilities.md b/content/reference/services/SoftLayer_Network_Pod/listCapabilities.md index f549a66a2c..78797c4cc8 100644 --- a/content/reference/services/SoftLayer_Network_Pod/listCapabilities.md +++ b/content/reference/services/SoftLayer_Network_Pod/listCapabilities.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Pod" --- -### Curl Example +# [REST Example](#listCapabilities-example) {#listCapabilities-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Pod/listCapabilities' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/addRules.md b/content/reference/services/SoftLayer_Network_SecurityGroup/addRules.md index d6f17ad329..012f2e0459 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/addRules.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/addRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#addRules-example) {#addRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup_Rule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup_Rule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/addRules' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/attachNetworkComponents.md b/content/reference/services/SoftLayer_Network_SecurityGroup/attachNetworkComponents.md index 7e26425150..62f640a82e 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/attachNetworkComponents.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/attachNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#attachNetworkComponents-example) {#attachNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/attachNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/createObject.md b/content/reference/services/SoftLayer_Network_SecurityGroup/createObject.md index a7cdaa8b9d..f7a6fff03b 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/createObject.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/createObjects.md b/content/reference/services/SoftLayer_Network_SecurityGroup/createObjects.md index 9f8bc6a2ad..e122e9ed3a 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/createObjects.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObject.md b/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObject.md index f29a6877f0..af08b60604 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObjects.md b/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObjects.md index 34aca570fa..2275b8f08d 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObjects.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/detachNetworkComponents.md b/content/reference/services/SoftLayer_Network_SecurityGroup/detachNetworkComponents.md index 0281a0c795..0f2f35b407 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/detachNetworkComponents.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/detachNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#detachNetworkComponents-example) {#detachNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/detachNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/editObject.md b/content/reference/services/SoftLayer_Network_SecurityGroup/editObject.md index d6ac9fc00c..42928e2d43 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/editObject.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/editObjects.md b/content/reference/services/SoftLayer_Network_SecurityGroup/editObjects.md index 73afe78ba4..9a8bc67a9e 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/editObjects.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/editRules.md b/content/reference/services/SoftLayer_Network_SecurityGroup/editRules.md index 3fbbbab7b6..fe30ddf462 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/editRules.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/editRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#editRules-example) {#editRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup_Rule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_SecurityGroup_Rule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/editRules' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getAccount.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getAccount.md index 2f6ea2481b..20a8de04b2 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getAccount.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getAllObjects.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getAllObjects.md index 0e66f63655..2236ef0aa0 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getLimits.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getLimits.md index 11b265085a..2508daffcd 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getLimits.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getLimits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getLimits-example) {#getLimits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/getLimits' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getNetworkComponentBindings.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getNetworkComponentBindings.md index 61643dab76..e7f2150fb7 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getNetworkComponentBindings.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getNetworkComponentBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getNetworkComponentBindings-example) {#getNetworkComponentBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/getNetworkComponentBindings' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getObject.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getObject.md index 63feb3f52c..afe4102158 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getObject.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getOrderBindings.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getOrderBindings.md index 5232453ee2..e0302a0f5a 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getOrderBindings.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getOrderBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getOrderBindings-example) {#getOrderBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/getOrderBindings' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getRules.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getRules.md index 4ef350666e..21479881eb 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getRules.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/getSupportedDataCenters.md b/content/reference/services/SoftLayer_Network_SecurityGroup/getSupportedDataCenters.md index 8b24ca1877..d6a647aa54 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/getSupportedDataCenters.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/getSupportedDataCenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#getSupportedDataCenters-example) {#getSupportedDataCenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/getSupportedDataCenters' ``` diff --git a/content/reference/services/SoftLayer_Network_SecurityGroup/removeRules.md b/content/reference/services/SoftLayer_Network_SecurityGroup/removeRules.md index a13553c7ea..859129ee33 100644 --- a/content/reference/services/SoftLayer_Network_SecurityGroup/removeRules.md +++ b/content/reference/services/SoftLayer_Network_SecurityGroup/removeRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_SecurityGroup" --- -### Curl Example +# [REST Example](#removeRules-example) {#removeRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_SecurityGroup/{SoftLayer_Network_SecurityGroupID}/removeRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/createObject.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/createObject.md index 153daa28d9..a22ee0097d 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/createObject.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Security_Scanner_Request]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Security_Scanner_Request]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getAccount.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getAccount.md index 03ac9ab91e..3cd22de656 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getGuest.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getGuest.md index 286b4ad034..a8deb53a71 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getGuest.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getGuest-example) {#getGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getHardware.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getHardware.md index c72340c09d..683ece86fd 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getObject.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getObject.md index 12b5acde91..b471f99978 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getObject.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getReport.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getReport.md index 137923c80c..1cdc0f4116 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getReport.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getReport.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getReport-example) {#getReport-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getReport' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getRequestorOwnedFlag.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getRequestorOwnedFlag.md index 1ccd4ec6b7..b24ed802d3 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getRequestorOwnedFlag.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getRequestorOwnedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getRequestorOwnedFlag-example) {#getRequestorOwnedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getRequestorOwnedFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getStatus.md b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getStatus.md index 1caa55778c..dc1048b10f 100644 --- a/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getStatus.md +++ b/content/reference/services/SoftLayer_Network_Security_Scanner_Request/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Security_Scanner_Request" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Security_Scanner_Request/{SoftLayer_Network_Security_Scanner_RequestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/createObjects.md b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/createObjects.md index 359bd117e4..c48ea618b3 100644 --- a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/createObjects.md +++ b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Service_Vpn_Overrides" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Service_Vpn_Overrides]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Service_Vpn_Overrides]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Service_Vpn_Overrides/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObject.md b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObject.md index dbcfa54929..680ed53481 100644 --- a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Service_Vpn_Overrides" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Service_Vpn_Overrides/{SoftLayer_Network_Service_Vpn_OverridesID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObjects.md b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObjects.md index ff9f2acc85..5977a9bdcb 100644 --- a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObjects.md +++ b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Service_Vpn_Overrides" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Service_Vpn_Overrides]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Service_Vpn_Overrides]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Service_Vpn_Overrides/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getObject.md b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getObject.md index 509280d344..41f427adef 100644 --- a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getObject.md +++ b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Service_Vpn_Overrides" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Service_Vpn_Overrides/{SoftLayer_Network_Service_Vpn_OverridesID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getSubnet.md b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getSubnet.md index e5e1b37b5f..e7ee32f669 100644 --- a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getSubnet.md +++ b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Service_Vpn_Overrides" --- -### Curl Example +# [REST Example](#getSubnet-example) {#getSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Service_Vpn_Overrides/{SoftLayer_Network_Service_Vpn_OverridesID}/getSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getUser.md b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getUser.md index fb316f291f..eeee035ab7 100644 --- a/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getUser.md +++ b/content/reference/services/SoftLayer_Network_Service_Vpn_Overrides/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Service_Vpn_Overrides" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Service_Vpn_Overrides/{SoftLayer_Network_Service_Vpn_OverridesID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardware.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardware.md index e3dfc25f5a..bc448a3435 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromHardware-example) {#allowAccessFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardwareList.md index dcb8e076ea..4346c6343a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromHardwareList-example) {#allowAccessFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHost.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHost.md index a0c0b7df85..ad2ccaf886 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHost.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromHost-example) {#allowAccessFromHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHostList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHostList.md index 0ebf2a12b0..43988b4a7e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHostList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromHostList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromHostList-example) {#allowAccessFromHostList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromHostList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddress.md index 64b587aa8a..4a7a007d12 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromIpAddress-example) {#allowAccessFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddressList.md index f69f3c9f1a..1521a438b9 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromIpAddressList-example) {#allowAccessFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnet.md index c109a67422..517f5cdc55 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromSubnet-example) {#allowAccessFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnetList.md index 6297a0dcf0..62c92643ee 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromSubnetList-example) {#allowAccessFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuest.md index 44ea30265f..1a4a726951 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromVirtualGuest-example) {#allowAccessFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuestList.md index b58d7e1d39..491f478ba5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessFromVirtualGuestList-example) {#allowAccessFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardware.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardware.md index d9f4d89670..e6cbccca29 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromHardware-example) {#allowAccessToReplicantFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardwareList.md index c88e01e043..8e6e0443a6 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromHardwareList-example) {#allowAccessToReplicantFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddress.md index 4a3e5846b6..2e359a5fae 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromIpAddress-example) {#allowAccessToReplicantFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddressList.md index 36890abdac..3629ba458b 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromIpAddressList-example) {#allowAccessToReplicantFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnet.md index f3ac42e431..199dd41c87 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromSubnet-example) {#allowAccessToReplicantFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnetList.md index af65f61cf6..dbb031d517 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromSubnetList-example) {#allowAccessToReplicantFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuest.md index 772273c5fe..5e067e444d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromVirtualGuest-example) {#allowAccessToReplicantFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuestList.md index f5d1f8c445..007c7edcc1 100644 --- a/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage/allowAccessToReplicantFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromVirtualGuestList-example) {#allowAccessToReplicantFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/allowAccessToReplicantFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/assignCredential.md b/content/reference/services/SoftLayer_Network_Storage/assignCredential.md index 71a7b66b74..498689350e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/assignCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage/assignCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#assignCredential-example) {#assignCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/assignCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/assignNewCredential.md b/content/reference/services/SoftLayer_Network_Storage/assignNewCredential.md index 6c55ab70b0..9976f671ad 100644 --- a/content/reference/services/SoftLayer_Network_Storage/assignNewCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage/assignNewCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#assignNewCredential-example) {#assignNewCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/assignNewCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/changePassword.md b/content/reference/services/SoftLayer_Network_Storage/changePassword.md index 5c0b37786a..b2e7d490d2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/changePassword.md +++ b/content/reference/services/SoftLayer_Network_Storage/changePassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#changePassword-example) {#changePassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/changePassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/collectBandwidth.md b/content/reference/services/SoftLayer_Network_Storage/collectBandwidth.md index c2bffe9f3b..876375dc56 100644 --- a/content/reference/services/SoftLayer_Network_Storage/collectBandwidth.md +++ b/content/reference/services/SoftLayer_Network_Storage/collectBandwidth.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#collectBandwidth-example) {#collectBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/collectBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/collectBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage/collectBytesUsed.md index 36edbdec87..936ec45057 100644 --- a/content/reference/services/SoftLayer_Network_Storage/collectBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage/collectBytesUsed.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#collectBytesUsed-example) {#collectBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/collectBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/convertCloneDependentToIndependent.md b/content/reference/services/SoftLayer_Network_Storage/convertCloneDependentToIndependent.md index efbb0f800e..2fd190ef58 100644 --- a/content/reference/services/SoftLayer_Network_Storage/convertCloneDependentToIndependent.md +++ b/content/reference/services/SoftLayer_Network_Storage/convertCloneDependentToIndependent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#convertCloneDependentToIndependent-example) {#convertCloneDependentToIndependent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/convertCloneDependentToIndependent' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/createFolder.md b/content/reference/services/SoftLayer_Network_Storage/createFolder.md index 7ecf769b23..5bec70b970 100644 --- a/content/reference/services/SoftLayer_Network_Storage/createFolder.md +++ b/content/reference/services/SoftLayer_Network_Storage/createFolder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#createFolder-example) {#createFolder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/createFolder' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/createOrUpdateLunId.md b/content/reference/services/SoftLayer_Network_Storage/createOrUpdateLunId.md index 08ed3b3dce..ad0c4387b1 100644 --- a/content/reference/services/SoftLayer_Network_Storage/createOrUpdateLunId.md +++ b/content/reference/services/SoftLayer_Network_Storage/createOrUpdateLunId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#createOrUpdateLunId-example) {#createOrUpdateLunId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/createOrUpdateLunId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/createSnapshot.md b/content/reference/services/SoftLayer_Network_Storage/createSnapshot.md index a945111c92..e8c60fe450 100644 --- a/content/reference/services/SoftLayer_Network_Storage/createSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage/createSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#createSnapshot-example) {#createSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/createSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/deleteAllFiles.md b/content/reference/services/SoftLayer_Network_Storage/deleteAllFiles.md index 348955f19b..75217f1388 100644 --- a/content/reference/services/SoftLayer_Network_Storage/deleteAllFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage/deleteAllFiles.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#deleteAllFiles-example) {#deleteAllFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/deleteAllFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/deleteFile.md b/content/reference/services/SoftLayer_Network_Storage/deleteFile.md index dc531391c7..4ed0f920e5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/deleteFile.md +++ b/content/reference/services/SoftLayer_Network_Storage/deleteFile.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#deleteFile-example) {#deleteFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/deleteFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/deleteFiles.md b/content/reference/services/SoftLayer_Network_Storage/deleteFiles.md index 8f6b98dccd..6794b9800c 100644 --- a/content/reference/services/SoftLayer_Network_Storage/deleteFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage/deleteFiles.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#deleteFiles-example) {#deleteFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/deleteFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/deleteFolder.md b/content/reference/services/SoftLayer_Network_Storage/deleteFolder.md index 8c54ffe68d..5f127159c9 100644 --- a/content/reference/services/SoftLayer_Network_Storage/deleteFolder.md +++ b/content/reference/services/SoftLayer_Network_Storage/deleteFolder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#deleteFolder-example) {#deleteFolder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/deleteFolder' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage/deleteObject.md index 66ffe84679..9d632df401 100644 --- a/content/reference/services/SoftLayer_Network_Storage/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/disableSnapshots.md b/content/reference/services/SoftLayer_Network_Storage/disableSnapshots.md index 63b7853577..2cac4d005d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/disableSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage/disableSnapshots.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#disableSnapshots-example) {#disableSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/disableSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/disasterRecoveryFailoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage/disasterRecoveryFailoverToReplicant.md index 126de38b61..dac8a9fc50 100644 --- a/content/reference/services/SoftLayer_Network_Storage/disasterRecoveryFailoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage/disasterRecoveryFailoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#disasterRecoveryFailoverToReplicant-example) {#disasterRecoveryFailoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/disasterRecoveryFailoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/downloadFile.md b/content/reference/services/SoftLayer_Network_Storage/downloadFile.md index 649441c3d3..e9b8645a8e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/downloadFile.md +++ b/content/reference/services/SoftLayer_Network_Storage/downloadFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#downloadFile-example) {#downloadFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/downloadFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/editCredential.md b/content/reference/services/SoftLayer_Network_Storage/editCredential.md index 212a2aa79b..95f167c5ee 100644 --- a/content/reference/services/SoftLayer_Network_Storage/editCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage/editCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#editCredential-example) {#editCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/editCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/editObject.md b/content/reference/services/SoftLayer_Network_Storage/editObject.md index 960e66ccdb..da5d36cf3d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/enableSnapshots.md b/content/reference/services/SoftLayer_Network_Storage/enableSnapshots.md index b2b7a58dc6..6f634330e4 100644 --- a/content/reference/services/SoftLayer_Network_Storage/enableSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage/enableSnapshots.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#enableSnapshots-example) {#enableSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/enableSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/failbackFromReplicant.md b/content/reference/services/SoftLayer_Network_Storage/failbackFromReplicant.md index 287eb56f43..4e5b1a893a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/failbackFromReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage/failbackFromReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#failbackFromReplicant-example) {#failbackFromReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/failbackFromReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/failoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage/failoverToReplicant.md index 6bfeedd0a8..272b9f3c7f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/failoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage/failoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#failoverToReplicant-example) {#failoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/failoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAccount.md b/content/reference/services/SoftLayer_Network_Storage/getAccount.md index 6a5037f340..b86c786ee9 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAccountPassword.md b/content/reference/services/SoftLayer_Network_Storage/getAccountPassword.md index 90d2fb4b9f..a6c8a30e4a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAccountPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAccountPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAccountPassword-example) {#getAccountPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAccountPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getActiveTransactions.md b/content/reference/services/SoftLayer_Network_Storage/getActiveTransactions.md index 8ab07cc5e8..0688f26476 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Network_Storage/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllFiles.md b/content/reference/services/SoftLayer_Network_Storage/getAllFiles.md index b2a8a32632..69784ce960 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllFiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllFiles-example) {#getAllFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllFilesByFilter.md b/content/reference/services/SoftLayer_Network_Storage/getAllFilesByFilter.md index 34f2e4a09c..657504d9f2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllFilesByFilter.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllFilesByFilter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllFilesByFilter-example) {#getAllFilesByFilter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllFilesByFilter' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailback.md b/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailback.md index 7c61da2337..ec73d49d2f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailback.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailback.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowDisasterRecoveryFailback-example) {#getAllowDisasterRecoveryFailback-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowDisasterRecoveryFailback' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailover.md b/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailover.md index d2e6a8aaf8..8e6d32a98d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailover.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowDisasterRecoveryFailover.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowDisasterRecoveryFailover-example) {#getAllowDisasterRecoveryFailover-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowDisasterRecoveryFailover' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowableHardware.md b/content/reference/services/SoftLayer_Network_Storage/getAllowableHardware.md index ed099cc95a..ff281627eb 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowableHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowableHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowableHardware-example) {#getAllowableHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowableHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowableIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage/getAllowableIpAddresses.md index 818aee7396..c75f242241 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowableIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowableIpAddresses-example) {#getAllowableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowableSubnets.md b/content/reference/services/SoftLayer_Network_Storage/getAllowableSubnets.md index 3899e7313b..afba67a9b1 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowableSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowableSubnets-example) {#getAllowableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowableVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage/getAllowableVirtualGuests.md index b984116f33..d2174ff15f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowableVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowableVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowableVirtualGuests-example) {#getAllowableVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowableVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedHardware.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedHardware.md index 6452b37ede..2fde61a6c2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedHardware-example) {#getAllowedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedHostsLimit.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedHostsLimit.md index 2f2a467a71..e1cc724e6d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedHostsLimit.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedHostsLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedHostsLimit-example) {#getAllowedHostsLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedHostsLimit' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedIpAddresses.md index b1ba1e3c82..c1588f1383 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedIpAddresses-example) {#getAllowedIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationHardware.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationHardware.md index 95c1a700bb..e49dfb9ddf 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedReplicationHardware-example) {#getAllowedReplicationHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedReplicationHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationIpAddresses.md index 9c82ac06ec..bcf9a8e27c 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedReplicationIpAddresses-example) {#getAllowedReplicationIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedReplicationIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationSubnets.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationSubnets.md index a453f1ad39..cf46494a0a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedReplicationSubnets-example) {#getAllowedReplicationSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedReplicationSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationVirtualGuests.md index 1589b9974f..8a044ac3bf 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedReplicationVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedReplicationVirtualGuests-example) {#getAllowedReplicationVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedReplicationVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedSubnets.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedSubnets.md index af0a551a2e..fa74ea80b9 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedSubnets-example) {#getAllowedSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getAllowedVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage/getAllowedVirtualGuests.md index f701c303c4..6215549d56 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getAllowedVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage/getAllowedVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getAllowedVirtualGuests-example) {#getAllowedVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getAllowedVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getBillingItem.md b/content/reference/services/SoftLayer_Network_Storage/getBillingItem.md index 596205a61e..9042d75d68 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Storage/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getBillingItemCategory.md b/content/reference/services/SoftLayer_Network_Storage/getBillingItemCategory.md index eb004d6816..0f8202170e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getBillingItemCategory.md +++ b/content/reference/services/SoftLayer_Network_Storage/getBillingItemCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getBillingItemCategory-example) {#getBillingItemCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getBillingItemCategory' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getByUsername.md b/content/reference/services/SoftLayer_Network_Storage/getByUsername.md index 9647b6c747..2f76212cd2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getByUsername.md +++ b/content/reference/services/SoftLayer_Network_Storage/getByUsername.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getByUsername-example) {#getByUsername-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/getByUsername' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage/getBytesUsed.md index 01145657d6..18a615878a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage/getBytesUsed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getBytesUsed-example) {#getBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getCdnUrls.md b/content/reference/services/SoftLayer_Network_Storage/getCdnUrls.md index f3d9b41c3a..124e627c73 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getCdnUrls.md +++ b/content/reference/services/SoftLayer_Network_Storage/getCdnUrls.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getCdnUrls-example) {#getCdnUrls-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getCdnUrls' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getClusterResource.md b/content/reference/services/SoftLayer_Network_Storage/getClusterResource.md index 490ea2b29f..315eb17d5b 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getClusterResource.md +++ b/content/reference/services/SoftLayer_Network_Storage/getClusterResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getClusterResource-example) {#getClusterResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getClusterResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getCreationScheduleId.md b/content/reference/services/SoftLayer_Network_Storage/getCreationScheduleId.md index 97a83fa28e..1ee5e073bf 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getCreationScheduleId.md +++ b/content/reference/services/SoftLayer_Network_Storage/getCreationScheduleId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getCreationScheduleId-example) {#getCreationScheduleId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getCreationScheduleId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getCredentials.md b/content/reference/services/SoftLayer_Network_Storage/getCredentials.md index dbafd7fe28..3a875a7414 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getCredentials.md +++ b/content/reference/services/SoftLayer_Network_Storage/getCredentials.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getCredentials-example) {#getCredentials-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getCredentials' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getDailySchedule.md b/content/reference/services/SoftLayer_Network_Storage/getDailySchedule.md index 321240898f..851acdc784 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getDailySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage/getDailySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getDailySchedule-example) {#getDailySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getDailySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicate.md b/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicate.md index 0877e047bf..072463ba90 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getDependentDuplicate-example) {#getDependentDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getDependentDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicates.md b/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicates.md index 1a7275e5e9..39196b5e00 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicates.md +++ b/content/reference/services/SoftLayer_Network_Storage/getDependentDuplicates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getDependentDuplicates-example) {#getDependentDuplicates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getDependentDuplicates' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getDuplicateConversionStatus.md b/content/reference/services/SoftLayer_Network_Storage/getDuplicateConversionStatus.md index 441dc9a713..ebc00a1861 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getDuplicateConversionStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage/getDuplicateConversionStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getDuplicateConversionStatus-example) {#getDuplicateConversionStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getDuplicateConversionStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getEvents.md b/content/reference/services/SoftLayer_Network_Storage/getEvents.md index bbb9263571..2f0406746d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage/getEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getEvents-example) {#getEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFailbackNotAllowed.md b/content/reference/services/SoftLayer_Network_Storage/getFailbackNotAllowed.md index dcbcdc45ef..28fbc473d5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFailbackNotAllowed.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFailbackNotAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFailbackNotAllowed-example) {#getFailbackNotAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFailbackNotAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFailoverNotAllowed.md b/content/reference/services/SoftLayer_Network_Storage/getFailoverNotAllowed.md index 527760e06b..b84583d929 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFailoverNotAllowed.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFailoverNotAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFailoverNotAllowed-example) {#getFailoverNotAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFailoverNotAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFileBlockEncryptedLocations.md b/content/reference/services/SoftLayer_Network_Storage/getFileBlockEncryptedLocations.md index 6278975fcd..a27149f4ae 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFileBlockEncryptedLocations.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFileBlockEncryptedLocations.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFileBlockEncryptedLocations-example) {#getFileBlockEncryptedLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/getFileBlockEncryptedLocations' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFileByIdentifier.md b/content/reference/services/SoftLayer_Network_Storage/getFileByIdentifier.md index b0e34288ac..7d65368c52 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFileByIdentifier.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFileByIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFileByIdentifier-example) {#getFileByIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFileByIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFileCount.md b/content/reference/services/SoftLayer_Network_Storage/getFileCount.md index 99ee0b1092..5c67775f4f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFileCount.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFileCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFileCount-example) {#getFileCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFileCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFileList.md b/content/reference/services/SoftLayer_Network_Storage/getFileList.md index d04ae1f648..c807a4db3e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFileList.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFileList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFileList-example) {#getFileList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFileList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFileNetworkMountAddress.md b/content/reference/services/SoftLayer_Network_Storage/getFileNetworkMountAddress.md index 4d7869f43e..1666cfed2b 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFileNetworkMountAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFileNetworkMountAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFileNetworkMountAddress-example) {#getFileNetworkMountAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFileNetworkMountAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFilePendingDeleteCount.md b/content/reference/services/SoftLayer_Network_Storage/getFilePendingDeleteCount.md index ca7871cafa..f7be5955e9 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFilePendingDeleteCount.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFilePendingDeleteCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFilePendingDeleteCount-example) {#getFilePendingDeleteCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFilePendingDeleteCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFilesPendingDelete.md b/content/reference/services/SoftLayer_Network_Storage/getFilesPendingDelete.md index 12cbc365c5..c54b391851 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFilesPendingDelete.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFilesPendingDelete.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFilesPendingDelete-example) {#getFilesPendingDelete-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFilesPendingDelete' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFixReplicationCurrentStatus.md b/content/reference/services/SoftLayer_Network_Storage/getFixReplicationCurrentStatus.md index 5938ee6d78..777a61ad04 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFixReplicationCurrentStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFixReplicationCurrentStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFixReplicationCurrentStatus-example) {#getFixReplicationCurrentStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFixReplicationCurrentStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getFolderList.md b/content/reference/services/SoftLayer_Network_Storage/getFolderList.md index 58e645cdb7..a1003c79fd 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getFolderList.md +++ b/content/reference/services/SoftLayer_Network_Storage/getFolderList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getFolderList-example) {#getFolderList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getFolderList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getGraph.md b/content/reference/services/SoftLayer_Network_Storage/getGraph.md index 60d8ec22ec..0bb3c1ae06 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getGraph.md +++ b/content/reference/services/SoftLayer_Network_Storage/getGraph.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getGraph-example) {#getGraph-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getGraph' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getHardware.md b/content/reference/services/SoftLayer_Network_Storage/getHardware.md index 6a6df1ea68..8740269b82 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getHasEncryptionAtRest.md b/content/reference/services/SoftLayer_Network_Storage/getHasEncryptionAtRest.md index 2ba8d6afe3..5854c0401a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getHasEncryptionAtRest.md +++ b/content/reference/services/SoftLayer_Network_Storage/getHasEncryptionAtRest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getHasEncryptionAtRest-example) {#getHasEncryptionAtRest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getHasEncryptionAtRest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getHourlySchedule.md b/content/reference/services/SoftLayer_Network_Storage/getHourlySchedule.md index aa9d5209ae..83d1847404 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getHourlySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage/getHourlySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getHourlySchedule-example) {#getHourlySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getHourlySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIntervalSchedule.md b/content/reference/services/SoftLayer_Network_Storage/getIntervalSchedule.md index 741dfd70d7..06d7160e3d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIntervalSchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIntervalSchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIntervalSchedule-example) {#getIntervalSchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIntervalSchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIops.md b/content/reference/services/SoftLayer_Network_Storage/getIops.md index fbb0e8d833..d04eb8e42d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIops.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIops.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIops-example) {#getIops-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIops' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsConvertToIndependentTransactionInProgress.md b/content/reference/services/SoftLayer_Network_Storage/getIsConvertToIndependentTransactionInProgress.md index 36a1494344..6433702e09 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsConvertToIndependentTransactionInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsConvertToIndependentTransactionInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsConvertToIndependentTransactionInProgress-example) {#getIsConvertToIndependentTransactionInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsConvertToIndependentTransactionInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsDependentDuplicateProvisionCompleted.md b/content/reference/services/SoftLayer_Network_Storage/getIsDependentDuplicateProvisionCompleted.md index f8791dc6dc..98745ca6fb 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsDependentDuplicateProvisionCompleted.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsDependentDuplicateProvisionCompleted.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsDependentDuplicateProvisionCompleted-example) {#getIsDependentDuplicateProvisionCompleted-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsDependentDuplicateProvisionCompleted' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsInDedicatedServiceResource.md b/content/reference/services/SoftLayer_Network_Storage/getIsInDedicatedServiceResource.md index e4366ad2f1..0e3fde8518 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsInDedicatedServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsInDedicatedServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsInDedicatedServiceResource-example) {#getIsInDedicatedServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsInDedicatedServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsMagneticStorage.md b/content/reference/services/SoftLayer_Network_Storage/getIsMagneticStorage.md index bc1e89685d..7c7ebf6268 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsMagneticStorage.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsMagneticStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsMagneticStorage-example) {#getIsMagneticStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsMagneticStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsProvisionInProgress.md b/content/reference/services/SoftLayer_Network_Storage/getIsProvisionInProgress.md index 8cc03cae20..4e45e1be2d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsProvisionInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsProvisionInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsProvisionInProgress-example) {#getIsProvisionInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsProvisionInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsReadyForSnapshot.md b/content/reference/services/SoftLayer_Network_Storage/getIsReadyForSnapshot.md index e301d594aa..7d948e9076 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsReadyForSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsReadyForSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsReadyForSnapshot-example) {#getIsReadyForSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsReadyForSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIsReadyToMount.md b/content/reference/services/SoftLayer_Network_Storage/getIsReadyToMount.md index fa7d9c3eb6..cfa5b212f5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIsReadyToMount.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIsReadyToMount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIsReadyToMount-example) {#getIsReadyToMount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIsReadyToMount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIscsiLuns.md b/content/reference/services/SoftLayer_Network_Storage/getIscsiLuns.md index 5cc3936ae0..3523a1f8dc 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIscsiLuns.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIscsiLuns.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIscsiLuns-example) {#getIscsiLuns-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIscsiLuns' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIscsiReplicatingVolume.md b/content/reference/services/SoftLayer_Network_Storage/getIscsiReplicatingVolume.md index 7bae201201..f1d154aa5c 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIscsiReplicatingVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIscsiReplicatingVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIscsiReplicatingVolume-example) {#getIscsiReplicatingVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIscsiReplicatingVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getIscsiTargetIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage/getIscsiTargetIpAddresses.md index b12b4f56fd..94b1f234a7 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getIscsiTargetIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage/getIscsiTargetIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getIscsiTargetIpAddresses-example) {#getIscsiTargetIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getIscsiTargetIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getLunId.md b/content/reference/services/SoftLayer_Network_Storage/getLunId.md index c47af7470e..8d703136db 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getLunId.md +++ b/content/reference/services/SoftLayer_Network_Storage/getLunId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getLunId-example) {#getLunId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getLunId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getManualSnapshots.md b/content/reference/services/SoftLayer_Network_Storage/getManualSnapshots.md index bdfd6fe8e6..31d60ca29e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getManualSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage/getManualSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getManualSnapshots-example) {#getManualSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getManualSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getMaximumExpansionSize.md b/content/reference/services/SoftLayer_Network_Storage/getMaximumExpansionSize.md index f5fab528b6..a430ce7201 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getMaximumExpansionSize.md +++ b/content/reference/services/SoftLayer_Network_Storage/getMaximumExpansionSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getMaximumExpansionSize-example) {#getMaximumExpansionSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getMaximumExpansionSize' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Storage/getMetricTrackingObject.md index 868ea6a4bf..5a8ff3a75d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Storage/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getMountPath.md b/content/reference/services/SoftLayer_Network_Storage/getMountPath.md index d93fc83905..5111250079 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getMountPath.md +++ b/content/reference/services/SoftLayer_Network_Storage/getMountPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getMountPath-example) {#getMountPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getMountPath' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getMountableFlag.md b/content/reference/services/SoftLayer_Network_Storage/getMountableFlag.md index 397b367854..3e8d83e4b4 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getMountableFlag.md +++ b/content/reference/services/SoftLayer_Network_Storage/getMountableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getMountableFlag-example) {#getMountableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getMountableFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getMoveAndSplitStatus.md b/content/reference/services/SoftLayer_Network_Storage/getMoveAndSplitStatus.md index 0cc46ba62a..197728f138 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getMoveAndSplitStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage/getMoveAndSplitStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getMoveAndSplitStatus-example) {#getMoveAndSplitStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getMoveAndSplitStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage/getNetworkConnectionDetails.md index 4d1b534eff..0ecf9616f8 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage/getNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getNetworkConnectionDetails-example) {#getNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getNetworkMountAddress.md b/content/reference/services/SoftLayer_Network_Storage/getNetworkMountAddress.md index 14ddc3e75d..e1571f2f82 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getNetworkMountAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage/getNetworkMountAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getNetworkMountAddress-example) {#getNetworkMountAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getNetworkMountAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getNetworkMountPath.md b/content/reference/services/SoftLayer_Network_Storage/getNetworkMountPath.md index 5387b8479c..dd362d3eec 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getNetworkMountPath.md +++ b/content/reference/services/SoftLayer_Network_Storage/getNetworkMountPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getNetworkMountPath-example) {#getNetworkMountPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getNetworkMountPath' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getNotificationSubscribers.md b/content/reference/services/SoftLayer_Network_Storage/getNotificationSubscribers.md index d0aea2c266..88f49232ee 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_Network_Storage/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getObject.md b/content/reference/services/SoftLayer_Network_Storage/getObject.md index c2c7f86977..f21295b5ea 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage/getObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getObjectStorageConnectionInformation.md b/content/reference/services/SoftLayer_Network_Storage/getObjectStorageConnectionInformation.md index 7d294d6f11..2e041cfd39 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getObjectStorageConnectionInformation.md +++ b/content/reference/services/SoftLayer_Network_Storage/getObjectStorageConnectionInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getObjectStorageConnectionInformation-example) {#getObjectStorageConnectionInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/getObjectStorageConnectionInformation' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getObjectsByCredential.md b/content/reference/services/SoftLayer_Network_Storage/getObjectsByCredential.md index 016d0b78ab..26a2997665 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getObjectsByCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage/getObjectsByCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getObjectsByCredential-example) {#getObjectsByCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/getObjectsByCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getOriginalSnapshotName.md b/content/reference/services/SoftLayer_Network_Storage/getOriginalSnapshotName.md index ef32d071d1..b1b23970b4 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getOriginalSnapshotName.md +++ b/content/reference/services/SoftLayer_Network_Storage/getOriginalSnapshotName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getOriginalSnapshotName-example) {#getOriginalSnapshotName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getOriginalSnapshotName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeId.md b/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeId.md index f5bc4a2a5e..1196bfd9b0 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeId.md +++ b/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getOriginalVolumeId-example) {#getOriginalVolumeId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getOriginalVolumeId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeName.md b/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeName.md index 36754915a6..a873d8be71 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeName.md +++ b/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getOriginalVolumeName-example) {#getOriginalVolumeName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getOriginalVolumeName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeSize.md b/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeSize.md index fab3756684..ad25602590 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeSize.md +++ b/content/reference/services/SoftLayer_Network_Storage/getOriginalVolumeSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getOriginalVolumeSize-example) {#getOriginalVolumeSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getOriginalVolumeSize' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getOsType.md b/content/reference/services/SoftLayer_Network_Storage/getOsType.md index 415b09a9c1..209099fe8e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getOsType.md +++ b/content/reference/services/SoftLayer_Network_Storage/getOsType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getOsType-example) {#getOsType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getOsType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getOsTypeId.md b/content/reference/services/SoftLayer_Network_Storage/getOsTypeId.md index 1732d7ccb0..bfad2b74a0 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getOsTypeId.md +++ b/content/reference/services/SoftLayer_Network_Storage/getOsTypeId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getOsTypeId-example) {#getOsTypeId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getOsTypeId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getParentPartnerships.md b/content/reference/services/SoftLayer_Network_Storage/getParentPartnerships.md index 0062a711dd..0bef42e4d2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getParentPartnerships.md +++ b/content/reference/services/SoftLayer_Network_Storage/getParentPartnerships.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getParentPartnerships-example) {#getParentPartnerships-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getParentPartnerships' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getParentVolume.md b/content/reference/services/SoftLayer_Network_Storage/getParentVolume.md index 0f8ab633c7..8d00dad5d6 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getParentVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage/getParentVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getParentVolume-example) {#getParentVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getParentVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getPartnerships.md b/content/reference/services/SoftLayer_Network_Storage/getPartnerships.md index ddfafada2f..f927349c4b 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getPartnerships.md +++ b/content/reference/services/SoftLayer_Network_Storage/getPartnerships.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getPartnerships-example) {#getPartnerships-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getPartnerships' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getPermissionsGroups.md b/content/reference/services/SoftLayer_Network_Storage/getPermissionsGroups.md index cd128567aa..b91d749fc5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getPermissionsGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage/getPermissionsGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getPermissionsGroups-example) {#getPermissionsGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getPermissionsGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getProperties.md b/content/reference/services/SoftLayer_Network_Storage/getProperties.md index 15aae173ae..c229d655b3 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getProperties.md +++ b/content/reference/services/SoftLayer_Network_Storage/getProperties.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getProperties-example) {#getProperties-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getProperties' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getProvisionedIops.md b/content/reference/services/SoftLayer_Network_Storage/getProvisionedIops.md index 525c59b0a8..2fa80ce680 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getProvisionedIops.md +++ b/content/reference/services/SoftLayer_Network_Storage/getProvisionedIops.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getProvisionedIops-example) {#getProvisionedIops-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getProvisionedIops' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getRecycleBinFileByIdentifier.md b/content/reference/services/SoftLayer_Network_Storage/getRecycleBinFileByIdentifier.md index 9697d5095a..874c1b4602 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getRecycleBinFileByIdentifier.md +++ b/content/reference/services/SoftLayer_Network_Storage/getRecycleBinFileByIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getRecycleBinFileByIdentifier-example) {#getRecycleBinFileByIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getRecycleBinFileByIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHosts.md b/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHosts.md index 5bdb17f81c..03c7ab31b9 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHosts.md +++ b/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getRemainingAllowedHosts-example) {#getRemainingAllowedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getRemainingAllowedHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHostsForReplicant.md b/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHostsForReplicant.md index a81dd654fd..9dede78ac7 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHostsForReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage/getRemainingAllowedHostsForReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getRemainingAllowedHostsForReplicant-example) {#getRemainingAllowedHostsForReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getRemainingAllowedHostsForReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicatingLuns.md b/content/reference/services/SoftLayer_Network_Storage/getReplicatingLuns.md index cdcf6dabd0..4c80eaa2a3 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicatingLuns.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicatingLuns.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicatingLuns-example) {#getReplicatingLuns-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicatingLuns' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicatingVolume.md b/content/reference/services/SoftLayer_Network_Storage/getReplicatingVolume.md index f73c2106a2..b1374b59bb 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicatingVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicatingVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicatingVolume-example) {#getReplicatingVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicatingVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicationEvents.md b/content/reference/services/SoftLayer_Network_Storage/getReplicationEvents.md index 9eb5534f08..19a064e470 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicationEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicationEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicationEvents-example) {#getReplicationEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicationEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicationPartners.md b/content/reference/services/SoftLayer_Network_Storage/getReplicationPartners.md index abfb15d833..ed0fb764d7 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicationPartners.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicationPartners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicationPartners-example) {#getReplicationPartners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicationPartners' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicationSchedule.md b/content/reference/services/SoftLayer_Network_Storage/getReplicationSchedule.md index 3f19314b86..4e5ae3cc61 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicationSchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicationSchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicationSchedule-example) {#getReplicationSchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicationSchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicationStatus.md b/content/reference/services/SoftLayer_Network_Storage/getReplicationStatus.md index a2560fa5c5..ee0bccfcf0 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicationStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicationStatus-example) {#getReplicationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicationStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getReplicationTimestamp.md b/content/reference/services/SoftLayer_Network_Storage/getReplicationTimestamp.md index dec68a4154..0d1ca4e313 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getReplicationTimestamp.md +++ b/content/reference/services/SoftLayer_Network_Storage/getReplicationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getReplicationTimestamp-example) {#getReplicationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getReplicationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSchedules.md b/content/reference/services/SoftLayer_Network_Storage/getSchedules.md index 3e8e42fa39..09252757f6 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSchedules.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSchedules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSchedules-example) {#getSchedules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSchedules' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage/getServiceResource.md index 0af3185486..393a4fba68 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getServiceResourceBackendIpAddress.md b/content/reference/services/SoftLayer_Network_Storage/getServiceResourceBackendIpAddress.md index 1a80748b62..e24c26d97e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getServiceResourceBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage/getServiceResourceBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getServiceResourceBackendIpAddress-example) {#getServiceResourceBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getServiceResourceBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getServiceResourceName.md b/content/reference/services/SoftLayer_Network_Storage/getServiceResourceName.md index 850a0bd982..986530f26c 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getServiceResourceName.md +++ b/content/reference/services/SoftLayer_Network_Storage/getServiceResourceName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getServiceResourceName-example) {#getServiceResourceName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getServiceResourceName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotCapacityGb.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotCapacityGb.md index a98cbbd416..3107605179 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotCapacityGb.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotCapacityGb.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotCapacityGb-example) {#getSnapshotCapacityGb-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotCapacityGb' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotCreationTimestamp.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotCreationTimestamp.md index 72453800de..63a4da8429 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotCreationTimestamp.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotCreationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotCreationTimestamp-example) {#getSnapshotCreationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotCreationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotDeletionThresholdPercentage.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotDeletionThresholdPercentage.md index d87663ac61..536509fef3 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotDeletionThresholdPercentage.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotDeletionThresholdPercentage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotDeletionThresholdPercentage-example) {#getSnapshotDeletionThresholdPercentage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotDeletionThresholdPercentage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotNotificationStatus.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotNotificationStatus.md index 4c43dca406..053c6f048e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotNotificationStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotNotificationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotNotificationStatus-example) {#getSnapshotNotificationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotNotificationStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotSizeBytes.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotSizeBytes.md index b5d73a82fe..166f262784 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotSizeBytes.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotSizeBytes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotSizeBytes-example) {#getSnapshotSizeBytes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotSizeBytes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotSpaceAvailable.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotSpaceAvailable.md index 329fb4e4ec..d6e5ae668f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotSpaceAvailable.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotSpaceAvailable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotSpaceAvailable-example) {#getSnapshotSpaceAvailable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotSpaceAvailable' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshots.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshots.md index a3e2c78e8b..d0f51641bb 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshots-example) {#getSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getSnapshotsForVolume.md b/content/reference/services/SoftLayer_Network_Storage/getSnapshotsForVolume.md index 815930fa61..0e3426e395 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getSnapshotsForVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage/getSnapshotsForVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getSnapshotsForVolume-example) {#getSnapshotsForVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getSnapshotsForVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getStaasVersion.md b/content/reference/services/SoftLayer_Network_Storage/getStaasVersion.md index 0fbbb8ae83..ec2409c089 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getStaasVersion.md +++ b/content/reference/services/SoftLayer_Network_Storage/getStaasVersion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getStaasVersion-example) {#getStaasVersion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getStaasVersion' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getStorageGroups.md b/content/reference/services/SoftLayer_Network_Storage/getStorageGroups.md index 4702a55ae0..76264daec5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getStorageGroupsNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage/getStorageGroupsNetworkConnectionDetails.md index 73f1d50d37..79d9d68332 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getStorageGroupsNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage/getStorageGroupsNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getStorageGroupsNetworkConnectionDetails-example) {#getStorageGroupsNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getStorageGroupsNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getStorageTierLevel.md b/content/reference/services/SoftLayer_Network_Storage/getStorageTierLevel.md index 15ff245235..94e24013aa 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getStorageTierLevel.md +++ b/content/reference/services/SoftLayer_Network_Storage/getStorageTierLevel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getStorageTierLevel-example) {#getStorageTierLevel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getStorageTierLevel' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getStorageType.md b/content/reference/services/SoftLayer_Network_Storage/getStorageType.md index ec51945f56..29adaf5d9c 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getStorageType.md +++ b/content/reference/services/SoftLayer_Network_Storage/getStorageType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getStorageType-example) {#getStorageType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getStorageType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getTargetIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage/getTargetIpAddresses.md index d0f4623959..783a355a35 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getTargetIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage/getTargetIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getTargetIpAddresses-example) {#getTargetIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getTargetIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getTotalBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage/getTotalBytesUsed.md index f1efc4fdc8..808bad5f1a 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getTotalBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage/getTotalBytesUsed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getTotalBytesUsed-example) {#getTotalBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getTotalBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getTotalScheduleSnapshotRetentionCount.md b/content/reference/services/SoftLayer_Network_Storage/getTotalScheduleSnapshotRetentionCount.md index 5267a80cab..a01ddcdb3f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getTotalScheduleSnapshotRetentionCount.md +++ b/content/reference/services/SoftLayer_Network_Storage/getTotalScheduleSnapshotRetentionCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getTotalScheduleSnapshotRetentionCount-example) {#getTotalScheduleSnapshotRetentionCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getTotalScheduleSnapshotRetentionCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getUsageNotification.md b/content/reference/services/SoftLayer_Network_Storage/getUsageNotification.md index 919845139c..5ac4f69de0 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getUsageNotification.md +++ b/content/reference/services/SoftLayer_Network_Storage/getUsageNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getUsageNotification-example) {#getUsageNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getUsageNotification' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getValidReplicationTargetDatacenterLocations.md b/content/reference/services/SoftLayer_Network_Storage/getValidReplicationTargetDatacenterLocations.md index 0d4ab84122..87198d3229 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getValidReplicationTargetDatacenterLocations.md +++ b/content/reference/services/SoftLayer_Network_Storage/getValidReplicationTargetDatacenterLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getValidReplicationTargetDatacenterLocations-example) {#getValidReplicationTargetDatacenterLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getValidReplicationTargetDatacenterLocations' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getVendorName.md b/content/reference/services/SoftLayer_Network_Storage/getVendorName.md index f5cdb773f1..4f03681f2f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getVendorName.md +++ b/content/reference/services/SoftLayer_Network_Storage/getVendorName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getVendorName-example) {#getVendorName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getVendorName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage/getVirtualGuest.md index 08f9d43bda..0bb51ff9d8 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getVolumeCountLimits.md b/content/reference/services/SoftLayer_Network_Storage/getVolumeCountLimits.md index cc3847f866..c1d99c7869 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getVolumeCountLimits.md +++ b/content/reference/services/SoftLayer_Network_Storage/getVolumeCountLimits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getVolumeCountLimits-example) {#getVolumeCountLimits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/getVolumeCountLimits' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getVolumeDuplicateParameters.md b/content/reference/services/SoftLayer_Network_Storage/getVolumeDuplicateParameters.md index b4b259124d..6344906a11 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getVolumeDuplicateParameters.md +++ b/content/reference/services/SoftLayer_Network_Storage/getVolumeDuplicateParameters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getVolumeDuplicateParameters-example) {#getVolumeDuplicateParameters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getVolumeDuplicateParameters' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getVolumeHistory.md b/content/reference/services/SoftLayer_Network_Storage/getVolumeHistory.md index 97a1107bc3..7acbd6ece2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getVolumeHistory.md +++ b/content/reference/services/SoftLayer_Network_Storage/getVolumeHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getVolumeHistory-example) {#getVolumeHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getVolumeHistory' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getVolumeStatus.md b/content/reference/services/SoftLayer_Network_Storage/getVolumeStatus.md index f1b2715257..d5f736b842 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getVolumeStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage/getVolumeStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getVolumeStatus-example) {#getVolumeStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getVolumeStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getWebccAccount.md b/content/reference/services/SoftLayer_Network_Storage/getWebccAccount.md index cfcfe3783d..b0694ab4cf 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getWebccAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage/getWebccAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getWebccAccount-example) {#getWebccAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getWebccAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/getWeeklySchedule.md b/content/reference/services/SoftLayer_Network_Storage/getWeeklySchedule.md index dab365aa30..cd872a1406 100644 --- a/content/reference/services/SoftLayer_Network_Storage/getWeeklySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage/getWeeklySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#getWeeklySchedule-example) {#getWeeklySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/getWeeklySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/immediateFailoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage/immediateFailoverToReplicant.md index 093db64588..5d4f45b428 100644 --- a/content/reference/services/SoftLayer_Network_Storage/immediateFailoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage/immediateFailoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#immediateFailoverToReplicant-example) {#immediateFailoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/immediateFailoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/initiateOriginVolumeReclaim.md b/content/reference/services/SoftLayer_Network_Storage/initiateOriginVolumeReclaim.md index 4baf8431b1..ffe020635d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/initiateOriginVolumeReclaim.md +++ b/content/reference/services/SoftLayer_Network_Storage/initiateOriginVolumeReclaim.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#initiateOriginVolumeReclaim-example) {#initiateOriginVolumeReclaim-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/initiateOriginVolumeReclaim' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/initiateVolumeCutover.md b/content/reference/services/SoftLayer_Network_Storage/initiateVolumeCutover.md index f0ae369805..c6271f2924 100644 --- a/content/reference/services/SoftLayer_Network_Storage/initiateVolumeCutover.md +++ b/content/reference/services/SoftLayer_Network_Storage/initiateVolumeCutover.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#initiateVolumeCutover-example) {#initiateVolumeCutover-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/initiateVolumeCutover' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/isBlockingOperationInProgress.md b/content/reference/services/SoftLayer_Network_Storage/isBlockingOperationInProgress.md index 0d677001a9..b8350b0248 100644 --- a/content/reference/services/SoftLayer_Network_Storage/isBlockingOperationInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage/isBlockingOperationInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#isBlockingOperationInProgress-example) {#isBlockingOperationInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/isBlockingOperationInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyForSnapshot.md b/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyForSnapshot.md index 013dbba970..4b6f9e003e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyForSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyForSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#isDuplicateReadyForSnapshot-example) {#isDuplicateReadyForSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/isDuplicateReadyForSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyToMount.md b/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyToMount.md index 8f44082648..cdc169aeb2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyToMount.md +++ b/content/reference/services/SoftLayer_Network_Storage/isDuplicateReadyToMount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#isDuplicateReadyToMount-example) {#isDuplicateReadyToMount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/isDuplicateReadyToMount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/isVolumeActive.md b/content/reference/services/SoftLayer_Network_Storage/isVolumeActive.md index 464a7af3c7..3731671251 100644 --- a/content/reference/services/SoftLayer_Network_Storage/isVolumeActive.md +++ b/content/reference/services/SoftLayer_Network_Storage/isVolumeActive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#isVolumeActive-example) {#isVolumeActive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/isVolumeActive' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/refreshDependentDuplicate.md b/content/reference/services/SoftLayer_Network_Storage/refreshDependentDuplicate.md index c301d6dfa9..c302239640 100644 --- a/content/reference/services/SoftLayer_Network_Storage/refreshDependentDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage/refreshDependentDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#refreshDependentDuplicate-example) {#refreshDependentDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/refreshDependentDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/refreshDuplicate.md b/content/reference/services/SoftLayer_Network_Storage/refreshDuplicate.md index 0924ff8fa6..29031a0125 100644 --- a/content/reference/services/SoftLayer_Network_Storage/refreshDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage/refreshDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#refreshDuplicate-example) {#refreshDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/refreshDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardware.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardware.md index f2a549eee9..b178801cb7 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromHardware-example) {#removeAccessFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardwareList.md index 06ad96e31b..f488dc5f8c 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromHardwareList-example) {#removeAccessFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHost.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHost.md index 0ed3085ea6..ea613b97b4 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHost.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromHost-example) {#removeAccessFromHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHostList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHostList.md index d2404bd9c7..3f88784dfe 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHostList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromHostList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromHostList-example) {#removeAccessFromHostList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromHostList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddress.md index 59e97a8898..7a676874f5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromIpAddress-example) {#removeAccessFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddressList.md index 13437461c9..1b6882a8bd 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromIpAddressList-example) {#removeAccessFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnet.md index d72828880a..508ecfefc5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromSubnet-example) {#removeAccessFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnetList.md index fd6bca8d9c..535c6808a2 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromSubnetList-example) {#removeAccessFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuest.md index d12bf567a5..2bb2bca4ee 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromVirtualGuest-example) {#removeAccessFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuestList.md index b55e777dee..494ee76d5e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessFromVirtualGuestList-example) {#removeAccessFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromHardwareList.md index 5ac9981be9..5c0b67eb8f 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromHardwareList-example) {#removeAccessToReplicantFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessToReplicantFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromIpAddressList.md index 613276527c..d5b21fc3ad 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromIpAddressList-example) {#removeAccessToReplicantFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessToReplicantFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnet.md index 029d66a0d3..28bad88c9d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromSubnet-example) {#removeAccessToReplicantFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessToReplicantFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnetList.md index b60a749b19..1931a7f0e6 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromSubnetList-example) {#removeAccessToReplicantFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessToReplicantFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromVirtualGuestList.md index f23de8adaf..20916cd67d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeAccessToReplicantFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromVirtualGuestList-example) {#removeAccessToReplicantFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeAccessToReplicantFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/removeCredential.md b/content/reference/services/SoftLayer_Network_Storage/removeCredential.md index 3307c500ce..2980b7049e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/removeCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage/removeCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#removeCredential-example) {#removeCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/removeCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/restoreFile.md b/content/reference/services/SoftLayer_Network_Storage/restoreFile.md index 98843eb760..9ecf24f11b 100644 --- a/content/reference/services/SoftLayer_Network_Storage/restoreFile.md +++ b/content/reference/services/SoftLayer_Network_Storage/restoreFile.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#restoreFile-example) {#restoreFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/restoreFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/restoreFromSnapshot.md b/content/reference/services/SoftLayer_Network_Storage/restoreFromSnapshot.md index 4dc102a4c5..b95a916123 100644 --- a/content/reference/services/SoftLayer_Network_Storage/restoreFromSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage/restoreFromSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#restoreFromSnapshot-example) {#restoreFromSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/restoreFromSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/sendPasswordReminderEmail.md b/content/reference/services/SoftLayer_Network_Storage/sendPasswordReminderEmail.md index dd795de0bb..c516522159 100644 --- a/content/reference/services/SoftLayer_Network_Storage/sendPasswordReminderEmail.md +++ b/content/reference/services/SoftLayer_Network_Storage/sendPasswordReminderEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#sendPasswordReminderEmail-example) {#sendPasswordReminderEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/sendPasswordReminderEmail' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/setMountable.md b/content/reference/services/SoftLayer_Network_Storage/setMountable.md index 9c694a6752..a0be54e88d 100644 --- a/content/reference/services/SoftLayer_Network_Storage/setMountable.md +++ b/content/reference/services/SoftLayer_Network_Storage/setMountable.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#setMountable-example) {#setMountable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/setMountable' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/setSnapshotAllocation.md b/content/reference/services/SoftLayer_Network_Storage/setSnapshotAllocation.md index 1481f1baab..ee6bfed6dc 100644 --- a/content/reference/services/SoftLayer_Network_Storage/setSnapshotAllocation.md +++ b/content/reference/services/SoftLayer_Network_Storage/setSnapshotAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#setSnapshotAllocation-example) {#setSnapshotAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/setSnapshotAllocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/setSnapshotNotification.md b/content/reference/services/SoftLayer_Network_Storage/setSnapshotNotification.md index cb2f45c022..45806a6bd4 100644 --- a/content/reference/services/SoftLayer_Network_Storage/setSnapshotNotification.md +++ b/content/reference/services/SoftLayer_Network_Storage/setSnapshotNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#setSnapshotNotification-example) {#setSnapshotNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/setSnapshotNotification' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/upgradeVolumeCapacity.md b/content/reference/services/SoftLayer_Network_Storage/upgradeVolumeCapacity.md index 6d6f79d232..ab8f635272 100644 --- a/content/reference/services/SoftLayer_Network_Storage/upgradeVolumeCapacity.md +++ b/content/reference/services/SoftLayer_Network_Storage/upgradeVolumeCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#upgradeVolumeCapacity-example) {#upgradeVolumeCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/upgradeVolumeCapacity' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/uploadFile.md b/content/reference/services/SoftLayer_Network_Storage/uploadFile.md index 27ca7fba2e..beaf875b8e 100644 --- a/content/reference/services/SoftLayer_Network_Storage/uploadFile.md +++ b/content/reference/services/SoftLayer_Network_Storage/uploadFile.md @@ -18,8 +18,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#uploadFile-example) {#uploadFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/uploadFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage/validateHostsAccess.md b/content/reference/services/SoftLayer_Network_Storage/validateHostsAccess.md index c419eb45d4..02944391c5 100644 --- a/content/reference/services/SoftLayer_Network_Storage/validateHostsAccess.md +++ b/content/reference/services/SoftLayer_Network_Storage/validateHostsAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage" --- -### Curl Example +# [REST Example](#validateHostsAccess-example) {#validateHostsAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage/{SoftLayer_Network_StorageID}/validateHostsAccess' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/assignSubnetsToAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/assignSubnetsToAcl.md index 65889d0d75..c4e8bfd960 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/assignSubnetsToAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/assignSubnetsToAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#assignSubnetsToAcl-example) {#assignSubnetsToAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/assignSubnetsToAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/editObject.md index 6b624a4849..b22c21e8d1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAllObjects.md index 3363e85f83..8fc7df6b43 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedGroups.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedGroups.md index ca50be9066..0c929ecc73 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getAssignedGroups-example) {#getAssignedGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getAssignedGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedIscsiVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedIscsiVolumes.md index 669a013d82..9623eb6acc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedIscsiVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedIscsiVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getAssignedIscsiVolumes-example) {#getAssignedIscsiVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getAssignedIscsiVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedNfsVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedNfsVolumes.md index b455da8cfe..e6660289f6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedNfsVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedNfsVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getAssignedNfsVolumes-example) {#getAssignedNfsVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getAssignedNfsVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedReplicationVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedReplicationVolumes.md index e95e97ae4e..8c3a8f9e3e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedReplicationVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedReplicationVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getAssignedReplicationVolumes-example) {#getAssignedReplicationVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getAssignedReplicationVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedVolumes.md index 69eac042bb..41fec73bc1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getAssignedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getAssignedVolumes-example) {#getAssignedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getAssignedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getCredential.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getCredential.md index 1278432c72..c04ef300e8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getCredential-example) {#getCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getObject.md index 0c4c439a92..0e15a7c178 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSourceSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSourceSubnet.md index da639df1b9..09321d8181 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSourceSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSourceSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getSourceSubnet-example) {#getSourceSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getSourceSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSubnetsInAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSubnetsInAcl.md index 5ace4b6484..4f7af4aa92 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSubnetsInAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/getSubnetsInAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#getSubnetsInAcl-example) {#getSubnetsInAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/getSubnetsInAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/removeSubnetsFromAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/removeSubnetsFromAcl.md index 1f6a39d65b..9aba9adbcc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/removeSubnetsFromAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/removeSubnetsFromAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#removeSubnetsFromAcl-example) {#removeSubnetsFromAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/removeSubnetsFromAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/setCredentialPassword.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/setCredentialPassword.md index 25ab20e4a0..2bbaad5af7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/setCredentialPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host/setCredentialPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host" --- -### Curl Example +# [REST Example](#setCredentialPassword-example) {#setCredentialPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host/{SoftLayer_Network_Storage_Allowed_HostID}/setCredentialPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/assignSubnetsToAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/assignSubnetsToAcl.md index 649dd001d3..c10a22b7d4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/assignSubnetsToAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/assignSubnetsToAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#assignSubnetsToAcl-example) {#assignSubnetsToAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/assignSubnetsToAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/editObject.md index 3994674fb1..348f5c4a4e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAccount.md index 759679413f..0e8a2cd357 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAllObjects.md index f0a0372589..4d341448ba 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedGroups.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedGroups.md index 0df7a24937..7c9cc22049 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAssignedGroups-example) {#getAssignedGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getAssignedGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedIscsiVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedIscsiVolumes.md index f31ce03841..5a1601735b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedIscsiVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedIscsiVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAssignedIscsiVolumes-example) {#getAssignedIscsiVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getAssignedIscsiVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedNfsVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedNfsVolumes.md index 47d485586c..7e1acac499 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedNfsVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedNfsVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAssignedNfsVolumes-example) {#getAssignedNfsVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getAssignedNfsVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedReplicationVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedReplicationVolumes.md index 5c2efa168a..273b3fcd9c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedReplicationVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedReplicationVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAssignedReplicationVolumes-example) {#getAssignedReplicationVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getAssignedReplicationVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedVolumes.md index 4d763fbc5a..ef06bcef2a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getAssignedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getAssignedVolumes-example) {#getAssignedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getAssignedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getCredential.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getCredential.md index 249d379356..abf1e4f103 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getCredential-example) {#getCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getObject.md index b53876eed4..8aa4bf3a24 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getResource.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getResource.md index 7df17493b0..e59a1f531d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getResource-example) {#getResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSourceSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSourceSubnet.md index 7cb7a015d4..60a68e51a5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSourceSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSourceSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getSourceSubnet-example) {#getSourceSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getSourceSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSubnetsInAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSubnetsInAcl.md index dd0de1f607..eaef4a2c8e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSubnetsInAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/getSubnetsInAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#getSubnetsInAcl-example) {#getSubnetsInAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/getSubnetsInAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/removeSubnetsFromAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/removeSubnetsFromAcl.md index 7f6a6dc007..52720ff9a7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/removeSubnetsFromAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/removeSubnetsFromAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#removeSubnetsFromAcl-example) {#removeSubnetsFromAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/removeSubnetsFromAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/setCredentialPassword.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/setCredentialPassword.md index b48728f5a7..f410873126 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/setCredentialPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Hardware/setCredentialPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Hardware" --- -### Curl Example +# [REST Example](#setCredentialPassword-example) {#setCredentialPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Hardware/{SoftLayer_Network_Storage_Allowed_Host_HardwareID}/setCredentialPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/assignSubnetsToAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/assignSubnetsToAcl.md index 8f79d7c5de..9b895f9a47 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/assignSubnetsToAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/assignSubnetsToAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#assignSubnetsToAcl-example) {#assignSubnetsToAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/assignSubnetsToAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/editObject.md index 5351eafffe..9b4563a0e6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAccount.md index f034be0229..ba9f352177 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAllObjects.md index 8a4f68fa0a..93717be5f7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedGroups.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedGroups.md index eea43c0ddf..0c1801a573 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAssignedGroups-example) {#getAssignedGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getAssignedGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedIscsiVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedIscsiVolumes.md index 637471af0f..f336cb27c1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedIscsiVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedIscsiVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAssignedIscsiVolumes-example) {#getAssignedIscsiVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getAssignedIscsiVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedNfsVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedNfsVolumes.md index 5318e1da6c..ae231ab1fd 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedNfsVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedNfsVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAssignedNfsVolumes-example) {#getAssignedNfsVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getAssignedNfsVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedReplicationVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedReplicationVolumes.md index f33cf65484..646a5ae526 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedReplicationVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedReplicationVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAssignedReplicationVolumes-example) {#getAssignedReplicationVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getAssignedReplicationVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedVolumes.md index 23d141c438..6b623cd4a4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getAssignedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getAssignedVolumes-example) {#getAssignedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getAssignedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getCredential.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getCredential.md index 697e35b8ca..6ff9a8762c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getCredential-example) {#getCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getObject.md index 216f66e1bf..7f636d7ee1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getResource.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getResource.md index 969fd83fac..4a4fe3a4ef 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getResource-example) {#getResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSourceSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSourceSubnet.md index 3f85ddbb88..6f8a4f54db 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSourceSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSourceSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getSourceSubnet-example) {#getSourceSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getSourceSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSubnetsInAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSubnetsInAcl.md index 764610c36b..783c9851e0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSubnetsInAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/getSubnetsInAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#getSubnetsInAcl-example) {#getSubnetsInAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/getSubnetsInAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/removeSubnetsFromAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/removeSubnetsFromAcl.md index 4fe38b8aba..ec87381c70 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/removeSubnetsFromAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/removeSubnetsFromAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#removeSubnetsFromAcl-example) {#removeSubnetsFromAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/removeSubnetsFromAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/setCredentialPassword.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/setCredentialPassword.md index 10f187db0d..3a9ac99a9c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/setCredentialPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_IpAddress/setCredentialPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_IpAddress" --- -### Curl Example +# [REST Example](#setCredentialPassword-example) {#setCredentialPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_IpAddress/{SoftLayer_Network_Storage_Allowed_Host_IpAddressID}/setCredentialPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/assignSubnetsToAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/assignSubnetsToAcl.md index f472871c7d..a955034d1f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/assignSubnetsToAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/assignSubnetsToAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#assignSubnetsToAcl-example) {#assignSubnetsToAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/assignSubnetsToAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/editObject.md index 19cfb8d160..86600390f8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAccount.md index d20bc67cda..1a4e029e90 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAllObjects.md index c824215c35..6269f0c6a1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedGroups.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedGroups.md index e744c3da66..9379cdcde6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAssignedGroups-example) {#getAssignedGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getAssignedGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedIscsiVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedIscsiVolumes.md index 9e340c6fa1..4d55dcd72c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedIscsiVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedIscsiVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAssignedIscsiVolumes-example) {#getAssignedIscsiVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getAssignedIscsiVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedNfsVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedNfsVolumes.md index 49843a260a..d8ab21590f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedNfsVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedNfsVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAssignedNfsVolumes-example) {#getAssignedNfsVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getAssignedNfsVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedReplicationVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedReplicationVolumes.md index ac6a68e0a6..2b647c4d3b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedReplicationVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedReplicationVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAssignedReplicationVolumes-example) {#getAssignedReplicationVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getAssignedReplicationVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedVolumes.md index e1049bf7fd..638e3f227a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getAssignedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getAssignedVolumes-example) {#getAssignedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getAssignedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getCredential.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getCredential.md index a3030aacdb..e083379e35 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getCredential-example) {#getCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getObject.md index 8022a8364b..64c73425cf 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getResource.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getResource.md index 63e039e566..069d9ac9e3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getResource-example) {#getResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSourceSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSourceSubnet.md index f558a919ba..8716e596c8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSourceSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSourceSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getSourceSubnet-example) {#getSourceSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getSourceSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSubnetsInAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSubnetsInAcl.md index a318fde8da..598b4d5c19 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSubnetsInAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/getSubnetsInAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#getSubnetsInAcl-example) {#getSubnetsInAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/getSubnetsInAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/removeSubnetsFromAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/removeSubnetsFromAcl.md index b5960f81b8..abf31b21f1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/removeSubnetsFromAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/removeSubnetsFromAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#removeSubnetsFromAcl-example) {#removeSubnetsFromAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/removeSubnetsFromAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/setCredentialPassword.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/setCredentialPassword.md index d2daa90907..649a238918 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/setCredentialPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_Subnet/setCredentialPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_Subnet" --- -### Curl Example +# [REST Example](#setCredentialPassword-example) {#setCredentialPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_Subnet/{SoftLayer_Network_Storage_Allowed_Host_SubnetID}/setCredentialPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/assignSubnetsToAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/assignSubnetsToAcl.md index 5b3c8722f8..272513588f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/assignSubnetsToAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/assignSubnetsToAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#assignSubnetsToAcl-example) {#assignSubnetsToAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/assignSubnetsToAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/editObject.md index 1758ca5904..0ad6d10029 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAccount.md index eae29ea49c..b75fbda82d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAllObjects.md index 3a369ab0aa..097a1fb9fe 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedGroups.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedGroups.md index 178d432cdc..1145c56f7a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAssignedGroups-example) {#getAssignedGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getAssignedGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedIscsiVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedIscsiVolumes.md index c5a99281ca..f7aea6c6c2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedIscsiVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedIscsiVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAssignedIscsiVolumes-example) {#getAssignedIscsiVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getAssignedIscsiVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedNfsVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedNfsVolumes.md index 3abe196d42..a4986419d4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedNfsVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedNfsVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAssignedNfsVolumes-example) {#getAssignedNfsVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getAssignedNfsVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedReplicationVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedReplicationVolumes.md index 493b44e50c..b7f46ac51e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedReplicationVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedReplicationVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAssignedReplicationVolumes-example) {#getAssignedReplicationVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getAssignedReplicationVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedVolumes.md index 978b0eb645..3797fe4203 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getAssignedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getAssignedVolumes-example) {#getAssignedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getAssignedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getCredential.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getCredential.md index 24a3d0a464..20132e8ff3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getCredential-example) {#getCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getObject.md index 0b006f9f4d..4ebc09ad6b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getResource.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getResource.md index f6bdb0e959..91b00c1f1f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getResource-example) {#getResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSourceSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSourceSubnet.md index 05aaa4a54a..ee2fe3d964 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSourceSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSourceSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getSourceSubnet-example) {#getSourceSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getSourceSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSubnetsInAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSubnetsInAcl.md index 8cabd42b18..7eb4fc12a3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSubnetsInAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/getSubnetsInAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#getSubnetsInAcl-example) {#getSubnetsInAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/getSubnetsInAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/removeSubnetsFromAcl.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/removeSubnetsFromAcl.md index 7dbbe261b8..904ce6699a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/removeSubnetsFromAcl.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/removeSubnetsFromAcl.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#removeSubnetsFromAcl-example) {#removeSubnetsFromAcl-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/removeSubnetsFromAcl' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/setCredentialPassword.md b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/setCredentialPassword.md index 58701df852..e33e1fc53c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/setCredentialPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/setCredentialPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Allowed_Host_VirtualGuest" --- -### Curl Example +# [REST Example](#setCredentialPassword-example) {#setCredentialPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Allowed_Host_VirtualGuest/{SoftLayer_Network_Storage_Allowed_Host_VirtualGuestID}/setCredentialPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardware.md index 4bd90a8e87..5e6b45d9a0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromHardware-example) {#allowAccessFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardwareList.md index 86f57c89a7..e69ec1235b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromHardwareList-example) {#allowAccessFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHost.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHost.md index 6bac0efd6f..319cc25ff8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromHost-example) {#allowAccessFromHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHostList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHostList.md index c6a54009c5..cea704af08 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHostList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromHostList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromHostList-example) {#allowAccessFromHostList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromHostList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddress.md index a923feee27..bc680bd755 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromIpAddress-example) {#allowAccessFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddressList.md index 2eaad61030..50336ae669 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromIpAddressList-example) {#allowAccessFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnet.md index 907089c21f..5f3324bc0b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromSubnet-example) {#allowAccessFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnetList.md index 0454bf5118..ebc047b6a7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromSubnetList-example) {#allowAccessFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuest.md index a2039d3607..9a965eb41b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromVirtualGuest-example) {#allowAccessFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuestList.md index c3df881a2b..54c2157cfc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessFromVirtualGuestList-example) {#allowAccessFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardware.md index a69d73c9cd..d9479b7af5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromHardware-example) {#allowAccessToReplicantFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardwareList.md index ca512b8a1f..c65ba799f7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromHardwareList-example) {#allowAccessToReplicantFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddress.md index c88fa50a06..b2643b1b99 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromIpAddress-example) {#allowAccessToReplicantFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddressList.md index a1c0c24837..4b00891781 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromIpAddressList-example) {#allowAccessToReplicantFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnet.md index 0cb1e9d1aa..9c6bf8166d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromSubnet-example) {#allowAccessToReplicantFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnetList.md index 058dfe87e7..d22bb91b8d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromSubnetList-example) {#allowAccessToReplicantFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuest.md index 9498bbf46d..40e21d2dfe 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromVirtualGuest-example) {#allowAccessToReplicantFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuestList.md index ebb0816bd0..6895444fa4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/allowAccessToReplicantFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromVirtualGuestList-example) {#allowAccessToReplicantFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/allowAccessToReplicantFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignCredential.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignCredential.md index 47281a4d19..a6edecdc43 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#assignCredential-example) {#assignCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/assignCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignNewCredential.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignNewCredential.md index 82229c9b63..194d26821e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignNewCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/assignNewCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#assignNewCredential-example) {#assignNewCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/assignNewCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/changePassword.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/changePassword.md index 55806bff22..d104477b1b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/changePassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/changePassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#changePassword-example) {#changePassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/changePassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBandwidth.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBandwidth.md index d263f1895e..f24701231c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBandwidth.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBandwidth.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#collectBandwidth-example) {#collectBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/collectBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBytesUsed.md index c0afdc71fc..a88f299dc2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/collectBytesUsed.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#collectBytesUsed-example) {#collectBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/collectBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/convertCloneDependentToIndependent.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/convertCloneDependentToIndependent.md index e435edf7e4..10549beb8f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/convertCloneDependentToIndependent.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/convertCloneDependentToIndependent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#convertCloneDependentToIndependent-example) {#convertCloneDependentToIndependent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/convertCloneDependentToIndependent' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createFolder.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createFolder.md index f523f48017..7efc1b1ee2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createFolder.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createFolder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#createFolder-example) {#createFolder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/createFolder' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createOrUpdateLunId.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createOrUpdateLunId.md index 5b5ee2477f..35c97872bb 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createOrUpdateLunId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createOrUpdateLunId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#createOrUpdateLunId-example) {#createOrUpdateLunId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/createOrUpdateLunId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createSnapshot.md index 61e1e45f98..3eebf1f4bb 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/createSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#createSnapshot-example) {#createSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/createSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteAllFiles.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteAllFiles.md index e22cedf74a..c318de4878 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteAllFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteAllFiles.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#deleteAllFiles-example) {#deleteAllFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/deleteAllFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFile.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFile.md index 0d9e2eafe1..2ad83a153c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFile.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#deleteFile-example) {#deleteFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/deleteFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFiles.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFiles.md index 9764f74088..816834840e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFiles.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#deleteFiles-example) {#deleteFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/deleteFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFolder.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFolder.md index 278a58fdb1..a7745127c9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFolder.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteFolder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#deleteFolder-example) {#deleteFolder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/deleteFolder' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteObject.md index f813f93b5e..555feb5db6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteTasks.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteTasks.md index 9bbd5d1950..cb4e034dd4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteTasks.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/deleteTasks.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#deleteTasks-example) {#deleteTasks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/deleteTasks' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disableSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disableSnapshots.md index 26e7647061..53782a4332 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disableSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disableSnapshots.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#disableSnapshots-example) {#disableSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/disableSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disasterRecoveryFailoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disasterRecoveryFailoverToReplicant.md index 220af2204b..9444111b78 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disasterRecoveryFailoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/disasterRecoveryFailoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#disasterRecoveryFailoverToReplicant-example) {#disasterRecoveryFailoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/disasterRecoveryFailoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/downloadFile.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/downloadFile.md index 0a41371c73..634430e3b4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/downloadFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/downloadFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#downloadFile-example) {#downloadFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/downloadFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editCredential.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editCredential.md index faae3db213..acef6f1b9e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#editCredential-example) {#editCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/editCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editObject.md index a505e6ecaa..710350ba08 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/enableSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/enableSnapshots.md index 63a806ad4f..ee0dcb4af3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/enableSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/enableSnapshots.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#enableSnapshots-example) {#enableSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/enableSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failbackFromReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failbackFromReplicant.md index 757bccadc9..510400f7db 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failbackFromReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failbackFromReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#failbackFromReplicant-example) {#failbackFromReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/failbackFromReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failoverToReplicant.md index c4617d1964..b04d902d44 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/failoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#failoverToReplicant-example) {#failoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/failoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccount.md index 72a7718bfd..b7b1099788 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccountPassword.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccountPassword.md index 41616060b6..f64a7c0144 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccountPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAccountPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAccountPassword-example) {#getAccountPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAccountPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getActiveTransactions.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getActiveTransactions.md index 3033c36d62..4ead033130 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFiles.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFiles.md index 619916067d..1e805c6ee9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllFiles-example) {#getAllFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFilesByFilter.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFilesByFilter.md index ad2afe3382..a2ae557581 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFilesByFilter.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllFilesByFilter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllFilesByFilter-example) {#getAllFilesByFilter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllFilesByFilter' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailback.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailback.md index 41ad80ce9f..64aac8f50a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailback.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailback.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowDisasterRecoveryFailback-example) {#getAllowDisasterRecoveryFailback-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowDisasterRecoveryFailback' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailover.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailover.md index 28d0048a86..b540b4497c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailover.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowDisasterRecoveryFailover.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowDisasterRecoveryFailover-example) {#getAllowDisasterRecoveryFailover-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowDisasterRecoveryFailover' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableHardware.md index d40f608875..a50ee45f34 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowableHardware-example) {#getAllowableHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowableHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableIpAddresses.md index db03dff90b..bd78c46cb5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowableIpAddresses-example) {#getAllowableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableSubnets.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableSubnets.md index 867ac01812..099cff1a6f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowableSubnets-example) {#getAllowableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableVirtualGuests.md index 037734abd7..f748bad49d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowableVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowableVirtualGuests-example) {#getAllowableVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowableVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHardware.md index fcb59e66cd..a0e673e96c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedHardware-example) {#getAllowedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHostsLimit.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHostsLimit.md index e29937d87f..efc1426be5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHostsLimit.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedHostsLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedHostsLimit-example) {#getAllowedHostsLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedHostsLimit' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedIpAddresses.md index b2af91207c..47e4c74043 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedIpAddresses-example) {#getAllowedIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationHardware.md index d7098d2c7e..899c86ad2d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedReplicationHardware-example) {#getAllowedReplicationHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedReplicationHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationIpAddresses.md index 5c602f8cd3..577f609e40 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedReplicationIpAddresses-example) {#getAllowedReplicationIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedReplicationIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationSubnets.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationSubnets.md index 34f11803ff..9dce2ed846 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedReplicationSubnets-example) {#getAllowedReplicationSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedReplicationSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationVirtualGuests.md index e646a1c669..60ffdffed5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedReplicationVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedReplicationVirtualGuests-example) {#getAllowedReplicationVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedReplicationVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedSubnets.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedSubnets.md index 1dd19baae2..1e878d3ff3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedSubnets-example) {#getAllowedSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedVirtualGuests.md index 6b315c8f62..7a912bd768 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getAllowedVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getAllowedVirtualGuests-example) {#getAllowedVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getAllowedVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItem.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItem.md index e8a0f82db5..a05393a2bb 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItemCategory.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItemCategory.md index 7fce3195c4..fdee9e9c20 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItemCategory.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBillingItemCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getBillingItemCategory-example) {#getBillingItemCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getBillingItemCategory' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getByUsername.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getByUsername.md index 27c39b183e..179be27829 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getByUsername.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getByUsername.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getByUsername-example) {#getByUsername-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getByUsername' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBytesUsed.md index 625b759655..cfa28c49dd 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getBytesUsed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getBytesUsed-example) {#getBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCdnUrls.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCdnUrls.md index ba659c0885..74c839f9dc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCdnUrls.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCdnUrls.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getCdnUrls-example) {#getCdnUrls-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getCdnUrls' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getClusterResource.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getClusterResource.md index 4b736b8df2..0fb0cb99af 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getClusterResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getClusterResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getClusterResource-example) {#getClusterResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getClusterResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCreationScheduleId.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCreationScheduleId.md index 5a6acdc6d5..187da6141a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCreationScheduleId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCreationScheduleId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getCreationScheduleId-example) {#getCreationScheduleId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getCreationScheduleId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCredentials.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCredentials.md index b4d1b3428f..b3d5559d19 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCredentials.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCredentials.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getCredentials-example) {#getCredentials-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getCredentials' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCurrentCyclePeakUsage.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCurrentCyclePeakUsage.md index 019b7596d4..94acf5a8c8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCurrentCyclePeakUsage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getCurrentCyclePeakUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getCurrentCyclePeakUsage-example) {#getCurrentCyclePeakUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getCurrentCyclePeakUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDailySchedule.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDailySchedule.md index 0657487594..16b49cf714 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDailySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDailySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getDailySchedule-example) {#getDailySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getDailySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicate.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicate.md index 7b5fdfa988..b94061f0a2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getDependentDuplicate-example) {#getDependentDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getDependentDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicates.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicates.md index f42ab8cf53..fcdfdaf599 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicates.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDependentDuplicates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getDependentDuplicates-example) {#getDependentDuplicates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getDependentDuplicates' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDuplicateConversionStatus.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDuplicateConversionStatus.md index 0ab8d0402b..1e65566751 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDuplicateConversionStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getDuplicateConversionStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getDuplicateConversionStatus-example) {#getDuplicateConversionStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getDuplicateConversionStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getEvents.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getEvents.md index 8b6b69470f..d79fe89d2a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getEvents-example) {#getEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailbackNotAllowed.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailbackNotAllowed.md index 84d81d7d94..5c7fcd022f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailbackNotAllowed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailbackNotAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFailbackNotAllowed-example) {#getFailbackNotAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFailbackNotAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailoverNotAllowed.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailoverNotAllowed.md index 387ddf16ea..f7abaebcae 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailoverNotAllowed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFailoverNotAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFailoverNotAllowed-example) {#getFailoverNotAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFailoverNotAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileBlockEncryptedLocations.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileBlockEncryptedLocations.md index 6c5aa09351..d7ee96b9df 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileBlockEncryptedLocations.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileBlockEncryptedLocations.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFileBlockEncryptedLocations-example) {#getFileBlockEncryptedLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getFileBlockEncryptedLocations' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileByIdentifier.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileByIdentifier.md index b6fca13de6..1fbce8c153 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileByIdentifier.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileByIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFileByIdentifier-example) {#getFileByIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFileByIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileCount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileCount.md index 3ee5e22ca0..6d62f8c617 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFileCount-example) {#getFileCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFileCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileList.md index 60deefd20b..0b63383cec 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFileList-example) {#getFileList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFileList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileNetworkMountAddress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileNetworkMountAddress.md index 4a7a372f4a..baae4c0999 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileNetworkMountAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFileNetworkMountAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFileNetworkMountAddress-example) {#getFileNetworkMountAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFileNetworkMountAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilePendingDeleteCount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilePendingDeleteCount.md index c20d25704a..81a78b90b0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilePendingDeleteCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilePendingDeleteCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFilePendingDeleteCount-example) {#getFilePendingDeleteCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFilePendingDeleteCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilesPendingDelete.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilesPendingDelete.md index e2267fe95b..db29e65ea4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilesPendingDelete.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFilesPendingDelete.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFilesPendingDelete-example) {#getFilesPendingDelete-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFilesPendingDelete' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFixReplicationCurrentStatus.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFixReplicationCurrentStatus.md index 4efd92acfe..9912f67582 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFixReplicationCurrentStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFixReplicationCurrentStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFixReplicationCurrentStatus-example) {#getFixReplicationCurrentStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFixReplicationCurrentStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFolderList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFolderList.md index ede2021a4c..01580754c1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFolderList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getFolderList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getFolderList-example) {#getFolderList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getFolderList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getGraph.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getGraph.md index 2f6bb2eb61..44f210dea7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getGraph.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getGraph.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getGraph-example) {#getGraph-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getGraph' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardware.md index 3107132911..52ab735b3a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardwareWithEvaultFirst.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardwareWithEvaultFirst.md index e83a754231..4ad78e8054 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardwareWithEvaultFirst.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHardwareWithEvaultFirst.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getHardwareWithEvaultFirst-example) {#getHardwareWithEvaultFirst-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getHardwareWithEvaultFirst' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHasEncryptionAtRest.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHasEncryptionAtRest.md index a245d08261..728044f14d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHasEncryptionAtRest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHasEncryptionAtRest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getHasEncryptionAtRest-example) {#getHasEncryptionAtRest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getHasEncryptionAtRest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHourlySchedule.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHourlySchedule.md index 73fe855ebe..91fedca46b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHourlySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getHourlySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getHourlySchedule-example) {#getHourlySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getHourlySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIntervalSchedule.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIntervalSchedule.md index f7afe95edd..e2795df8fe 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIntervalSchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIntervalSchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIntervalSchedule-example) {#getIntervalSchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIntervalSchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIops.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIops.md index 4682049055..5c55b948b0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIops.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIops.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIops-example) {#getIops-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIops' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsConvertToIndependentTransactionInProgress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsConvertToIndependentTransactionInProgress.md index 86879bc1ad..fe4999488e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsConvertToIndependentTransactionInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsConvertToIndependentTransactionInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsConvertToIndependentTransactionInProgress-example) {#getIsConvertToIndependentTransactionInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsConvertToIndependentTransactionInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsDependentDuplicateProvisionCompleted.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsDependentDuplicateProvisionCompleted.md index 4aa737ab32..7b8c550c34 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsDependentDuplicateProvisionCompleted.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsDependentDuplicateProvisionCompleted.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsDependentDuplicateProvisionCompleted-example) {#getIsDependentDuplicateProvisionCompleted-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsDependentDuplicateProvisionCompleted' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsInDedicatedServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsInDedicatedServiceResource.md index cd343c9420..e0af221c61 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsInDedicatedServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsInDedicatedServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsInDedicatedServiceResource-example) {#getIsInDedicatedServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsInDedicatedServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsMagneticStorage.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsMagneticStorage.md index b9d6dc9962..48d14b4b66 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsMagneticStorage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsMagneticStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsMagneticStorage-example) {#getIsMagneticStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsMagneticStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsProvisionInProgress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsProvisionInProgress.md index 263fe254fe..168749126c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsProvisionInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsProvisionInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsProvisionInProgress-example) {#getIsProvisionInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsProvisionInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyForSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyForSnapshot.md index fc864dd256..900d7fe028 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyForSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyForSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsReadyForSnapshot-example) {#getIsReadyForSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsReadyForSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyToMount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyToMount.md index aaab95d348..0fc98349b3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyToMount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIsReadyToMount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIsReadyToMount-example) {#getIsReadyToMount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIsReadyToMount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiLuns.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiLuns.md index 62d854d494..ff250c7ae4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiLuns.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiLuns.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIscsiLuns-example) {#getIscsiLuns-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIscsiLuns' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiReplicatingVolume.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiReplicatingVolume.md index f50815435e..c0d39b80e4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiReplicatingVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiReplicatingVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIscsiReplicatingVolume-example) {#getIscsiReplicatingVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIscsiReplicatingVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiTargetIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiTargetIpAddresses.md index f77d6b5475..a31af9611c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiTargetIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getIscsiTargetIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getIscsiTargetIpAddresses-example) {#getIscsiTargetIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getIscsiTargetIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getLunId.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getLunId.md index 93cf8bf86c..fbcb6950c4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getLunId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getLunId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getLunId-example) {#getLunId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getLunId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getManualSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getManualSnapshots.md index 9eee20defd..e6740b081e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getManualSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getManualSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getManualSnapshots-example) {#getManualSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getManualSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMaximumExpansionSize.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMaximumExpansionSize.md index 410b5664e7..daf6ac4bc2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMaximumExpansionSize.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMaximumExpansionSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getMaximumExpansionSize-example) {#getMaximumExpansionSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getMaximumExpansionSize' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMetricTrackingObject.md index 9b3817839a..198f1d82fc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountPath.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountPath.md index e83f774cb6..cdd31e9fdd 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountPath.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getMountPath-example) {#getMountPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getMountPath' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountableFlag.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountableFlag.md index 31fff5e3b8..c7b533e02e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountableFlag.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMountableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getMountableFlag-example) {#getMountableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getMountableFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMoveAndSplitStatus.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMoveAndSplitStatus.md index 38b9b5eb6e..fcd448bbf5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMoveAndSplitStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getMoveAndSplitStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getMoveAndSplitStatus-example) {#getMoveAndSplitStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getMoveAndSplitStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkConnectionDetails.md index 1a8ab718ce..f46f61e170 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getNetworkConnectionDetails-example) {#getNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountAddress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountAddress.md index 9986029e0f..8c4edf3373 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getNetworkMountAddress-example) {#getNetworkMountAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getNetworkMountAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountPath.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountPath.md index dfc324d897..1b601478ca 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountPath.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNetworkMountPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getNetworkMountPath-example) {#getNetworkMountPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getNetworkMountPath' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNotificationSubscribers.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNotificationSubscribers.md index da08a57b85..cedda1bec2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObject.md index 6393ac7e38..de7282843d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectStorageConnectionInformation.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectStorageConnectionInformation.md index 840aae78a1..1da65c4cfa 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectStorageConnectionInformation.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectStorageConnectionInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getObjectStorageConnectionInformation-example) {#getObjectStorageConnectionInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getObjectStorageConnectionInformation' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectsByCredential.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectsByCredential.md index 88e2eb30d8..ab27896f66 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectsByCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getObjectsByCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getObjectsByCredential-example) {#getObjectsByCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getObjectsByCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalSnapshotName.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalSnapshotName.md index 770ad68eb7..f860be694e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalSnapshotName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalSnapshotName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getOriginalSnapshotName-example) {#getOriginalSnapshotName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getOriginalSnapshotName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeId.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeId.md index c7a72e4ba7..7dfa348b6c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getOriginalVolumeId-example) {#getOriginalVolumeId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getOriginalVolumeId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeName.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeName.md index 91ed806747..12d700b133 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getOriginalVolumeName-example) {#getOriginalVolumeName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getOriginalVolumeName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeSize.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeSize.md index 73cbfe89a4..4ac63c9356 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeSize.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOriginalVolumeSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getOriginalVolumeSize-example) {#getOriginalVolumeSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getOriginalVolumeSize' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsType.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsType.md index 9a489db84c..5175502c19 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getOsType-example) {#getOsType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getOsType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsTypeId.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsTypeId.md index eacc758e7b..6f78e1aef4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsTypeId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getOsTypeId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getOsTypeId-example) {#getOsTypeId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getOsTypeId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentPartnerships.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentPartnerships.md index 0d5c88a4e0..9ae355c843 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentPartnerships.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentPartnerships.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getParentPartnerships-example) {#getParentPartnerships-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getParentPartnerships' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentVolume.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentVolume.md index 6dabeb81f1..d6c4f6e67e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getParentVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getParentVolume-example) {#getParentVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getParentVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPartnerships.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPartnerships.md index 6e4a985d76..6328072fc8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPartnerships.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPartnerships.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getPartnerships-example) {#getPartnerships-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getPartnerships' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPermissionsGroups.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPermissionsGroups.md index 4c169cfd33..e86254a2b2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPermissionsGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPermissionsGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getPermissionsGroups-example) {#getPermissionsGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getPermissionsGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPreviousCyclePeakUsage.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPreviousCyclePeakUsage.md index 5e152efd28..4304b31f4a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPreviousCyclePeakUsage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getPreviousCyclePeakUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getPreviousCyclePeakUsage-example) {#getPreviousCyclePeakUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getPreviousCyclePeakUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProperties.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProperties.md index 065bbeb87e..5f3e384550 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProperties.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProperties.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getProperties-example) {#getProperties-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getProperties' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProvisionedIops.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProvisionedIops.md index 45518eed47..55abba25bf 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProvisionedIops.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getProvisionedIops.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getProvisionedIops-example) {#getProvisionedIops-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getProvisionedIops' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRecycleBinFileByIdentifier.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRecycleBinFileByIdentifier.md index aebdf5c5fb..c2098625de 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRecycleBinFileByIdentifier.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRecycleBinFileByIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getRecycleBinFileByIdentifier-example) {#getRecycleBinFileByIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getRecycleBinFileByIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHosts.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHosts.md index c4dcaaf202..caa946fcd1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHosts.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getRemainingAllowedHosts-example) {#getRemainingAllowedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getRemainingAllowedHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHostsForReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHostsForReplicant.md index 9bb074f15e..61840041b9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHostsForReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getRemainingAllowedHostsForReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getRemainingAllowedHostsForReplicant-example) {#getRemainingAllowedHostsForReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getRemainingAllowedHostsForReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingLuns.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingLuns.md index d30eaa6155..8bb0accb15 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingLuns.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingLuns.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicatingLuns-example) {#getReplicatingLuns-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicatingLuns' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingVolume.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingVolume.md index 78e0d2deb7..8230f8e20b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicatingVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicatingVolume-example) {#getReplicatingVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicatingVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationEvents.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationEvents.md index 62c84ba892..b563dfc7e6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicationEvents-example) {#getReplicationEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicationEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationPartners.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationPartners.md index be4f5ef0c3..d2af13f6ff 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationPartners.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationPartners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicationPartners-example) {#getReplicationPartners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicationPartners' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationSchedule.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationSchedule.md index 15edef2224..50996cfdf6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationSchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationSchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicationSchedule-example) {#getReplicationSchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicationSchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationStatus.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationStatus.md index cac6b672d1..0a3d251d4f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicationStatus-example) {#getReplicationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicationStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationTimestamp.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationTimestamp.md index cbe65f707d..c691490cf6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationTimestamp.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getReplicationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getReplicationTimestamp-example) {#getReplicationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getReplicationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSchedules.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSchedules.md index 4f9136e0cd..4107f29099 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSchedules.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSchedules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSchedules-example) {#getSchedules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSchedules' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResource.md index 5b2d713f8d..d34d68ff42 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceBackendIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceBackendIpAddress.md index 3d48e92df2..64739d6501 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getServiceResourceBackendIpAddress-example) {#getServiceResourceBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getServiceResourceBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceName.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceName.md index 4e8af6f3c8..24e469579d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getServiceResourceName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getServiceResourceName-example) {#getServiceResourceName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getServiceResourceName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCapacityGb.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCapacityGb.md index aef02542d0..f2513d93c6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCapacityGb.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCapacityGb.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotCapacityGb-example) {#getSnapshotCapacityGb-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotCapacityGb' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCreationTimestamp.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCreationTimestamp.md index 90dd59fc7b..03d1e24e6d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCreationTimestamp.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotCreationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotCreationTimestamp-example) {#getSnapshotCreationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotCreationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotDeletionThresholdPercentage.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotDeletionThresholdPercentage.md index a0e8e760ef..5018f0005e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotDeletionThresholdPercentage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotDeletionThresholdPercentage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotDeletionThresholdPercentage-example) {#getSnapshotDeletionThresholdPercentage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotDeletionThresholdPercentage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotNotificationStatus.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotNotificationStatus.md index bc1b5af4f2..ad23ef8703 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotNotificationStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotNotificationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotNotificationStatus-example) {#getSnapshotNotificationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotNotificationStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSizeBytes.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSizeBytes.md index 1ad3bfb989..74cc58bf95 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSizeBytes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSizeBytes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotSizeBytes-example) {#getSnapshotSizeBytes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotSizeBytes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSpaceAvailable.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSpaceAvailable.md index 08c3168281..dda4713bbe 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSpaceAvailable.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotSpaceAvailable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotSpaceAvailable-example) {#getSnapshotSpaceAvailable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotSpaceAvailable' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshots.md index 9dcef3ed90..107ae808c5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshots-example) {#getSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotsForVolume.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotsForVolume.md index 8ea795af9f..7e9489a4d8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotsForVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getSnapshotsForVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getSnapshotsForVolume-example) {#getSnapshotsForVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getSnapshotsForVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStaasVersion.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStaasVersion.md index 06c378b59f..a07b998a01 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStaasVersion.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStaasVersion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getStaasVersion-example) {#getStaasVersion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getStaasVersion' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroups.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroups.md index 02376d062a..9f60cb3eff 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroupsNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroupsNetworkConnectionDetails.md index 5fa4509fa4..426254f36c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroupsNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageGroupsNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getStorageGroupsNetworkConnectionDetails-example) {#getStorageGroupsNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getStorageGroupsNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageTierLevel.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageTierLevel.md index 15e6fb43f2..e9c1926712 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageTierLevel.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageTierLevel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getStorageTierLevel-example) {#getStorageTierLevel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getStorageTierLevel' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageType.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageType.md index 75938d54ca..13ebb8f290 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getStorageType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getStorageType-example) {#getStorageType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getStorageType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTargetIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTargetIpAddresses.md index bdc8514b58..3681bb6c18 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTargetIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTargetIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getTargetIpAddresses-example) {#getTargetIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getTargetIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalBytesUsed.md index 949fba61e6..4c1f0d2d31 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalBytesUsed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getTotalBytesUsed-example) {#getTotalBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getTotalBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalScheduleSnapshotRetentionCount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalScheduleSnapshotRetentionCount.md index 9a85fe7140..f5d20146b2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalScheduleSnapshotRetentionCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getTotalScheduleSnapshotRetentionCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getTotalScheduleSnapshotRetentionCount-example) {#getTotalScheduleSnapshotRetentionCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getTotalScheduleSnapshotRetentionCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getUsageNotification.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getUsageNotification.md index 54211dfb70..dc80f0c4e7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getUsageNotification.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getUsageNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getUsageNotification-example) {#getUsageNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getUsageNotification' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getValidReplicationTargetDatacenterLocations.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getValidReplicationTargetDatacenterLocations.md index 484d080692..b54b181c96 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getValidReplicationTargetDatacenterLocations.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getValidReplicationTargetDatacenterLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getValidReplicationTargetDatacenterLocations-example) {#getValidReplicationTargetDatacenterLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getValidReplicationTargetDatacenterLocations' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVendorName.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVendorName.md index 21b58f27a9..3641573076 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVendorName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVendorName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getVendorName-example) {#getVendorName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getVendorName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVirtualGuest.md index 66f65cb314..2919ea9fb6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeCountLimits.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeCountLimits.md index 263ef11375..fa365de88d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeCountLimits.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeCountLimits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getVolumeCountLimits-example) {#getVolumeCountLimits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getVolumeCountLimits' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeDuplicateParameters.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeDuplicateParameters.md index 2224a2a0bb..ff4b8d1775 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeDuplicateParameters.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeDuplicateParameters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getVolumeDuplicateParameters-example) {#getVolumeDuplicateParameters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getVolumeDuplicateParameters' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeHistory.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeHistory.md index c22d67d22a..da4ff02740 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeHistory.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getVolumeHistory-example) {#getVolumeHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getVolumeHistory' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeStatus.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeStatus.md index 5f48f3291e..ed66a0c245 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getVolumeStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getVolumeStatus-example) {#getVolumeStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getVolumeStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebCCAuthenticationDetails.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebCCAuthenticationDetails.md index 275330251a..6160a9916e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebCCAuthenticationDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebCCAuthenticationDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getWebCCAuthenticationDetails-example) {#getWebCCAuthenticationDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/getWebCCAuthenticationDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebccAccount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebccAccount.md index 67635fd7e2..9719ea6312 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebccAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWebccAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getWebccAccount-example) {#getWebccAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getWebccAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWeeklySchedule.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWeeklySchedule.md index 08305181a0..1c27eda344 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWeeklySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/getWeeklySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#getWeeklySchedule-example) {#getWeeklySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/getWeeklySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/immediateFailoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/immediateFailoverToReplicant.md index a71e9ee597..1cf705d9bf 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/immediateFailoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/immediateFailoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#immediateFailoverToReplicant-example) {#immediateFailoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/immediateFailoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestore.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestore.md index 4bccec4691..c76e936f2f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#initiateBareMetalRestore-example) {#initiateBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/initiateBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestoreForServer.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestoreForServer.md index 1d2ddcb16d..f7ec09b742 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestoreForServer.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateBareMetalRestoreForServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#initiateBareMetalRestoreForServer-example) {#initiateBareMetalRestoreForServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/initiateBareMetalRestoreForServer' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateOriginVolumeReclaim.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateOriginVolumeReclaim.md index 50f9813bac..3d45e28739 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateOriginVolumeReclaim.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateOriginVolumeReclaim.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#initiateOriginVolumeReclaim-example) {#initiateOriginVolumeReclaim-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/initiateOriginVolumeReclaim' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateVolumeCutover.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateVolumeCutover.md index 6425a20adc..ce926bb67f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateVolumeCutover.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/initiateVolumeCutover.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#initiateVolumeCutover-example) {#initiateVolumeCutover-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/initiateVolumeCutover' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isBlockingOperationInProgress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isBlockingOperationInProgress.md index f6ef0f4092..ad445d0b76 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isBlockingOperationInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isBlockingOperationInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#isBlockingOperationInProgress-example) {#isBlockingOperationInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/isBlockingOperationInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyForSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyForSnapshot.md index 14a69cf498..463098c2bc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyForSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyForSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#isDuplicateReadyForSnapshot-example) {#isDuplicateReadyForSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/isDuplicateReadyForSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyToMount.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyToMount.md index a7bed1dfce..0db53857f9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyToMount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isDuplicateReadyToMount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#isDuplicateReadyToMount-example) {#isDuplicateReadyToMount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/isDuplicateReadyToMount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isVolumeActive.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isVolumeActive.md index 90830dde0c..8614dc1f56 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isVolumeActive.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/isVolumeActive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#isVolumeActive-example) {#isVolumeActive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/isVolumeActive' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDependentDuplicate.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDependentDuplicate.md index bfde353635..7012350f2d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDependentDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDependentDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#refreshDependentDuplicate-example) {#refreshDependentDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/refreshDependentDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDuplicate.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDuplicate.md index c2d2e9379d..dbb8055c66 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/refreshDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#refreshDuplicate-example) {#refreshDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/refreshDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardware.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardware.md index 7636bde1e2..0130bae4c4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromHardware-example) {#removeAccessFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardwareList.md index ad1a5a3ba3..db5b10c103 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromHardwareList-example) {#removeAccessFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHost.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHost.md index 517c35f49e..0338075d11 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromHost-example) {#removeAccessFromHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHostList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHostList.md index 8efac590fc..1c4277f62d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHostList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromHostList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromHostList-example) {#removeAccessFromHostList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromHostList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddress.md index 048d02564f..01acb2fb03 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromIpAddress-example) {#removeAccessFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddressList.md index 5c3f1a7adb..54719b5976 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromIpAddressList-example) {#removeAccessFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnet.md index cb06023269..a9c0d8a7f1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromSubnet-example) {#removeAccessFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnetList.md index 6b30ceaf7c..445a936ac8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromSubnetList-example) {#removeAccessFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuest.md index f06eba9be8..2ed45f324b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromVirtualGuest-example) {#removeAccessFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuestList.md index 1e3ded13e2..9791c46e64 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessFromVirtualGuestList-example) {#removeAccessFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromHardwareList.md index 352e5640de..8115b51642 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromHardwareList-example) {#removeAccessToReplicantFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessToReplicantFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromIpAddressList.md index 84c5edd35c..15cc016270 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromIpAddressList-example) {#removeAccessToReplicantFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessToReplicantFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnet.md index 3a252c7c72..d40f42bc22 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromSubnet-example) {#removeAccessToReplicantFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessToReplicantFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnetList.md index ca9f9c0635..4da4ec078b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromSubnetList-example) {#removeAccessToReplicantFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessToReplicantFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromVirtualGuestList.md index ebdd33602c..15bfa5d60b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeAccessToReplicantFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromVirtualGuestList-example) {#removeAccessToReplicantFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeAccessToReplicantFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeCredential.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeCredential.md index 379672083c..d24e8a098f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/removeCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#removeCredential-example) {#removeCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/removeCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFile.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFile.md index e7f9835432..13a5c45c1c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFile.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#restoreFile-example) {#restoreFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/restoreFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFromSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFromSnapshot.md index aec040b76c..5fe6893695 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFromSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/restoreFromSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#restoreFromSnapshot-example) {#restoreFromSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/restoreFromSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/sendPasswordReminderEmail.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/sendPasswordReminderEmail.md index 5be77c3a9c..7363f5ed3a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/sendPasswordReminderEmail.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/sendPasswordReminderEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#sendPasswordReminderEmail-example) {#sendPasswordReminderEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/sendPasswordReminderEmail' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setMountable.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setMountable.md index d88108c938..e9c3db37cc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setMountable.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setMountable.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#setMountable-example) {#setMountable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/setMountable' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotAllocation.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotAllocation.md index ceec57d2f0..160dd277d7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotAllocation.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#setSnapshotAllocation-example) {#setSnapshotAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/setSnapshotAllocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotNotification.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotNotification.md index adbc279b73..7b4b4725e4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotNotification.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/setSnapshotNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#setSnapshotNotification-example) {#setSnapshotNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/setSnapshotNotification' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/upgradeVolumeCapacity.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/upgradeVolumeCapacity.md index a55584897e..78db7c700e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/upgradeVolumeCapacity.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/upgradeVolumeCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#upgradeVolumeCapacity-example) {#upgradeVolumeCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/upgradeVolumeCapacity' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/uploadFile.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/uploadFile.md index d088109c51..e7e489e275 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/uploadFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/uploadFile.md @@ -18,8 +18,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#uploadFile-example) {#uploadFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/uploadFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/validateHostsAccess.md b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/validateHostsAccess.md index 972ff59019..f79decae54 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/validateHostsAccess.md +++ b/content/reference/services/SoftLayer_Network_Storage_Backup_Evault/validateHostsAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Backup_Evault" --- -### Curl Example +# [REST Example](#validateHostsAccess-example) {#validateHostsAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Backup_Evault/{SoftLayer_Network_Storage_Backup_EvaultID}/validateHostsAccess' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getAccount.md index 8e1c758838..d0c45333ad 100644 --- a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_DedicatedCluster" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_DedicatedCluster/{SoftLayer_Network_Storage_DedicatedClusterID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getDedicatedClusterList.md b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getDedicatedClusterList.md index fa3455cf56..fe2bf7c4ef 100644 --- a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getDedicatedClusterList.md +++ b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getDedicatedClusterList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_DedicatedCluster" --- -### Curl Example +# [REST Example](#getDedicatedClusterList-example) {#getDedicatedClusterList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_DedicatedCluster/getDedicatedClusterList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getObject.md b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getObject.md index c2f1693f71..d1dccdc2f1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_DedicatedCluster" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_DedicatedCluster/{SoftLayer_Network_Storage_DedicatedClusterID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getServiceResource.md index fef49d35bc..a39e2a1968 100644 --- a/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_DedicatedCluster/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_DedicatedCluster" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_DedicatedCluster/{SoftLayer_Network_Storage_DedicatedClusterID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/addAllowedHost.md b/content/reference/services/SoftLayer_Network_Storage_Group/addAllowedHost.md index a34cff9ac7..22c9725d08 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/addAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/addAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#addAllowedHost-example) {#addAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/addAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/attachToVolume.md b/content/reference/services/SoftLayer_Network_Storage_Group/attachToVolume.md index e05b80c19f..c3999c7622 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/attachToVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/attachToVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#attachToVolume-example) {#attachToVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/attachToVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/createObject.md b/content/reference/services/SoftLayer_Network_Storage_Group/createObject.md index 319fb3c892..fd9802683d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/createObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage_Group/deleteObject.md index 2bea6b7194..b7ed1ae565 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Group/editObject.md index 1a83857888..b79612d00c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Group/getAccount.md index 2b858a19c5..6f06e26247 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Group/getAllObjects.md index 42a5ce4e91..f6e7781f88 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getAllowedHosts.md b/content/reference/services/SoftLayer_Network_Storage_Group/getAllowedHosts.md index 5b10c87456..5fc724e521 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getAllowedHosts.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getAllowedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getAllowedHosts-example) {#getAllowedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getAllowedHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getAttachedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Group/getAttachedVolumes.md index 3f4771e35a..2addd3ec7e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getAttachedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getAttachedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getAttachedVolumes-example) {#getAttachedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getAttachedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getGroupType.md b/content/reference/services/SoftLayer_Network_Storage_Group/getGroupType.md index b8f98af510..ece11d0a7e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getGroupType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getGroupType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getGroupType-example) {#getGroupType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getGroupType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Group/getNetworkConnectionDetails.md index 5d4809d7a3..184af87075 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getNetworkConnectionDetails-example) {#getNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Group/getObject.md index 7fdfe6f4cb..0ac977e636 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getOsType.md b/content/reference/services/SoftLayer_Network_Storage_Group/getOsType.md index d75f5dc9fd..681f0627c4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getOsType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getOsType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getOsType-example) {#getOsType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getOsType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Group/getServiceResource.md index 64e7a77a86..28dbe0666d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/removeAllowedHost.md b/content/reference/services/SoftLayer_Network_Storage_Group/removeAllowedHost.md index b43c47bb9b..73b333f901 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/removeAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/removeAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#removeAllowedHost-example) {#removeAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/removeAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group/removeFromVolume.md b/content/reference/services/SoftLayer_Network_Storage_Group/removeFromVolume.md index e8de43d1dd..c53f1474ac 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group/removeFromVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group/removeFromVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group" --- -### Curl Example +# [REST Example](#removeFromVolume-example) {#removeFromVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group/{SoftLayer_Network_Storage_GroupID}/removeFromVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/addAllowedHost.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/addAllowedHost.md index f1a0f71f75..6f28663851 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/addAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/addAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#addAllowedHost-example) {#addAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/addAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/attachToVolume.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/attachToVolume.md index 5798d8676e..71297b1ca3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/attachToVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/attachToVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#attachToVolume-example) {#attachToVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/attachToVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/createObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/createObject.md index 24c928bdc6..9d7c640195 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/createObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/deleteObject.md index 1b32a76f65..9c3e4fb634 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/editObject.md index 901c8c3a03..a5397c2a18 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAccount.md index b796374f76..d93f09fb44 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllObjects.md index 87fffd52b4..2afe84949d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllowedHosts.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllowedHosts.md index f382f810f1..ee931cde9f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllowedHosts.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAllowedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedHosts-example) {#getAllowedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getAllowedHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAttachedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAttachedVolumes.md index 41f9c7f887..5f4f0c3cb3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAttachedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getAttachedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getAttachedVolumes-example) {#getAttachedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getAttachedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getGroupType.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getGroupType.md index 8a62a02912..61bacb9c3c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getGroupType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getGroupType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getGroupType-example) {#getGroupType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getGroupType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getNetworkConnectionDetails.md index 22d0b97d3b..574425b4e1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getNetworkConnectionDetails-example) {#getNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getObject.md index 280cbd9c55..331f4328d0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getOsType.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getOsType.md index d91633dea1..57dd0dc95f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getOsType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getOsType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getOsType-example) {#getOsType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getOsType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getServiceResource.md index 73d99de4db..a5eadef06f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeAllowedHost.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeAllowedHost.md index a4a5d74d43..626e596079 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#removeAllowedHost-example) {#removeAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/removeAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeFromVolume.md b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeFromVolume.md index 8e6ac46932..c8022169e5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeFromVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Iscsi/removeFromVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Iscsi" --- -### Curl Example +# [REST Example](#removeFromVolume-example) {#removeFromVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Iscsi/{SoftLayer_Network_Storage_Group_IscsiID}/removeFromVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/addAllowedHost.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/addAllowedHost.md index e2ac213b6e..72f90d1af6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/addAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/addAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#addAllowedHost-example) {#addAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/addAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/attachToVolume.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/attachToVolume.md index 69ff43c5f3..32975f3f1a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/attachToVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/attachToVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#attachToVolume-example) {#attachToVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/attachToVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/createObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/createObject.md index 656c86df06..b940388703 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/createObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/deleteObject.md index e90f9e68fb..e86d33f551 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/editObject.md index afb83bb483..235c28328f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAccount.md index 7334bb4bdd..ae9f5e044c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllObjects.md index 5e0f5849eb..b3e0879f68 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllowedHosts.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllowedHosts.md index e298d604d7..8d9f4a8971 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllowedHosts.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAllowedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getAllowedHosts-example) {#getAllowedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getAllowedHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAttachedVolumes.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAttachedVolumes.md index ae16723092..5f4a3999ac 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAttachedVolumes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getAttachedVolumes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getAttachedVolumes-example) {#getAttachedVolumes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getAttachedVolumes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getGroupType.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getGroupType.md index 4e7650c596..cbc58145d0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getGroupType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getGroupType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getGroupType-example) {#getGroupType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getGroupType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getNetworkConnectionDetails.md index 3b7b9ed3b9..67eb30cd2c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getNetworkConnectionDetails-example) {#getNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getObject.md index 00a0609b30..2c344edfc8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getOsType.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getOsType.md index ef6291033f..80f3e97c0c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getOsType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getOsType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getOsType-example) {#getOsType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getOsType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getServiceResource.md index 9e4ab5d39a..12a3863ec4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeAllowedHost.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeAllowedHost.md index 87d3cd694c..abde0dc9a9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#removeAllowedHost-example) {#removeAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Allowed_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/removeAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeFromVolume.md b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeFromVolume.md index 09c5a52c80..88e2c96d32 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeFromVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Nfs/removeFromVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Nfs" --- -### Curl Example +# [REST Example](#removeFromVolume-example) {#removeFromVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Nfs/{SoftLayer_Network_Storage_Group_NfsID}/removeFromVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Type/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Group_Type/getAllObjects.md index 21557d8593..af4bf576d1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Group_Type/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Group_Type/getObject.md index a29051f478..bd55addfa0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Group_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Group_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Group_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Group_Type/{SoftLayer_Network_Storage_Group_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialCreate.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialCreate.md index b7da9257f9..d49818cae7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialCreate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialCreate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#credentialCreate-example) {#credentialCreate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/credentialCreate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialDelete.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialDelete.md index 6a86cbdfc6..dda6294507 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialDelete.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/credentialDelete.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#credentialDelete-example) {#credentialDelete-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/credentialDelete' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAccount.md index 262826dfd1..06786c2f74 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAllObjects.md index 615e253153..d3117202b9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBillingItem.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBillingItem.md index b06d6e4a02..cc9f4cd31b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBuckets.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBuckets.md index 1e8bc95ccf..c52e2b09eb 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBuckets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getBuckets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getBuckets-example) {#getBuckets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getBuckets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCancelledBillingItem.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCancelledBillingItem.md index 532b303540..4f896c5e00 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCancelledBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCancelledBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getCancelledBillingItem-example) {#getCancelledBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getCancelledBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCapacityUsage.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCapacityUsage.md index 7a14acc879..b3b6a294c4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCapacityUsage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCapacityUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getCapacityUsage-example) {#getCapacityUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getCapacityUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCloudObjectStorageMetrics.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCloudObjectStorageMetrics.md index 6ecc28ad2e..97b7177f87 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCloudObjectStorageMetrics.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCloudObjectStorageMetrics.md @@ -29,8 +29,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getCloudObjectStorageMetrics-example) {#getCloudObjectStorageMetrics-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getCloudObjectStorageMetrics' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentialLimit.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentialLimit.md index fa5d620322..c67e5e6232 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentialLimit.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentialLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getCredentialLimit-example) {#getCredentialLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getCredentialLimit' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentials.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentials.md index ce07c31bbc..7db1ed22d2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentials.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getCredentials.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getCredentials-example) {#getCredentials-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getCredentials' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpoints.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpoints.md index bcc55af1b2..906482479d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpoints.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpoints.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getEndpoints-example) {#getEndpoints-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getEndpoints' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpointsWithRefetch.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpointsWithRefetch.md index 87963cd3a7..1e253786d9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpointsWithRefetch.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getEndpointsWithRefetch.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getEndpointsWithRefetch-example) {#getEndpointsWithRefetch-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getEndpointsWithRefetch' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getMetricTrackingObject.md index 1edb5c58f7..de40480aae 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getObject.md index 45421235a8..1dde5baa82 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getUuid.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getUuid.md index dc972c20d9..e7565a6f00 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getUuid.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Cleversafe_Account/getUuid.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Cleversafe_Account" --- -### Curl Example +# [REST Example](#getUuid-example) {#getUuid-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Cleversafe_Account/{SoftLayer_Network_Storage_Hub_Cleversafe_AccountID}/getUuid' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getMetricData.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getMetricData.md index 09db202bbc..12bf18c1a8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getMetricData.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getMetricData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Swift_Metrics" --- -### Curl Example +# [REST Example](#getMetricData-example) {#getMetricData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Swift_Metrics/{SoftLayer_Network_Storage_Hub_Swift_MetricsID}/getMetricData' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getSummaryData.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getSummaryData.md index fe27ae9e83..35e5e50ecb 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getSummaryData.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Metrics/getSummaryData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Swift_Metrics" --- -### Curl Example +# [REST Example](#getSummaryData-example) {#getSummaryData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, SoftLayer_Container_Metric_Data_Type, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, SoftLayer_Container_Metric_Data_Type, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Swift_Metrics/{SoftLayer_Network_Storage_Hub_Swift_MetricsID}/getSummaryData' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getContainerList.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getContainerList.md index 1e1bb6ff2f..2f1f8b6956 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getContainerList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getContainerList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Swift_Share" --- -### Curl Example +# [REST Example](#getContainerList-example) {#getContainerList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Swift_Share/getContainerList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFile.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFile.md index f733951fcd..9b71c5ae9b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Swift_Share" --- -### Curl Example +# [REST Example](#getFile-example) {#getFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Swift_Share/getFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFileList.md b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFileList.md index 37c61fc336..a7a6848e26 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFileList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Hub_Swift_Share/getFileList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Hub_Swift_Share" --- -### Curl Example +# [REST Example](#getFileList-example) {#getFileList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Hub_Swift_Share/getFileList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardware.md index 995db3a7b2..a58cccb48e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromHardware-example) {#allowAccessFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardwareList.md index 5ab05ffef5..c3dec51d92 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromHardwareList-example) {#allowAccessFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHost.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHost.md index 8bcccc3b88..a4b42cd5a8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromHost-example) {#allowAccessFromHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHostList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHostList.md index b29741fc82..3bce358525 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHostList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromHostList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromHostList-example) {#allowAccessFromHostList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromHostList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddress.md index 42dde54eb0..0dce8d9452 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromIpAddress-example) {#allowAccessFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddressList.md index bb5ac1ade8..88d6f73a4e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromIpAddressList-example) {#allowAccessFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnet.md index cc3abbf2ac..10dbfe3539 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromSubnet-example) {#allowAccessFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnetList.md index d17421ab96..c441a9b1a7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromSubnetList-example) {#allowAccessFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuest.md index 035b8e1292..81cb49405a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromVirtualGuest-example) {#allowAccessFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuestList.md index c5a9c7ea54..37bfd63823 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessFromVirtualGuestList-example) {#allowAccessFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardware.md index 58afaf649d..3e49be28d4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromHardware-example) {#allowAccessToReplicantFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardwareList.md index 9df1c7c441..024e2977e8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromHardwareList-example) {#allowAccessToReplicantFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddress.md index dc9fd7a967..2e847fb090 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromIpAddress-example) {#allowAccessToReplicantFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddressList.md index 8cec3a182c..f430ce6338 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromIpAddressList-example) {#allowAccessToReplicantFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnet.md index 574ae585b4..8bd58045fa 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromSubnet-example) {#allowAccessToReplicantFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnetList.md index fbb0d10455..73ebcf45e3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromSubnetList-example) {#allowAccessToReplicantFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuest.md index f4df8ee3e9..0a5ffb3e2b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromVirtualGuest-example) {#allowAccessToReplicantFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuestList.md index 0f5cd5c49e..658371ff64 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/allowAccessToReplicantFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#allowAccessToReplicantFromVirtualGuestList-example) {#allowAccessToReplicantFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/allowAccessToReplicantFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignCredential.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignCredential.md index 183725e99f..979933b9d7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#assignCredential-example) {#assignCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/assignCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignNewCredential.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignNewCredential.md index 3862dd516e..67b9d3aaba 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignNewCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/assignNewCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#assignNewCredential-example) {#assignNewCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/assignNewCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/changePassword.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/changePassword.md index ca19a9ed1b..43a7b3bb80 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/changePassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/changePassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#changePassword-example) {#changePassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/changePassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBandwidth.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBandwidth.md index 7fe127bfde..909aa9600e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBandwidth.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBandwidth.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#collectBandwidth-example) {#collectBandwidth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/collectBandwidth' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBytesUsed.md index 17db4c8806..a6cb53caf2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/collectBytesUsed.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#collectBytesUsed-example) {#collectBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/collectBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/convertCloneDependentToIndependent.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/convertCloneDependentToIndependent.md index 372293ca53..58f35f3976 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/convertCloneDependentToIndependent.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/convertCloneDependentToIndependent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#convertCloneDependentToIndependent-example) {#convertCloneDependentToIndependent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/convertCloneDependentToIndependent' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/createFolder.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/createFolder.md index 719dad6c2d..97aefdda0f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/createFolder.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/createFolder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#createFolder-example) {#createFolder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/createFolder' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/createOrUpdateLunId.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/createOrUpdateLunId.md index 85eb757359..0c11c9623f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/createOrUpdateLunId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/createOrUpdateLunId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#createOrUpdateLunId-example) {#createOrUpdateLunId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/createOrUpdateLunId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/createSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/createSnapshot.md index 89f09af3a0..82278a0751 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/createSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/createSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#createSnapshot-example) {#createSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/createSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteAllFiles.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteAllFiles.md index 6944b62a18..bc4948fa75 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteAllFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteAllFiles.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#deleteAllFiles-example) {#deleteAllFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/deleteAllFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFile.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFile.md index 3f0da82ffb..67d7f4bede 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFile.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#deleteFile-example) {#deleteFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/deleteFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFiles.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFiles.md index 7343c9b73e..565e2f89dc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFiles.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#deleteFiles-example) {#deleteFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/deleteFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFolder.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFolder.md index 08883b6c9e..a414520b37 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFolder.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteFolder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#deleteFolder-example) {#deleteFolder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/deleteFolder' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteObject.md index f55f779f1b..eb4bdd43b5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/disableSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/disableSnapshots.md index f04d368cea..eeb4616fd1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/disableSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/disableSnapshots.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#disableSnapshots-example) {#disableSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/disableSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/disasterRecoveryFailoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/disasterRecoveryFailoverToReplicant.md index 3f3cd6493a..ae98fdc502 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/disasterRecoveryFailoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/disasterRecoveryFailoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#disasterRecoveryFailoverToReplicant-example) {#disasterRecoveryFailoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/disasterRecoveryFailoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/downloadFile.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/downloadFile.md index e3cce64004..29f29cb3b7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/downloadFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/downloadFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#downloadFile-example) {#downloadFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/downloadFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/editCredential.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/editCredential.md index 5ad4ffc96d..cf4e4b6ba9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/editCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/editCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#editCredential-example) {#editCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/editCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/editObject.md index ddf14e3065..fee44613b8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/enableSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/enableSnapshots.md index 16d07bb646..c06cb6f46c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/enableSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/enableSnapshots.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#enableSnapshots-example) {#enableSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/enableSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/failbackFromReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/failbackFromReplicant.md index dfdd9a8e14..1a262d2760 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/failbackFromReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/failbackFromReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#failbackFromReplicant-example) {#failbackFromReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/failbackFromReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/failoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/failoverToReplicant.md index 5d4b3c1d72..8f128f3a05 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/failoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/failoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#failoverToReplicant-example) {#failoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/failoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccount.md index 2567af4ae0..1cea1fcc06 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccountPassword.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccountPassword.md index 8214a97303..d8790a1659 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccountPassword.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAccountPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAccountPassword-example) {#getAccountPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAccountPassword' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getActiveTransactions.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getActiveTransactions.md index c42e828db4..99144772d3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFiles.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFiles.md index 4a3c84b13f..62f44d39a0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFiles.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllFiles-example) {#getAllFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllFiles' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFilesByFilter.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFilesByFilter.md index 64db220ed9..62d4bb0644 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFilesByFilter.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllFilesByFilter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllFilesByFilter-example) {#getAllFilesByFilter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllFilesByFilter' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailback.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailback.md index dc9cf13ffc..ebc4409f41 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailback.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailback.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowDisasterRecoveryFailback-example) {#getAllowDisasterRecoveryFailback-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowDisasterRecoveryFailback' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailover.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailover.md index 4804ff5b17..a4c22b3be4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailover.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowDisasterRecoveryFailover.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowDisasterRecoveryFailover-example) {#getAllowDisasterRecoveryFailover-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowDisasterRecoveryFailover' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableHardware.md index f17c1fa763..eeb7ab79f5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowableHardware-example) {#getAllowableHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowableHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableIpAddresses.md index 45240aa9c1..b3a81421a9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowableIpAddresses-example) {#getAllowableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableSubnets.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableSubnets.md index 5b6d6a64e4..6026c85966 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowableSubnets-example) {#getAllowableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableVirtualGuests.md index 70eaabeaef..4b3cbe8b16 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowableVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowableVirtualGuests-example) {#getAllowableVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowableVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHardware.md index 652f8340d8..da2714d147 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedHardware-example) {#getAllowedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHostsLimit.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHostsLimit.md index 3189cd24a1..f4ce90b800 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHostsLimit.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedHostsLimit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedHostsLimit-example) {#getAllowedHostsLimit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedHostsLimit' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedIpAddresses.md index 7d77baec4a..cf9a8ca0b5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedIpAddresses-example) {#getAllowedIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationHardware.md index 4e4dec5453..fb5300d7dc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedReplicationHardware-example) {#getAllowedReplicationHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedReplicationHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationIpAddresses.md index 6a44723d9f..25555149ad 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedReplicationIpAddresses-example) {#getAllowedReplicationIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedReplicationIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationSubnets.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationSubnets.md index 3eda949c7c..deb5b97c40 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedReplicationSubnets-example) {#getAllowedReplicationSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedReplicationSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationVirtualGuests.md index 0677d57eea..77825abc7c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedReplicationVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedReplicationVirtualGuests-example) {#getAllowedReplicationVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedReplicationVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedSubnets.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedSubnets.md index 8748ee9c6a..9e66cd8b56 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedSubnets.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedSubnets-example) {#getAllowedSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedVirtualGuests.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedVirtualGuests.md index 22bedc6bdd..32b058802d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getAllowedVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getAllowedVirtualGuests-example) {#getAllowedVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getAllowedVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItem.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItem.md index 3d957c26e7..4646d6402b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItemCategory.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItemCategory.md index 4959d17ac1..294bea1669 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItemCategory.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBillingItemCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getBillingItemCategory-example) {#getBillingItemCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getBillingItemCategory' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getByUsername.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getByUsername.md index 2f360f5d3e..2d738f82d0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getByUsername.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getByUsername.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getByUsername-example) {#getByUsername-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/getByUsername' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBytesUsed.md index bd22f67dc3..3fec02d96a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getBytesUsed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getBytesUsed-example) {#getBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCdnUrls.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCdnUrls.md index 5825a7b385..0d24a184ed 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCdnUrls.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCdnUrls.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getCdnUrls-example) {#getCdnUrls-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getCdnUrls' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getClusterResource.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getClusterResource.md index a609c2ee2c..0dc7200c62 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getClusterResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getClusterResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getClusterResource-example) {#getClusterResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getClusterResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCreationScheduleId.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCreationScheduleId.md index 5afd78c57d..e10ab3b74b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCreationScheduleId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCreationScheduleId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getCreationScheduleId-example) {#getCreationScheduleId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getCreationScheduleId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCredentials.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCredentials.md index 65a8f7a447..119f6108b6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCredentials.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getCredentials.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getCredentials-example) {#getCredentials-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getCredentials' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDailySchedule.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDailySchedule.md index f969c3cbc7..cc69e2d2dc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDailySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDailySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getDailySchedule-example) {#getDailySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getDailySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicate.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicate.md index e3a4838909..e346149c8b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getDependentDuplicate-example) {#getDependentDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getDependentDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicates.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicates.md index cb2200f631..f3f76e86bc 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicates.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDependentDuplicates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getDependentDuplicates-example) {#getDependentDuplicates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getDependentDuplicates' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDuplicateConversionStatus.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDuplicateConversionStatus.md index 1a6eb1e76e..3360179f42 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDuplicateConversionStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getDuplicateConversionStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getDuplicateConversionStatus-example) {#getDuplicateConversionStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getDuplicateConversionStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getEvents.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getEvents.md index e149f4d82d..c30135ee14 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getEvents-example) {#getEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailbackNotAllowed.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailbackNotAllowed.md index 3b763efee7..86f5ad144a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailbackNotAllowed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailbackNotAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFailbackNotAllowed-example) {#getFailbackNotAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFailbackNotAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailoverNotAllowed.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailoverNotAllowed.md index 8d247901ec..b89b29b960 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailoverNotAllowed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFailoverNotAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFailoverNotAllowed-example) {#getFailoverNotAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFailoverNotAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileBlockEncryptedLocations.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileBlockEncryptedLocations.md index 42e6b0910f..9e31446a36 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileBlockEncryptedLocations.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileBlockEncryptedLocations.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFileBlockEncryptedLocations-example) {#getFileBlockEncryptedLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/getFileBlockEncryptedLocations' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileByIdentifier.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileByIdentifier.md index eaf4eecf57..d3e7350598 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileByIdentifier.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileByIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFileByIdentifier-example) {#getFileByIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFileByIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileCount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileCount.md index 1fc6745942..0db3d4e9d7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFileCount-example) {#getFileCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFileCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileList.md index f417a867d7..cc30686c79 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFileList-example) {#getFileList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFileList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileNetworkMountAddress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileNetworkMountAddress.md index 347c48da61..40f9da8948 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileNetworkMountAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFileNetworkMountAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFileNetworkMountAddress-example) {#getFileNetworkMountAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFileNetworkMountAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilePendingDeleteCount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilePendingDeleteCount.md index cb666299b9..e46557a390 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilePendingDeleteCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilePendingDeleteCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFilePendingDeleteCount-example) {#getFilePendingDeleteCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFilePendingDeleteCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilesPendingDelete.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilesPendingDelete.md index cf36bac302..de61a8a607 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilesPendingDelete.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFilesPendingDelete.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFilesPendingDelete-example) {#getFilesPendingDelete-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFilesPendingDelete' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFixReplicationCurrentStatus.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFixReplicationCurrentStatus.md index f62d832ead..ee5cb1a162 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFixReplicationCurrentStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFixReplicationCurrentStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFixReplicationCurrentStatus-example) {#getFixReplicationCurrentStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFixReplicationCurrentStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFolderList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFolderList.md index 20593238fd..2739b9ca14 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFolderList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getFolderList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getFolderList-example) {#getFolderList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getFolderList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getGraph.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getGraph.md index e0fbbd3a2a..04685a4f5e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getGraph.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getGraph.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getGraph-example) {#getGraph-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getGraph' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHardware.md index 7670534702..e71c10f5f1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHasEncryptionAtRest.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHasEncryptionAtRest.md index 6efb833f67..0f9cdf9d2e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHasEncryptionAtRest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHasEncryptionAtRest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getHasEncryptionAtRest-example) {#getHasEncryptionAtRest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getHasEncryptionAtRest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHourlySchedule.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHourlySchedule.md index 50f7fbf9ac..fd64febfb6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHourlySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getHourlySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getHourlySchedule-example) {#getHourlySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getHourlySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIntervalSchedule.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIntervalSchedule.md index 7578c4cc81..3341caec40 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIntervalSchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIntervalSchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIntervalSchedule-example) {#getIntervalSchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIntervalSchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIops.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIops.md index 49d6762d20..a137763994 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIops.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIops.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIops-example) {#getIops-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIops' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsConvertToIndependentTransactionInProgress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsConvertToIndependentTransactionInProgress.md index ffd6ad832f..5c34035990 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsConvertToIndependentTransactionInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsConvertToIndependentTransactionInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsConvertToIndependentTransactionInProgress-example) {#getIsConvertToIndependentTransactionInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsConvertToIndependentTransactionInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsDependentDuplicateProvisionCompleted.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsDependentDuplicateProvisionCompleted.md index 16aa423909..6fb76a3c6b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsDependentDuplicateProvisionCompleted.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsDependentDuplicateProvisionCompleted.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsDependentDuplicateProvisionCompleted-example) {#getIsDependentDuplicateProvisionCompleted-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsDependentDuplicateProvisionCompleted' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsInDedicatedServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsInDedicatedServiceResource.md index 8eff10038c..d0bd0724ca 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsInDedicatedServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsInDedicatedServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsInDedicatedServiceResource-example) {#getIsInDedicatedServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsInDedicatedServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsMagneticStorage.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsMagneticStorage.md index cbeeadfe90..78c29a84a9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsMagneticStorage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsMagneticStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsMagneticStorage-example) {#getIsMagneticStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsMagneticStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsProvisionInProgress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsProvisionInProgress.md index a188a737b5..9a73b4262d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsProvisionInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsProvisionInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsProvisionInProgress-example) {#getIsProvisionInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsProvisionInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyForSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyForSnapshot.md index 031465f7f9..ac1ebd3c7b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyForSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyForSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsReadyForSnapshot-example) {#getIsReadyForSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsReadyForSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyToMount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyToMount.md index 981793f230..6eaf8f817e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyToMount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIsReadyToMount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIsReadyToMount-example) {#getIsReadyToMount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIsReadyToMount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiLuns.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiLuns.md index 4eb49fd235..f2cfbffbb2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiLuns.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiLuns.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIscsiLuns-example) {#getIscsiLuns-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIscsiLuns' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiReplicatingVolume.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiReplicatingVolume.md index c03e4f2eec..f7d55b9fe9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiReplicatingVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiReplicatingVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIscsiReplicatingVolume-example) {#getIscsiReplicatingVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIscsiReplicatingVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiTargetIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiTargetIpAddresses.md index 44394b1273..2756f0d6a1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiTargetIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getIscsiTargetIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getIscsiTargetIpAddresses-example) {#getIscsiTargetIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getIscsiTargetIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getLunId.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getLunId.md index 8beab02a7c..e97e68cc68 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getLunId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getLunId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getLunId-example) {#getLunId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getLunId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getManualSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getManualSnapshots.md index cbd6fffab4..c39aa6fa82 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getManualSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getManualSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getManualSnapshots-example) {#getManualSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getManualSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMaximumExpansionSize.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMaximumExpansionSize.md index 10bf02d47d..1b8d5ce226 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMaximumExpansionSize.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMaximumExpansionSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getMaximumExpansionSize-example) {#getMaximumExpansionSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getMaximumExpansionSize' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMetricTrackingObject.md index dea9f4d47b..54dfb7c8c2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountPath.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountPath.md index 82510ee9e8..647d46c28c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountPath.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getMountPath-example) {#getMountPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getMountPath' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountableFlag.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountableFlag.md index d82ccbe1c2..8d13fe90f6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountableFlag.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMountableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getMountableFlag-example) {#getMountableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getMountableFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMoveAndSplitStatus.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMoveAndSplitStatus.md index c25b38a38d..4be09fcb9e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMoveAndSplitStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getMoveAndSplitStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getMoveAndSplitStatus-example) {#getMoveAndSplitStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getMoveAndSplitStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkConnectionDetails.md index e62022582d..74845b6f3e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getNetworkConnectionDetails-example) {#getNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountAddress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountAddress.md index 1eb73e4188..ff2bafd4db 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getNetworkMountAddress-example) {#getNetworkMountAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getNetworkMountAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountPath.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountPath.md index 2fa5e77266..cc5557ba84 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountPath.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNetworkMountPath.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getNetworkMountPath-example) {#getNetworkMountPath-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getNetworkMountPath' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNotificationSubscribers.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNotificationSubscribers.md index cf57b91ee5..8aa76709a3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObject.md index a8d11125ea..809eabcf29 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectStorageConnectionInformation.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectStorageConnectionInformation.md index 18f8ddb5c3..00a44d1a91 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectStorageConnectionInformation.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectStorageConnectionInformation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getObjectStorageConnectionInformation-example) {#getObjectStorageConnectionInformation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/getObjectStorageConnectionInformation' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectsByCredential.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectsByCredential.md index 60a52aaca5..1116a30115 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectsByCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getObjectsByCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getObjectsByCredential-example) {#getObjectsByCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Credential]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/getObjectsByCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalSnapshotName.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalSnapshotName.md index 15b56abd58..4c7906c7e1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalSnapshotName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalSnapshotName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getOriginalSnapshotName-example) {#getOriginalSnapshotName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getOriginalSnapshotName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeId.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeId.md index a9cba1d0bb..a6c3b49f3b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getOriginalVolumeId-example) {#getOriginalVolumeId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getOriginalVolumeId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeName.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeName.md index 7dbf9862db..420d31979a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getOriginalVolumeName-example) {#getOriginalVolumeName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getOriginalVolumeName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeSize.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeSize.md index 191d1bc448..db4a44167d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeSize.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOriginalVolumeSize.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getOriginalVolumeSize-example) {#getOriginalVolumeSize-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getOriginalVolumeSize' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsType.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsType.md index 1565418058..f8f80b016a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getOsType-example) {#getOsType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getOsType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsTypeId.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsTypeId.md index d9023aa708..4443cb5e91 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsTypeId.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getOsTypeId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getOsTypeId-example) {#getOsTypeId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getOsTypeId' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentPartnerships.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentPartnerships.md index 42c89ec6bb..0eb46d0e49 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentPartnerships.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentPartnerships.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getParentPartnerships-example) {#getParentPartnerships-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getParentPartnerships' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentVolume.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentVolume.md index 18f7cdf6d4..1f96191c59 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getParentVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getParentVolume-example) {#getParentVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getParentVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPartnerships.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPartnerships.md index effe494da3..ea43e48d86 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPartnerships.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPartnerships.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getPartnerships-example) {#getPartnerships-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getPartnerships' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPermissionsGroups.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPermissionsGroups.md index 5f9b611d7c..23bab71a9d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPermissionsGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getPermissionsGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getPermissionsGroups-example) {#getPermissionsGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getPermissionsGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProperties.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProperties.md index 1b61087d1a..b168778f1d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProperties.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProperties.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getProperties-example) {#getProperties-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getProperties' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProvisionedIops.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProvisionedIops.md index ef04675e35..6a4b29ca64 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProvisionedIops.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getProvisionedIops.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getProvisionedIops-example) {#getProvisionedIops-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getProvisionedIops' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRecycleBinFileByIdentifier.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRecycleBinFileByIdentifier.md index abb1c87517..d85542625a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRecycleBinFileByIdentifier.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRecycleBinFileByIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getRecycleBinFileByIdentifier-example) {#getRecycleBinFileByIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getRecycleBinFileByIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHosts.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHosts.md index b47a16e56d..0191357c9b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHosts.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getRemainingAllowedHosts-example) {#getRemainingAllowedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getRemainingAllowedHosts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHostsForReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHostsForReplicant.md index 0aced9ba68..57584ffc6e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHostsForReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getRemainingAllowedHostsForReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getRemainingAllowedHostsForReplicant-example) {#getRemainingAllowedHostsForReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getRemainingAllowedHostsForReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingLuns.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingLuns.md index e3cbf495a6..5168100ece 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingLuns.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingLuns.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicatingLuns-example) {#getReplicatingLuns-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicatingLuns' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingVolume.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingVolume.md index b73da51431..27f0fe4d89 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicatingVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicatingVolume-example) {#getReplicatingVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicatingVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationEvents.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationEvents.md index 1612031bf2..4dd34ddee1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicationEvents-example) {#getReplicationEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicationEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationPartners.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationPartners.md index 85f46970d0..26a16cbec9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationPartners.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationPartners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicationPartners-example) {#getReplicationPartners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicationPartners' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationSchedule.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationSchedule.md index 56d447db37..f11251c907 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationSchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationSchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicationSchedule-example) {#getReplicationSchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicationSchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationStatus.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationStatus.md index c9ea11437e..43b220d398 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicationStatus-example) {#getReplicationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicationStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationTimestamp.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationTimestamp.md index 28bc82caca..1e24e84d6b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationTimestamp.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getReplicationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getReplicationTimestamp-example) {#getReplicationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getReplicationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSchedules.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSchedules.md index dc793bcb33..360fe03568 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSchedules.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSchedules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSchedules-example) {#getSchedules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSchedules' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResource.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResource.md index 24bf678500..5ed310fcc3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResource.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceBackendIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceBackendIpAddress.md index a81776c44c..39455ed917 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getServiceResourceBackendIpAddress-example) {#getServiceResourceBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getServiceResourceBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceName.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceName.md index 86d91e85bf..3dca56ad41 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getServiceResourceName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getServiceResourceName-example) {#getServiceResourceName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getServiceResourceName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCapacityGb.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCapacityGb.md index 43b280f485..8c1e160e89 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCapacityGb.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCapacityGb.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotCapacityGb-example) {#getSnapshotCapacityGb-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotCapacityGb' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCreationTimestamp.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCreationTimestamp.md index 9c7d44a07d..d4bd5a0428 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCreationTimestamp.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotCreationTimestamp.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotCreationTimestamp-example) {#getSnapshotCreationTimestamp-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotCreationTimestamp' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotDeletionThresholdPercentage.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotDeletionThresholdPercentage.md index 0f92537ebc..e09c26846c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotDeletionThresholdPercentage.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotDeletionThresholdPercentage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotDeletionThresholdPercentage-example) {#getSnapshotDeletionThresholdPercentage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotDeletionThresholdPercentage' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotNotificationStatus.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotNotificationStatus.md index 983cc998c6..6295f2e990 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotNotificationStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotNotificationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotNotificationStatus-example) {#getSnapshotNotificationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotNotificationStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSizeBytes.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSizeBytes.md index 4a70e8780e..090e0a8fa7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSizeBytes.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSizeBytes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotSizeBytes-example) {#getSnapshotSizeBytes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotSizeBytes' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSpaceAvailable.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSpaceAvailable.md index ee0b38f56e..42780056b0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSpaceAvailable.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotSpaceAvailable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotSpaceAvailable-example) {#getSnapshotSpaceAvailable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotSpaceAvailable' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshots.md index 3d71c7a28b..24d6abc4e9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshots-example) {#getSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotsForVolume.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotsForVolume.md index ab1db58e7d..5530fe5388 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotsForVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getSnapshotsForVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getSnapshotsForVolume-example) {#getSnapshotsForVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getSnapshotsForVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStaasVersion.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStaasVersion.md index 00d9c3418f..0793928289 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStaasVersion.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStaasVersion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getStaasVersion-example) {#getStaasVersion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getStaasVersion' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroups.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroups.md index 7b1e5a9af6..2c4f89539c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroupsNetworkConnectionDetails.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroupsNetworkConnectionDetails.md index 25218e4ba8..ab94faf52e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroupsNetworkConnectionDetails.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageGroupsNetworkConnectionDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getStorageGroupsNetworkConnectionDetails-example) {#getStorageGroupsNetworkConnectionDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getStorageGroupsNetworkConnectionDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageTierLevel.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageTierLevel.md index 7e4e2c3336..74aa5d6f34 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageTierLevel.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageTierLevel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getStorageTierLevel-example) {#getStorageTierLevel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getStorageTierLevel' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageType.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageType.md index f8eea25a37..20c01fce6a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getStorageType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getStorageType-example) {#getStorageType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getStorageType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTargetIpAddresses.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTargetIpAddresses.md index d8f779eca4..88c80870f5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTargetIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTargetIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getTargetIpAddresses-example) {#getTargetIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getTargetIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalBytesUsed.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalBytesUsed.md index be8bf48564..60a6b78b98 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalBytesUsed.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalBytesUsed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getTotalBytesUsed-example) {#getTotalBytesUsed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getTotalBytesUsed' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalScheduleSnapshotRetentionCount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalScheduleSnapshotRetentionCount.md index 689cc894ab..3b78b11062 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalScheduleSnapshotRetentionCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getTotalScheduleSnapshotRetentionCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getTotalScheduleSnapshotRetentionCount-example) {#getTotalScheduleSnapshotRetentionCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getTotalScheduleSnapshotRetentionCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getUsageNotification.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getUsageNotification.md index 158202766f..6adad8d193 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getUsageNotification.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getUsageNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getUsageNotification-example) {#getUsageNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getUsageNotification' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getValidReplicationTargetDatacenterLocations.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getValidReplicationTargetDatacenterLocations.md index 19caabc407..a67be3c34d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getValidReplicationTargetDatacenterLocations.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getValidReplicationTargetDatacenterLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getValidReplicationTargetDatacenterLocations-example) {#getValidReplicationTargetDatacenterLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getValidReplicationTargetDatacenterLocations' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVendorName.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVendorName.md index aee953bb04..357b04e02b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVendorName.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVendorName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getVendorName-example) {#getVendorName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getVendorName' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVirtualGuest.md index e2f08e2e16..e3a072ea37 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeCountLimits.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeCountLimits.md index 129d6d6bed..347f74ee78 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeCountLimits.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeCountLimits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getVolumeCountLimits-example) {#getVolumeCountLimits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/getVolumeCountLimits' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeDuplicateParameters.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeDuplicateParameters.md index 91451893d9..e215c1af06 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeDuplicateParameters.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeDuplicateParameters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getVolumeDuplicateParameters-example) {#getVolumeDuplicateParameters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getVolumeDuplicateParameters' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeHistory.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeHistory.md index 0b02e2c346..b2d74b5852 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeHistory.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getVolumeHistory-example) {#getVolumeHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getVolumeHistory' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeStatus.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeStatus.md index da2cd5d2cf..9e39f6c34e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getVolumeStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getVolumeStatus-example) {#getVolumeStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getVolumeStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWebccAccount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWebccAccount.md index ef216d2201..6999f94843 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWebccAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWebccAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getWebccAccount-example) {#getWebccAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getWebccAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWeeklySchedule.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWeeklySchedule.md index d6930769b9..4fc26eacab 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWeeklySchedule.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/getWeeklySchedule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#getWeeklySchedule-example) {#getWeeklySchedule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/getWeeklySchedule' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/immediateFailoverToReplicant.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/immediateFailoverToReplicant.md index 5850c5f08b..3a61270215 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/immediateFailoverToReplicant.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/immediateFailoverToReplicant.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#immediateFailoverToReplicant-example) {#immediateFailoverToReplicant-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/immediateFailoverToReplicant' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateOriginVolumeReclaim.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateOriginVolumeReclaim.md index 9bb38325ba..3ff450aee3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateOriginVolumeReclaim.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateOriginVolumeReclaim.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#initiateOriginVolumeReclaim-example) {#initiateOriginVolumeReclaim-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/initiateOriginVolumeReclaim' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateVolumeCutover.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateVolumeCutover.md index 49695871fb..95d08d4329 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateVolumeCutover.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/initiateVolumeCutover.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#initiateVolumeCutover-example) {#initiateVolumeCutover-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/initiateVolumeCutover' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isBlockingOperationInProgress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isBlockingOperationInProgress.md index 0b67777730..fb964c9a96 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isBlockingOperationInProgress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isBlockingOperationInProgress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#isBlockingOperationInProgress-example) {#isBlockingOperationInProgress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/isBlockingOperationInProgress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyForSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyForSnapshot.md index 7933db98c8..2a3e767077 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyForSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyForSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#isDuplicateReadyForSnapshot-example) {#isDuplicateReadyForSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/isDuplicateReadyForSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyToMount.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyToMount.md index 547913b02c..13ede71069 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyToMount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isDuplicateReadyToMount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#isDuplicateReadyToMount-example) {#isDuplicateReadyToMount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/isDuplicateReadyToMount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isVolumeActive.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isVolumeActive.md index 2afedf6972..9a05affe47 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/isVolumeActive.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/isVolumeActive.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#isVolumeActive-example) {#isVolumeActive-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/isVolumeActive' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDependentDuplicate.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDependentDuplicate.md index 992533f770..994cfa3dba 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDependentDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDependentDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#refreshDependentDuplicate-example) {#refreshDependentDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/refreshDependentDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDuplicate.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDuplicate.md index 4c127bae4a..10b8ebe1dd 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDuplicate.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/refreshDuplicate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#refreshDuplicate-example) {#refreshDuplicate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/refreshDuplicate' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardware.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardware.md index 18c69f46fb..cb12ddf5c5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardware.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromHardware-example) {#removeAccessFromHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardwareList.md index 64f3360ff7..b27135551f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromHardwareList-example) {#removeAccessFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHost.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHost.md index 5802fb98ad..773e1ffab5 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHost.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromHost-example) {#removeAccessFromHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHostList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHostList.md index 6788136d8d..9256cf2151 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHostList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromHostList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromHostList-example) {#removeAccessFromHostList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromHostList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddress.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddress.md index bc462f6ce5..12652dcd7e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromIpAddress-example) {#removeAccessFromIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddressList.md index f146c2fd4d..1fdd1c9d41 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromIpAddressList-example) {#removeAccessFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnet.md index 9c9f8c4a58..6b43d831e8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromSubnet-example) {#removeAccessFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnetList.md index 708607070f..1bd6714b59 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromSubnetList-example) {#removeAccessFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuest.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuest.md index 5db1981dca..b01642808e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromVirtualGuest-example) {#removeAccessFromVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuestList.md index 4492b70245..b35e372090 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessFromVirtualGuestList-example) {#removeAccessFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromHardwareList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromHardwareList.md index 598d7fe605..21c95dfa49 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromHardwareList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromHardwareList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromHardwareList-example) {#removeAccessToReplicantFromHardwareList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessToReplicantFromHardwareList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromIpAddressList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromIpAddressList.md index 5e2e84b00d..3722284789 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromIpAddressList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromIpAddressList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromIpAddressList-example) {#removeAccessToReplicantFromIpAddressList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessToReplicantFromIpAddressList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnet.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnet.md index 82820812fe..a89f6e0454 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnet.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromSubnet-example) {#removeAccessToReplicantFromSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessToReplicantFromSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnetList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnetList.md index b844d84a2e..54207d98f2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnetList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromSubnetList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromSubnetList-example) {#removeAccessToReplicantFromSubnetList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessToReplicantFromSubnetList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromVirtualGuestList.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromVirtualGuestList.md index cb8e0c3fc2..b84858c25f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromVirtualGuestList.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeAccessToReplicantFromVirtualGuestList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeAccessToReplicantFromVirtualGuestList-example) {#removeAccessToReplicantFromVirtualGuestList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeAccessToReplicantFromVirtualGuestList' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeCredential.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeCredential.md index 99d9125122..bea931f69a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeCredential.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/removeCredential.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#removeCredential-example) {#removeCredential-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/removeCredential' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFile.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFile.md index 5aeffadc65..4e56ff4a2f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFile.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#restoreFile-example) {#restoreFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/restoreFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFromSnapshot.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFromSnapshot.md index f609719984..c0f0e50b0b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFromSnapshot.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/restoreFromSnapshot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#restoreFromSnapshot-example) {#restoreFromSnapshot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/restoreFromSnapshot' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/sendPasswordReminderEmail.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/sendPasswordReminderEmail.md index 7a1f308d46..19c7c245c3 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/sendPasswordReminderEmail.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/sendPasswordReminderEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#sendPasswordReminderEmail-example) {#sendPasswordReminderEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/sendPasswordReminderEmail' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/setMountable.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/setMountable.md index b5b81eb161..587e4a7b6f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/setMountable.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/setMountable.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#setMountable-example) {#setMountable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/setMountable' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotAllocation.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotAllocation.md index 0dc47c7871..4a1a67e6e0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotAllocation.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#setSnapshotAllocation-example) {#setSnapshotAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/setSnapshotAllocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotNotification.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotNotification.md index 3892e416e3..b698ef8e25 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotNotification.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/setSnapshotNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#setSnapshotNotification-example) {#setSnapshotNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/setSnapshotNotification' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/upgradeVolumeCapacity.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/upgradeVolumeCapacity.md index cf2880296b..d9db8d9f8c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/upgradeVolumeCapacity.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/upgradeVolumeCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#upgradeVolumeCapacity-example) {#upgradeVolumeCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/upgradeVolumeCapacity' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/uploadFile.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/uploadFile.md index f632f89e53..33c511684d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/uploadFile.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/uploadFile.md @@ -18,8 +18,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#uploadFile-example) {#uploadFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Entity]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/uploadFile' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi/validateHostsAccess.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi/validateHostsAccess.md index 9cc007212e..7b56dd1c42 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi/validateHostsAccess.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi/validateHostsAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi" --- -### Curl Example +# [REST Example](#validateHostsAccess-example) {#validateHostsAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Network_Storage_Host]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi/{SoftLayer_Network_Storage_IscsiID}/validateHostsAccess' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getAllObjects.md index ce7694e9f5..461aa4a668 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi_OS_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi_OS_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getObject.md index 8209fc22bc..5699161e4e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Iscsi_OS_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Iscsi_OS_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Iscsi_OS_Type/{SoftLayer_Network_Storage_Iscsi_OS_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getAllObjects.md index 14ea373a04..6f52ed6cd8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getCountry.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getCountry.md index d3e3f8227b..00bb17f65d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getCountry.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getCountry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref" --- -### Curl Example +# [REST Example](#getCountry-example) {#getCountry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/{SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_XrefID}/getCountry' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getLocationGroup.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getLocationGroup.md index a4d6d7a355..5081a78434 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getLocationGroup.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getLocationGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref" --- -### Curl Example +# [REST Example](#getLocationGroup-example) {#getLocationGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/{SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_XrefID}/getLocationGroup' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getObject.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getObject.md index 7fe96c1697..359a635896 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/{SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_XrefID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getValidCountriesForRegion.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getValidCountriesForRegion.md index f6b1d5aa4d..08800d287b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getValidCountriesForRegion.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getValidCountriesForRegion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref" --- -### Curl Example +# [REST Example](#getValidCountriesForRegion-example) {#getValidCountriesForRegion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_CrossRegion_Country_Xref/getValidCountriesForRegion' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAccount.md index a08b63a29d..7f9e37718d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getActiveTickets.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getActiveTickets.md index 984e82eba0..cbb2a4bfd8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getActiveTickets.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getActiveTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getActiveTickets-example) {#getActiveTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getActiveTickets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAddress.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAddress.md index fe7d96a341..5f4dfb8dac 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAddress.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getAddress-example) {#getAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllObjects.md index 07606ff179..c12949cb2a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllRequestStatuses.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllRequestStatuses.md index b6c275b853..7e812b3f1d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllRequestStatuses.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getAllRequestStatuses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getAllRequestStatuses-example) {#getAllRequestStatuses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/getAllRequestStatuses' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getBillingItem.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getBillingItem.md index 228b07393c..64514195de 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateEmployee.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateEmployee.md index 09e0e12999..cd6652fa8d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateEmployee.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getCreateEmployee-example) {#getCreateEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getCreateEmployee' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateUser.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateUser.md index 64233ff785..b9c245d909 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateUser.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getCreateUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getCreateUser-example) {#getCreateUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getCreateUser' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceConfiguration.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceConfiguration.md index 9f6dfaaef5..e8f618ede9 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceConfiguration.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getDeviceConfiguration-example) {#getDeviceConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getDeviceConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceModel.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceModel.md index db83e86bf6..e3b1bf4a8f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceModel.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getDeviceModel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getDeviceModel-example) {#getDeviceModel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getDeviceModel' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getKeyContacts.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getKeyContacts.md index 66ae32d72a..6233f0501b 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getKeyContacts.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getKeyContacts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getKeyContacts-example) {#getKeyContacts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getKeyContacts' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyEmployee.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyEmployee.md index 1c71b40c73..b851e49b5a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyEmployee.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyEmployee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getModifyEmployee-example) {#getModifyEmployee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getModifyEmployee' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyUser.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyUser.md index c4bfb2fac8..2cce626597 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyUser.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getModifyUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getModifyUser-example) {#getModifyUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getModifyUser' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getObject.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getObject.md index 53b0802cc8..b5a1b47402 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getPendingRequests.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getPendingRequests.md index 82671d7709..9974042a1e 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getPendingRequests.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getPendingRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getPendingRequests-example) {#getPendingRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/getPendingRequests' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getShipments.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getShipments.md index aecd797d61..378fb26ddf 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getShipments.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getShipments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getShipments-example) {#getShipments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getShipments' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getStatus.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getStatus.md index 8af85b11f8..150cb83e44 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getStatus.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTicket.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTicket.md index 7c18f5c5d8..e0847d71b1 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTicket.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTickets.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTickets.md index 082742ae22..13c90819d2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTickets.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request/{SoftLayer_Network_Storage_MassDataMigration_RequestID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getAccount.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getAccount.md index c6bd1a2841..e8932d61e4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/{SoftLayer_Network_Storage_MassDataMigration_Request_KeyContactID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getObject.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getObject.md index fd82f88253..9ed95b5f8c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/{SoftLayer_Network_Storage_MassDataMigration_Request_KeyContactID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getRequest.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getRequest.md index e27820528c..2ffbadfe5f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getRequest.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/getRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact" --- -### Curl Example +# [REST Example](#getRequest-example) {#getRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request_KeyContact/{SoftLayer_Network_Storage_MassDataMigration_Request_KeyContactID}/getRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_Status/getObject.md b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_Status/getObject.md index 930c8b3a6b..bf29a3d302 100644 --- a/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_Status/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_MassDataMigration_Request_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_MassDataMigration_Request_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_MassDataMigration_Request_Status/{SoftLayer_Network_Storage_MassDataMigration_Request_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/createObject.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/createObject.md index b3b37fc675..db2d094ccd 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/createObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Schedule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Schedule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/deleteObject.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/deleteObject.md index af3857d8d8..9fcef0bbd8 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/editObject.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/editObject.md index c7c4e07386..0f236d88a4 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/editObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Schedule]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage_Schedule]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getDay.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getDay.md index c29712ecb8..ffa314d3a0 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getDay.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getDay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getDay-example) {#getDay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getDay' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfMonth.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfMonth.md index b208d3a0c6..14b021e09a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfMonth.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfMonth.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getDayOfMonth-example) {#getDayOfMonth-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getDayOfMonth' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfWeek.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfWeek.md index 2acaba3407..988e7458b6 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfWeek.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getDayOfWeek.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getDayOfWeek-example) {#getDayOfWeek-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getDayOfWeek' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getEvents.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getEvents.md index 8c94dc9414..fe9af0e52f 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getEvents.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getEvents-example) {#getEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getHour.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getHour.md index 2b94684b55..1b4bf4aa40 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getHour.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getHour.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getHour-example) {#getHour-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getHour' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getMinute.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getMinute.md index 639d7c2d2e..2bba66898d 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getMinute.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getMinute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getMinute-example) {#getMinute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getMinute' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getMonthOfYear.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getMonthOfYear.md index 12a84d34ad..09afa0a7fa 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getMonthOfYear.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getMonthOfYear.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getMonthOfYear-example) {#getMonthOfYear-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getMonthOfYear' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getObject.md index da9b497009..254549405a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getPartnership.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getPartnership.md index 316510eb7e..d588915d86 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getPartnership.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getPartnership.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getPartnership-example) {#getPartnership-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getPartnership' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getProperties.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getProperties.md index 8abd51ae99..a9e07ce649 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getProperties.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getProperties.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getProperties-example) {#getProperties-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getProperties' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getReplicaSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getReplicaSnapshots.md index 554fd6e279..bbe5b6a6b7 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getReplicaSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getReplicaSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getReplicaSnapshots-example) {#getReplicaSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getReplicaSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getRetentionCount.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getRetentionCount.md index 002250889e..84d7b4faad 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getRetentionCount.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getRetentionCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getRetentionCount-example) {#getRetentionCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getRetentionCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getSecond.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getSecond.md index fb29c23ae5..8c04637f63 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getSecond.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getSecond.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getSecond-example) {#getSecond-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getSecond' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getSnapshots.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getSnapshots.md index 4c12a4eb17..acba22b322 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getSnapshots.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getSnapshots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getSnapshots-example) {#getSnapshots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getSnapshots' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getType.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getType.md index b73bb37f16..f956ebf06c 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getType.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule/getVolume.md b/content/reference/services/SoftLayer_Network_Storage_Schedule/getVolume.md index e25fc3d856..a8130e35d2 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule/getVolume.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule/getVolume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule" --- -### Curl Example +# [REST Example](#getVolume-example) {#getVolume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule/{SoftLayer_Network_Storage_ScheduleID}/getVolume' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getAllObjects.md b/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getAllObjects.md index a0d3b30302..49248c303a 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule_Property_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule_Property_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getObject.md b/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getObject.md index ccafe8ff58..35e21f3903 100644 --- a/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Storage_Schedule_Property_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Storage_Schedule_Property_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Storage_Schedule_Property_Type/{SoftLayer_Network_Storage_Schedule_Property_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorage.md index 71973b81d8..d56fec92b7 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorageList.md index be8e0dab0c..98dfd0aec0 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Network_Subnet/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/clearRoute.md b/content/reference/services/SoftLayer_Network_Subnet/clearRoute.md index ab3e55e8e5..c77baf14e3 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/clearRoute.md +++ b/content/reference/services/SoftLayer_Network_Subnet/clearRoute.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#clearRoute-example) {#clearRoute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/clearRoute' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/createReverseDomainRecords.md b/content/reference/services/SoftLayer_Network_Subnet/createReverseDomainRecords.md index 5019907065..b265f3f268 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/createReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Network_Subnet/createReverseDomainRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#createReverseDomainRecords-example) {#createReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/createReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/createSubnetRouteUpdateTransaction.md b/content/reference/services/SoftLayer_Network_Subnet/createSubnetRouteUpdateTransaction.md index f06a2cb7ca..1d36c63d5a 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/createSubnetRouteUpdateTransaction.md +++ b/content/reference/services/SoftLayer_Network_Subnet/createSubnetRouteUpdateTransaction.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#createSubnetRouteUpdateTransaction-example) {#createSubnetRouteUpdateTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/createSubnetRouteUpdateTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/createSwipTransaction.md b/content/reference/services/SoftLayer_Network_Subnet/createSwipTransaction.md index 74a01c376c..1937c1a4cd 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/createSwipTransaction.md +++ b/content/reference/services/SoftLayer_Network_Subnet/createSwipTransaction.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#createSwipTransaction-example) {#createSwipTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/createSwipTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/editNote.md b/content/reference/services/SoftLayer_Network_Subnet/editNote.md index 03317b346e..a36572fb00 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/editNote.md +++ b/content/reference/services/SoftLayer_Network_Subnet/editNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#editNote-example) {#editNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/editNote' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/findAllSubnetsAndActiveSwipTransactionStatus.md b/content/reference/services/SoftLayer_Network_Subnet/findAllSubnetsAndActiveSwipTransactionStatus.md index c8a1abf395..917a6f3669 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/findAllSubnetsAndActiveSwipTransactionStatus.md +++ b/content/reference/services/SoftLayer_Network_Subnet/findAllSubnetsAndActiveSwipTransactionStatus.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#findAllSubnetsAndActiveSwipTransactionStatus-example) {#findAllSubnetsAndActiveSwipTransactionStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/findAllSubnetsAndActiveSwipTransactionStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAccount.md b/content/reference/services/SoftLayer_Network_Subnet/getAccount.md index c0f0b8905d..2fb6b6ad53 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getActiveRegistration.md b/content/reference/services/SoftLayer_Network_Subnet/getActiveRegistration.md index 231e79b853..836a28d1af 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getActiveRegistration.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getActiveRegistration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getActiveRegistration-example) {#getActiveRegistration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getActiveRegistration' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getActiveSwipTransaction.md b/content/reference/services/SoftLayer_Network_Subnet/getActiveSwipTransaction.md index 0407612348..ea85e0d2ae 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getActiveSwipTransaction.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getActiveSwipTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getActiveSwipTransaction-example) {#getActiveSwipTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getActiveSwipTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getActiveTransaction.md b/content/reference/services/SoftLayer_Network_Subnet/getActiveTransaction.md index 9b21e9d499..e3e1f41998 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAddressSpace.md b/content/reference/services/SoftLayer_Network_Subnet/getAddressSpace.md index 255c937883..d4869ecef4 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAddressSpace.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAddressSpace.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAddressSpace-example) {#getAddressSpace-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAddressSpace' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAllowedHost.md b/content/reference/services/SoftLayer_Network_Subnet/getAllowedHost.md index c33009bf52..617be8a01d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorage.md index 315e3861e9..11bbd1dc56 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorageReplicas.md index daccfcede9..a637890950 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Network_Subnet/getAttachedNetworkStorages.md index c17809b6ec..ac73cea3d9 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Network_Subnet/getAvailableNetworkStorages.md index 462875999b..1b07a8618d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getBillingItem.md b/content/reference/services/SoftLayer_Network_Subnet/getBillingItem.md index 33a1bdae7b..fa8e42938b 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getBoundDescendants.md b/content/reference/services/SoftLayer_Network_Subnet/getBoundDescendants.md index adc303d4a7..ca8c4f1f6e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getBoundDescendants.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getBoundDescendants.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getBoundDescendants-example) {#getBoundDescendants-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getBoundDescendants' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getBoundRouterFlag.md b/content/reference/services/SoftLayer_Network_Subnet/getBoundRouterFlag.md index de68cb2644..5a4b60e43e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getBoundRouterFlag.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getBoundRouterFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getBoundRouterFlag-example) {#getBoundRouterFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getBoundRouterFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getBoundRouters.md b/content/reference/services/SoftLayer_Network_Subnet/getBoundRouters.md index 501080dda2..7d9eba0a87 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getBoundRouters.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getBoundRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getBoundRouters-example) {#getBoundRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getBoundRouters' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getChildren.md b/content/reference/services/SoftLayer_Network_Subnet/getChildren.md index f992da1d42..e51c5b067c 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getChildren.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getDatacenter.md b/content/reference/services/SoftLayer_Network_Subnet/getDatacenter.md index 69e065389f..29d6092295 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getDatacenter.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getDescendants.md b/content/reference/services/SoftLayer_Network_Subnet/getDescendants.md index 70adad7cb1..91412fc529 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getDescendants.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getDescendants.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getDescendants-example) {#getDescendants-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getDescendants' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getDisplayLabel.md b/content/reference/services/SoftLayer_Network_Subnet/getDisplayLabel.md index 19aaaa340a..d1c552a200 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getDisplayLabel.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getDisplayLabel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getDisplayLabel-example) {#getDisplayLabel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getDisplayLabel' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getEndPointIpAddress.md b/content/reference/services/SoftLayer_Network_Subnet/getEndPointIpAddress.md index 623c18a5a3..ff8125fbd4 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getEndPointIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getEndPointIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getEndPointIpAddress-example) {#getEndPointIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getEndPointIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getGlobalIpRecord.md b/content/reference/services/SoftLayer_Network_Subnet/getGlobalIpRecord.md index b0d010d9fa..4b7eebd7e1 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getGlobalIpRecord.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getGlobalIpRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getGlobalIpRecord-example) {#getGlobalIpRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getGlobalIpRecord' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getHardware.md b/content/reference/services/SoftLayer_Network_Subnet/getHardware.md index d4a3d10152..fadc3035b7 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getIpAddressUsage.md b/content/reference/services/SoftLayer_Network_Subnet/getIpAddressUsage.md index 3767c46241..25fcb51a98 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getIpAddressUsage.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getIpAddressUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getIpAddressUsage-example) {#getIpAddressUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getIpAddressUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getIpAddresses.md b/content/reference/services/SoftLayer_Network_Subnet/getIpAddresses.md index 45e0dd9d06..b564445421 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getIpAddresses-example) {#getIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getNetworkComponentFirewall.md b/content/reference/services/SoftLayer_Network_Subnet/getNetworkComponentFirewall.md index fbc04bc63a..3a39bd38a1 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getNetworkComponentFirewall.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getNetworkComponentFirewall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewall-example) {#getNetworkComponentFirewall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getNetworkComponentFirewall' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getNetworkProtectionAddresses.md b/content/reference/services/SoftLayer_Network_Subnet/getNetworkProtectionAddresses.md index 681629ff69..53ac3ecb30 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getNetworkProtectionAddresses.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getNetworkProtectionAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getNetworkProtectionAddresses-example) {#getNetworkProtectionAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getNetworkProtectionAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getNetworkTunnelContexts.md b/content/reference/services/SoftLayer_Network_Subnet/getNetworkTunnelContexts.md index 48349bd49a..f92fc9884a 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getNetworkTunnelContexts.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getNetworkTunnelContexts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getNetworkTunnelContexts-example) {#getNetworkTunnelContexts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getNetworkTunnelContexts' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Subnet/getNetworkVlan.md index 9f9a6fd0d7..da9ccce2f6 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getObject.md b/content/reference/services/SoftLayer_Network_Subnet/getObject.md index b3a5e3b3d1..c2f4eabe4b 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getPodName.md b/content/reference/services/SoftLayer_Network_Subnet/getPodName.md index 7c61876cbe..3594f6f952 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getPodName.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getPodName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getPodName-example) {#getPodName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getPodName' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getProtectedIpAddresses.md b/content/reference/services/SoftLayer_Network_Subnet/getProtectedIpAddresses.md index c2b88acca4..898df507a8 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getProtectedIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getProtectedIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getProtectedIpAddresses-example) {#getProtectedIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getProtectedIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Network_Subnet/getRegionalInternetRegistry.md index 31d02960a4..89e4db191b 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRegistrations.md b/content/reference/services/SoftLayer_Network_Subnet/getRegistrations.md index 413aab6986..dfab6c3401 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRegistrations.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRegistrations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRegistrations-example) {#getRegistrations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRegistrations' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getReverseDomain.md b/content/reference/services/SoftLayer_Network_Subnet/getReverseDomain.md index 5134815f7f..52a61eeb5d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getReverseDomain.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getReverseDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getReverseDomain-example) {#getReverseDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getReverseDomain' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getReverseDomainRecords.md b/content/reference/services/SoftLayer_Network_Subnet/getReverseDomainRecords.md index b3f7d216df..f8117d8087 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getReverseDomainRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getReverseDomainRecords-example) {#getReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRoleKeyName.md b/content/reference/services/SoftLayer_Network_Subnet/getRoleKeyName.md index 03fea59daa..140966aa40 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRoleKeyName.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRoleKeyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRoleKeyName-example) {#getRoleKeyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRoleKeyName' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRoleName.md b/content/reference/services/SoftLayer_Network_Subnet/getRoleName.md index 826b439163..29b8ca72d1 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRoleName.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRoleName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRoleName-example) {#getRoleName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRoleName' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRoutableEndpointIpAddresses.md b/content/reference/services/SoftLayer_Network_Subnet/getRoutableEndpointIpAddresses.md index f52800a1d5..d8e6729a34 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRoutableEndpointIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRoutableEndpointIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRoutableEndpointIpAddresses-example) {#getRoutableEndpointIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRoutableEndpointIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeKeyName.md b/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeKeyName.md index 3185150988..51d1820528 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeKeyName.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeKeyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRoutingTypeKeyName-example) {#getRoutingTypeKeyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRoutingTypeKeyName' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeName.md b/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeName.md index 18b651fa90..642a0ccffb 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeName.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getRoutingTypeName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getRoutingTypeName-example) {#getRoutingTypeName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getRoutingTypeName' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getSubnetForIpAddress.md b/content/reference/services/SoftLayer_Network_Subnet/getSubnetForIpAddress.md index 63f55e34d5..cad7875d7f 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getSubnetForIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getSubnetForIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getSubnetForIpAddress-example) {#getSubnetForIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/getSubnetForIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getSwipTransaction.md b/content/reference/services/SoftLayer_Network_Subnet/getSwipTransaction.md index b88225b328..4bd851d178 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getSwipTransaction.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getSwipTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getSwipTransaction-example) {#getSwipTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getSwipTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getTagReferences.md b/content/reference/services/SoftLayer_Network_Subnet/getTagReferences.md index c46c67ffe7..9e57631329 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getTagReferences.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getUnboundDescendants.md b/content/reference/services/SoftLayer_Network_Subnet/getUnboundDescendants.md index 241d1078c4..5158aec21d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getUnboundDescendants.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getUnboundDescendants.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getUnboundDescendants-example) {#getUnboundDescendants-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getUnboundDescendants' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getUtilizedIpAddressCount.md b/content/reference/services/SoftLayer_Network_Subnet/getUtilizedIpAddressCount.md index 71886cfe56..55c80b080c 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getUtilizedIpAddressCount.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getUtilizedIpAddressCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getUtilizedIpAddressCount-example) {#getUtilizedIpAddressCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getUtilizedIpAddressCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/getVirtualGuests.md b/content/reference/services/SoftLayer_Network_Subnet/getVirtualGuests.md index 861a2434cf..dc3068e8ae 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Subnet/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Network_Subnet/removeAccessToNetworkStorageList.md index 5841341d1e..584b7b8a24 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Network_Subnet/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/route.md b/content/reference/services/SoftLayer_Network_Subnet/route.md index 40f058e053..3d13b57896 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/route.md +++ b/content/reference/services/SoftLayer_Network_Subnet/route.md @@ -43,8 +43,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#route-example) {#route-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/route' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet/setTags.md b/content/reference/services/SoftLayer_Network_Subnet/setTags.md index da3c2639ab..1b2021313d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet/setTags.md +++ b/content/reference/services/SoftLayer_Network_Subnet/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet/{SoftLayer_Network_SubnetID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorage.md index 6f0a42011f..8385f7a84f 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorageList.md index aae4ed449c..8c64fcceb0 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObject.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObject.md index b63ea9dcc5..832f94e653 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObjects.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObjects.md index c9f1ca46d1..4e00b7d822 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObjects.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_IpAddress]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findByIpv4Address.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findByIpv4Address.md index 56fc2586f4..7ca1fc19b3 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findByIpv4Address.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findByIpv4Address.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#findByIpv4Address-example) {#findByIpv4Address-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/findByIpv4Address' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findUsage.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findUsage.md index 0bc7ee48c7..7a12f96588 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findUsage.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/findUsage.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#findUsage-example) {#findUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/findUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedHost.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedHost.md index 36cf0276ca..64f7d62b93 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorage.md index aaacc5aaf0..398f89607e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorageReplicas.md index db9d73eb55..e2384a3b37 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getApplicationDeliveryController.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getApplicationDeliveryController.md index 53d5982013..9e34e36437 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getApplicationDeliveryController.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getApplicationDeliveryController.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getApplicationDeliveryController-example) {#getApplicationDeliveryController-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getApplicationDeliveryController' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAttachedNetworkStorages.md index cf4452f8b8..9baf4ff8e7 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAvailableNetworkStorages.md index 2e590be931..9e48e9d62d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getByIpAddress.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getByIpAddress.md index c7b676ff5f..032c7be5be 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getByIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getByIpAddress-example) {#getByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/getByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getContextTunnelTranslations.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getContextTunnelTranslations.md index 8d33fb5301..e871fd7147 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getContextTunnelTranslations.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getContextTunnelTranslations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getContextTunnelTranslations-example) {#getContextTunnelTranslations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getContextTunnelTranslations' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getEndpointSubnets.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getEndpointSubnets.md index 2f4e1bec58..e873de58e8 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getEndpointSubnets.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getEndpointSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getEndpointSubnets-example) {#getEndpointSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getEndpointSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponent.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponent.md index 8895356858..f29450d832 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponent.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getGuestNetworkComponent-example) {#getGuestNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getGuestNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponentBinding.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponentBinding.md index 3d77be3645..58d7f00797 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponentBinding.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getGuestNetworkComponentBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getGuestNetworkComponentBinding-example) {#getGuestNetworkComponentBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getGuestNetworkComponentBinding' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getHardware.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getHardware.md index 1563e998df..7e1cbab18b 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getNetworkComponent.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getNetworkComponent.md index 9e77017967..0215ee519d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getNetworkComponent.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getNetworkComponent-example) {#getNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getObject.md index b341b2f429..a7f5c1d762 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPrivateNetworkGateway.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPrivateNetworkGateway.md index d24d703194..68073f217e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPrivateNetworkGateway.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPrivateNetworkGateway.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getPrivateNetworkGateway-example) {#getPrivateNetworkGateway-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getPrivateNetworkGateway' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getProtectionAddress.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getProtectionAddress.md index 0cf0647b74..b3ef84139f 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getProtectionAddress.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getProtectionAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getProtectionAddress-example) {#getProtectionAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getProtectionAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPublicNetworkGateway.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPublicNetworkGateway.md index cfd2de0daf..24309c22a1 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPublicNetworkGateway.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getPublicNetworkGateway.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getPublicNetworkGateway-example) {#getPublicNetworkGateway-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getPublicNetworkGateway' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getRemoteManagementNetworkComponent.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getRemoteManagementNetworkComponent.md index 5c2f721e1d..5a166c7c21 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getRemoteManagementNetworkComponent.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getRemoteManagementNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getRemoteManagementNetworkComponent-example) {#getRemoteManagementNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getRemoteManagementNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSubnet.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSubnet.md index 4a89abc511..56c4b5cd0e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSubnet.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getSubnet-example) {#getSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsOneDay.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsOneDay.md index d6f73edd0e..0866c7ced9 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsOneDay.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsOneDay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getSyslogEventsOneDay-example) {#getSyslogEventsOneDay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getSyslogEventsOneDay' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsSevenDays.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsSevenDays.md index d7a4028f21..2b0d674085 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsSevenDays.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getSyslogEventsSevenDays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getSyslogEventsSevenDays-example) {#getSyslogEventsSevenDays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getSyslogEventsSevenDays' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortOneDay.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortOneDay.md index 5c136ce313..a43d7b0d18 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortOneDay.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortOneDay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsByDestinationPortOneDay-example) {#getTopTenSyslogEventsByDestinationPortOneDay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsByDestinationPortOneDay' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortSevenDays.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortSevenDays.md index 61f6a3e009..6aaa6b0bc5 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortSevenDays.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByDestinationPortSevenDays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsByDestinationPortSevenDays-example) {#getTopTenSyslogEventsByDestinationPortSevenDays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsByDestinationPortSevenDays' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsOneDay.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsOneDay.md index aa263fee67..745729dd3f 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsOneDay.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsOneDay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsByProtocolsOneDay-example) {#getTopTenSyslogEventsByProtocolsOneDay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsByProtocolsOneDay' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsSevenDays.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsSevenDays.md index 0e493d8e53..7130d382a2 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsSevenDays.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsByProtocolsSevenDays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsByProtocolsSevenDays-example) {#getTopTenSyslogEventsByProtocolsSevenDays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsByProtocolsSevenDays' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpOneDay.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpOneDay.md index fb3034cac1..a913be6f7f 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpOneDay.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpOneDay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsBySourceIpOneDay-example) {#getTopTenSyslogEventsBySourceIpOneDay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsBySourceIpOneDay' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpSevenDays.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpSevenDays.md index 846a997b63..17d2a160ba 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpSevenDays.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourceIpSevenDays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsBySourceIpSevenDays-example) {#getTopTenSyslogEventsBySourceIpSevenDays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsBySourceIpSevenDays' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortOneDay.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortOneDay.md index 4d207bd3b6..d4705966cd 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortOneDay.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortOneDay.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsBySourcePortOneDay-example) {#getTopTenSyslogEventsBySourcePortOneDay-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsBySourcePortOneDay' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortSevenDays.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortSevenDays.md index 851ed42ffb..a2b2f1b309 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortSevenDays.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getTopTenSyslogEventsBySourcePortSevenDays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getTopTenSyslogEventsBySourcePortSevenDays-example) {#getTopTenSyslogEventsBySourcePortSevenDays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getTopTenSyslogEventsBySourcePortSevenDays' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualGuest.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualGuest.md index 550008af0c..72a1db8f42 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualLicenses.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualLicenses.md index 20b5ba061f..83c76874ac 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualLicenses.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/getVirtualLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#getVirtualLicenses-example) {#getVirtualLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/getVirtualLicenses' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/removeAccessToNetworkStorageList.md index 909c7213cc..0a708b2075 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress/{SoftLayer_Network_Subnet_IpAddressID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getAccount.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getAccount.md index fdd91afd25..9c33d07869 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getActiveTransaction.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getActiveTransaction.md index c64b720d48..49602c9905 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getBillingItem.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getBillingItem.md index 01870b4943..87c91dc6f8 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getDestinationIpAddress.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getDestinationIpAddress.md index 795344303f..786899225c 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getDestinationIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getDestinationIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#getDestinationIpAddress-example) {#getDestinationIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/getDestinationIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getIpAddress.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getIpAddress.md index 6f3f7cfb0e..f9b0e7c8b9 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#getIpAddress-example) {#getIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/getIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getObject.md index 5a77d33e05..e80e950940 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/route.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/route.md index 31558c3b99..e1ba1eed9e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/route.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/route.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#route-example) {#route-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/route' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/unroute.md b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/unroute.md index d631da1eac..f6848c26a7 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/unroute.md +++ b/content/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/unroute.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_IpAddress_Global" --- -### Curl Example +# [REST Example](#unroute-example) {#unroute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_IpAddress_Global/{SoftLayer_Network_Subnet_IpAddress_GlobalID}/unroute' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/clearRegistration.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/clearRegistration.md index 9db86bf5e8..99917b4193 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/clearRegistration.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/clearRegistration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#clearRegistration-example) {#clearRegistration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/clearRegistration' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/createObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/createObject.md index 1c9e735cc2..c5767180a8 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/createObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/createObject.md @@ -27,8 +27,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/createObjects.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/createObjects.md index 1f657e71f5..65634cc671 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/createObjects.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/editObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/editObject.md index 66aadd95e1..eb8cc73572 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/editObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/editRegistrationAttachedDetails.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/editRegistrationAttachedDetails.md index 67d27301db..b8905dbd54 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/editRegistrationAttachedDetails.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/editRegistrationAttachedDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#editRegistrationAttachedDetails-example) {#editRegistrationAttachedDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration_Details, SoftLayer_Network_Subnet_Registration_Details]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration_Details, SoftLayer_Network_Subnet_Registration_Details]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/editRegistrationAttachedDetails' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getAccount.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getAccount.md index 4f6cc6c753..b461d52b26 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getDetailReferences.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getDetailReferences.md index 1cb6b8c2f2..00bd1733c3 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getDetailReferences.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getDetailReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getDetailReferences-example) {#getDetailReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getDetailReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getEvents.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getEvents.md index 81de5303e4..b4a7ad8078 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getEvents.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getEvents-example) {#getEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getEvents' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getNetworkDetail.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getNetworkDetail.md index 77e851fd0b..0d7ee802f7 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getNetworkDetail.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getNetworkDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getNetworkDetail-example) {#getNetworkDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getNetworkDetail' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getObject.md index caabe8acf9..bc9f076142 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getPersonDetail.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getPersonDetail.md index e57f1a9ee2..c9cbc7cf31 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getPersonDetail.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getPersonDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getPersonDetail-example) {#getPersonDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getPersonDetail' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistry.md index e57caa599f..4a88d09f6f 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistryHandle.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistryHandle.md index 8269b4525d..05a61d53e3 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistryHandle.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getRegionalInternetRegistryHandle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistryHandle-example) {#getRegionalInternetRegistryHandle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getRegionalInternetRegistryHandle' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getStatus.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getStatus.md index fe712635f0..d85516d001 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getStatus.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration/getSubnet.md b/content/reference/services/SoftLayer_Network_Subnet_Registration/getSubnet.md index e9d6e6554e..840cdebcf5 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration/getSubnet.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration/getSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration" --- -### Curl Example +# [REST Example](#getSubnet-example) {#getSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration/{SoftLayer_Network_Subnet_RegistrationID}/getSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/createObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/createObject.md index d55fa0cc5a..e660891a32 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/createObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Details" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration_Details]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Registration_Details]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Details/createObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/deleteObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/deleteObject.md index 6897fdb4f1..4df6fc9ee9 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/deleteObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Details" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Details/{SoftLayer_Network_Subnet_Registration_DetailsID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getDetail.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getDetail.md index 29128da137..c1021e7a3b 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getDetail.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Details" --- -### Curl Example +# [REST Example](#getDetail-example) {#getDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Details/{SoftLayer_Network_Subnet_Registration_DetailsID}/getDetail' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getObject.md index 0f6a930cf4..1093f1d98e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Details" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Details/{SoftLayer_Network_Subnet_Registration_DetailsID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getRegistration.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getRegistration.md index cd3dd3acf9..7195abc173 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getRegistration.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Details/getRegistration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Details" --- -### Curl Example +# [REST Example](#getRegistration-example) {#getRegistration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Details/{SoftLayer_Network_Subnet_Registration_DetailsID}/getRegistration' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getAllObjects.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getAllObjects.md index e0ced36a3d..0b97cc88b6 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getAllObjects.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Status" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Status/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getObject.md index 90ff4378ba..b4ae3ed83d 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Registration_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Registration_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Registration_Status/{SoftLayer_Network_Subnet_Registration_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/editObject.md b/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/editObject.md index 34137995f7..bb3906c4eb 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/editObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Rwhois_Data" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Rwhois_Data]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Subnet_Rwhois_Data]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Rwhois_Data/{SoftLayer_Network_Subnet_Rwhois_DataID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getAccount.md b/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getAccount.md index 18235fc4ce..34eb141658 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Rwhois_Data" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Rwhois_Data/{SoftLayer_Network_Subnet_Rwhois_DataID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getObject.md index 874b3e8ed6..d2ae71561e 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Rwhois_Data/getObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Rwhois_Data" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Rwhois_Data/{SoftLayer_Network_Subnet_Rwhois_DataID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/findMyTransactions.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/findMyTransactions.md index ea88d64995..cf40d3e7e3 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/findMyTransactions.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/findMyTransactions.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#findMyTransactions-example) {#findMyTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/findMyTransactions' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getAccount.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getAccount.md index 1ca52b9b38..5ca445cacf 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/{SoftLayer_Network_Subnet_Swip_TransactionID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getObject.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getObject.md index 8f38fda90f..23733af331 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getObject.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/{SoftLayer_Network_Subnet_Swip_TransactionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getSubnet.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getSubnet.md index fbf438fd88..faf5f18d25 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getSubnet.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/getSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#getSubnet-example) {#getSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/{SoftLayer_Network_Subnet_Swip_TransactionID}/getSubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeAllSubnetSwips.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeAllSubnetSwips.md index 675da51193..08cf9f9958 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeAllSubnetSwips.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeAllSubnetSwips.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#removeAllSubnetSwips-example) {#removeAllSubnetSwips-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/removeAllSubnetSwips' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeSwipData.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeSwipData.md index 56ab5ca3fb..c81649fdf6 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeSwipData.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/removeSwipData.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#removeSwipData-example) {#removeSwipData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/{SoftLayer_Network_Subnet_Swip_TransactionID}/removeSwipData' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/resendSwipData.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/resendSwipData.md index 5fb5bc1b7e..b433b771cd 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/resendSwipData.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/resendSwipData.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#resendSwipData-example) {#resendSwipData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/{SoftLayer_Network_Subnet_Swip_TransactionID}/resendSwipData' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/swipAllSubnets.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/swipAllSubnets.md index 07e29bca74..b8f0e57a10 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/swipAllSubnets.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/swipAllSubnets.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#swipAllSubnets-example) {#swipAllSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/swipAllSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/updateAllSubnetSwips.md b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/updateAllSubnetSwips.md index a0307e7903..c6f398a16a 100644 --- a/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/updateAllSubnetSwips.md +++ b/content/reference/services/SoftLayer_Network_Subnet_Swip_Transaction/updateAllSubnetSwips.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Subnet_Swip_Transaction" --- -### Curl Example +# [REST Example](#updateAllSubnetSwips-example) {#updateAllSubnetSwips-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Subnet_Swip_Transaction/updateAllSubnetSwips' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addCustomerSubnetToNetworkTunnel.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addCustomerSubnetToNetworkTunnel.md index c398aac4b0..4457c472ea 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addCustomerSubnetToNetworkTunnel.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addCustomerSubnetToNetworkTunnel.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#addCustomerSubnetToNetworkTunnel-example) {#addCustomerSubnetToNetworkTunnel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/addCustomerSubnetToNetworkTunnel' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addPrivateSubnetToNetworkTunnel.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addPrivateSubnetToNetworkTunnel.md index 4cdc6486d7..01acb7544d 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addPrivateSubnetToNetworkTunnel.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addPrivateSubnetToNetworkTunnel.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#addPrivateSubnetToNetworkTunnel-example) {#addPrivateSubnetToNetworkTunnel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/addPrivateSubnetToNetworkTunnel' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addServiceSubnetToNetworkTunnel.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addServiceSubnetToNetworkTunnel.md index 29306d4e73..e0a0cd8d1a 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addServiceSubnetToNetworkTunnel.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/addServiceSubnetToNetworkTunnel.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#addServiceSubnetToNetworkTunnel-example) {#addServiceSubnetToNetworkTunnel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/addServiceSubnetToNetworkTunnel' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/applyConfigurationsToDevice.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/applyConfigurationsToDevice.md index 988af75e43..39018e8405 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/applyConfigurationsToDevice.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/applyConfigurationsToDevice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#applyConfigurationsToDevice-example) {#applyConfigurationsToDevice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/applyConfigurationsToDevice' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslation.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslation.md index 9495aa6ca3..9a25672b14 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslation.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslation.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#createAddressTranslation-example) {#createAddressTranslation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/createAddressTranslation' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslations.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslations.md index c1c0949d11..01bf97737a 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslations.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/createAddressTranslations.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#createAddressTranslations-example) {#createAddressTranslations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/createAddressTranslations' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/deleteAddressTranslation.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/deleteAddressTranslation.md index 20e20a7fd6..23207dd4f2 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/deleteAddressTranslation.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/deleteAddressTranslation.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#deleteAddressTranslation-example) {#deleteAddressTranslation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/deleteAddressTranslation' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadAddressTranslationConfigurations.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadAddressTranslationConfigurations.md index b8ba38c281..b3191dafaf 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadAddressTranslationConfigurations.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadAddressTranslationConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#downloadAddressTranslationConfigurations-example) {#downloadAddressTranslationConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/downloadAddressTranslationConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadParameterConfigurations.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadParameterConfigurations.md index c7fbcd4e0c..117a14372c 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadParameterConfigurations.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/downloadParameterConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#downloadParameterConfigurations-example) {#downloadParameterConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/downloadParameterConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslation.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslation.md index db4b7397cb..36e3ce3d05 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslation.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslation.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#editAddressTranslation-example) {#editAddressTranslation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/editAddressTranslation' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslations.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslations.md index e372a90051..898ee567d0 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslations.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editAddressTranslations.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#editAddressTranslations-example) {#editAddressTranslations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context_Address_Translation]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/editAddressTranslations' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editObject.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editObject.md index 6c372f9c27..c51f2dc90d 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editObject.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/editObject.md @@ -62,8 +62,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Tunnel_Module_Context]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAccount.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAccount.md index e62b3b2ec8..69a6f22385 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getActiveTransaction.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getActiveTransaction.md index 39e935079f..28a4168fe4 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslationConfigurations.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslationConfigurations.md index af989318ab..54a185e036 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslationConfigurations.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslationConfigurations.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getAddressTranslationConfigurations-example) {#getAddressTranslationConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getAddressTranslationConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslations.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslations.md index d72ffe4d29..4b578b0c76 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslations.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAddressTranslations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getAddressTranslations-example) {#getAddressTranslations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getAddressTranslations' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAllAvailableServiceSubnets.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAllAvailableServiceSubnets.md index 792a74c5aa..0ab99387c0 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAllAvailableServiceSubnets.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAllAvailableServiceSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getAllAvailableServiceSubnets-example) {#getAllAvailableServiceSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getAllAvailableServiceSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationDefault.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationDefault.md index ab57aa9d16..f08464e80f 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationDefault.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getAuthenticationDefault-example) {#getAuthenticationDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationDefault' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationOptions.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationOptions.md index df687f6369..19c5cd342c 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationOptions.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationOptions.md @@ -18,8 +18,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getAuthenticationOptions-example) {#getAuthenticationOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getAuthenticationOptions' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getBillingItem.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getBillingItem.md index 98c93b534f..637f7344a7 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getCustomerSubnets.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getCustomerSubnets.md index f40c77d619..d73eeca0a9 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getCustomerSubnets.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getCustomerSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getCustomerSubnets-example) {#getCustomerSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getCustomerSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDatacenter.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDatacenter.md index f823551d2e..a8aad51354 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDatacenter.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupDefault.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupDefault.md index 3447bbd0bf..ddcaf20670 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupDefault.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getDiffieHellmanGroupDefault-example) {#getDiffieHellmanGroupDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupDefault' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupOptions.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupOptions.md index 011d75c109..51aaed4947 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupOptions.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupOptions.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getDiffieHellmanGroupOptions-example) {#getDiffieHellmanGroupOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getDiffieHellmanGroupOptions' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionDefault.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionDefault.md index 74437d4870..38d9a12153 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionDefault.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getEncryptionDefault-example) {#getEncryptionDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getEncryptionDefault' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionOptions.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionOptions.md index e827af3899..801370e3fb 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionOptions.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getEncryptionOptions.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getEncryptionOptions-example) {#getEncryptionOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getEncryptionOptions' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getInternalSubnets.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getInternalSubnets.md index 183c4361fe..a574cc483d 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getInternalSubnets.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getInternalSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getInternalSubnets-example) {#getInternalSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getInternalSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getKeylifeLimits.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getKeylifeLimits.md index 63dc76a7d3..45e5cec3d4 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getKeylifeLimits.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getKeylifeLimits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getKeylifeLimits-example) {#getKeylifeLimits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getKeylifeLimits' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getObject.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getObject.md index 5f7de30c1f..e51a9d1b8d 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getObject.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getParameterConfigurationsForCustomerView.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getParameterConfigurationsForCustomerView.md index 451908c23f..9af67b4688 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getParameterConfigurationsForCustomerView.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getParameterConfigurationsForCustomerView.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getParameterConfigurationsForCustomerView-example) {#getParameterConfigurationsForCustomerView-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getParameterConfigurationsForCustomerView' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseOneKeylifeDefault.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseOneKeylifeDefault.md index cd5c08482f..7a5baad6f2 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseOneKeylifeDefault.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseOneKeylifeDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getPhaseOneKeylifeDefault-example) {#getPhaseOneKeylifeDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getPhaseOneKeylifeDefault' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseTwoKeylifeDefault.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseTwoKeylifeDefault.md index eb31b68080..8066e6206a 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseTwoKeylifeDefault.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getPhaseTwoKeylifeDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getPhaseTwoKeylifeDefault-example) {#getPhaseTwoKeylifeDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/getPhaseTwoKeylifeDefault' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getServiceSubnets.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getServiceSubnets.md index 55f7ca584e..16c1eeb89e 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getServiceSubnets.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getServiceSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getServiceSubnets-example) {#getServiceSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getServiceSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getStaticRouteSubnets.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getStaticRouteSubnets.md index 2417afe820..1fa9c3d190 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getStaticRouteSubnets.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getStaticRouteSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getStaticRouteSubnets-example) {#getStaticRouteSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getStaticRouteSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getTransactionHistory.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getTransactionHistory.md index 9199651dfc..338bc4fc35 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getTransactionHistory.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/getTransactionHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#getTransactionHistory-example) {#getTransactionHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/getTransactionHistory' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeCustomerSubnetFromNetworkTunnel.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeCustomerSubnetFromNetworkTunnel.md index e98cf8cf77..6661f524e0 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeCustomerSubnetFromNetworkTunnel.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeCustomerSubnetFromNetworkTunnel.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#removeCustomerSubnetFromNetworkTunnel-example) {#removeCustomerSubnetFromNetworkTunnel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/removeCustomerSubnetFromNetworkTunnel' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removePrivateSubnetFromNetworkTunnel.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removePrivateSubnetFromNetworkTunnel.md index 2ffb1d4e2f..d98da3e316 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removePrivateSubnetFromNetworkTunnel.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removePrivateSubnetFromNetworkTunnel.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#removePrivateSubnetFromNetworkTunnel-example) {#removePrivateSubnetFromNetworkTunnel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/removePrivateSubnetFromNetworkTunnel' ``` diff --git a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeServiceSubnetFromNetworkTunnel.md b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeServiceSubnetFromNetworkTunnel.md index 43d1ea26e9..a159cd05df 100644 --- a/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeServiceSubnetFromNetworkTunnel.md +++ b/content/reference/services/SoftLayer_Network_Tunnel_Module_Context/removeServiceSubnetFromNetworkTunnel.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Tunnel_Module_Context" --- -### Curl Example +# [REST Example](#removeServiceSubnetFromNetworkTunnel-example) {#removeServiceSubnetFromNetworkTunnel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Tunnel_Module_Context/{SoftLayer_Network_Tunnel_Module_ContextID}/removeServiceSubnetFromNetworkTunnel' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/editObject.md b/content/reference/services/SoftLayer_Network_Vlan/editObject.md index a7b90cf4fb..e81194e3b7 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/editObject.md +++ b/content/reference/services/SoftLayer_Network_Vlan/editObject.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Vlan]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Vlan]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getAccount.md b/content/reference/services/SoftLayer_Network_Vlan/getAccount.md index 56692431e4..a7fb5d4902 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getAccount.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getAdditionalPrimarySubnets.md b/content/reference/services/SoftLayer_Network_Vlan/getAdditionalPrimarySubnets.md index 9f55094251..0d33e9a4a2 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getAdditionalPrimarySubnets.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getAdditionalPrimarySubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getAdditionalPrimarySubnets-example) {#getAdditionalPrimarySubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getAdditionalPrimarySubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGateway.md b/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGateway.md index c443122e3b..e54fafcc94 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGateway.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGateway.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getAttachedNetworkGateway-example) {#getAttachedNetworkGateway-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getAttachedNetworkGateway' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayFlag.md b/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayFlag.md index a064ce31f9..8a0966ec2f 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayFlag.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getAttachedNetworkGatewayFlag-example) {#getAttachedNetworkGatewayFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getAttachedNetworkGatewayFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayVlan.md b/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayVlan.md index a29b2d7f48..545988216d 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayVlan.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getAttachedNetworkGatewayVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getAttachedNetworkGatewayVlan-example) {#getAttachedNetworkGatewayVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getAttachedNetworkGatewayVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getBillingItem.md b/content/reference/services/SoftLayer_Network_Vlan/getBillingItem.md index 7d2be5dd20..7b6d27938f 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getCancelFailureReasons.md b/content/reference/services/SoftLayer_Network_Vlan/getCancelFailureReasons.md index 79573a9df0..de971e2832 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getCancelFailureReasons.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getCancelFailureReasons.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getCancelFailureReasons-example) {#getCancelFailureReasons-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getCancelFailureReasons' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getDatacenter.md b/content/reference/services/SoftLayer_Network_Vlan/getDatacenter.md index 1328bf2df0..0bf52decf0 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getDatacenter.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getDedicatedFirewallFlag.md b/content/reference/services/SoftLayer_Network_Vlan/getDedicatedFirewallFlag.md index cee388a1a1..29a3db104d 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getDedicatedFirewallFlag.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getDedicatedFirewallFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getDedicatedFirewallFlag-example) {#getDedicatedFirewallFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getDedicatedFirewallFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getExtensionRouter.md b/content/reference/services/SoftLayer_Network_Vlan/getExtensionRouter.md index 352d9dc719..6d904fcfb4 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getExtensionRouter.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getExtensionRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getExtensionRouter-example) {#getExtensionRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getExtensionRouter' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getFirewallGuestNetworkComponents.md b/content/reference/services/SoftLayer_Network_Vlan/getFirewallGuestNetworkComponents.md index d7352f9f3f..8719c500cb 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getFirewallGuestNetworkComponents.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getFirewallGuestNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getFirewallGuestNetworkComponents-example) {#getFirewallGuestNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getFirewallGuestNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getFirewallInterfaces.md b/content/reference/services/SoftLayer_Network_Vlan/getFirewallInterfaces.md index 77a2b661b3..80becefcdb 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getFirewallInterfaces.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getFirewallInterfaces.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getFirewallInterfaces-example) {#getFirewallInterfaces-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getFirewallInterfaces' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getFirewallNetworkComponents.md b/content/reference/services/SoftLayer_Network_Vlan/getFirewallNetworkComponents.md index 43b4743ac1..aef29b6b6f 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getFirewallNetworkComponents.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getFirewallNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getFirewallNetworkComponents-example) {#getFirewallNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getFirewallNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableIpAddresses.md b/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableIpAddresses.md index a3488f56e8..20a2dae55f 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableIpAddresses.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getFirewallProtectableIpAddresses-example) {#getFirewallProtectableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getFirewallProtectableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableSubnets.md b/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableSubnets.md index 664fc56345..d4efb6bdb4 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableSubnets.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getFirewallProtectableSubnets.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getFirewallProtectableSubnets-example) {#getFirewallProtectableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getFirewallProtectableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getFirewallRules.md b/content/reference/services/SoftLayer_Network_Vlan/getFirewallRules.md index 699c0282f2..fbcc20beeb 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getFirewallRules.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getFirewallRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getFirewallRules-example) {#getFirewallRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getFirewallRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getGuestNetworkComponents.md b/content/reference/services/SoftLayer_Network_Vlan/getGuestNetworkComponents.md index 677b9f8860..6a217071d2 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getGuestNetworkComponents.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getGuestNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getGuestNetworkComponents-example) {#getGuestNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getGuestNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getHardware.md b/content/reference/services/SoftLayer_Network_Vlan/getHardware.md index 7285db47ab..db171efd88 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getHardware.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getHighAvailabilityFirewallFlag.md b/content/reference/services/SoftLayer_Network_Vlan/getHighAvailabilityFirewallFlag.md index 62c160d346..5f13efddab 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getHighAvailabilityFirewallFlag.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getHighAvailabilityFirewallFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getHighAvailabilityFirewallFlag-example) {#getHighAvailabilityFirewallFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getHighAvailabilityFirewallFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getIpAddressUsage.md b/content/reference/services/SoftLayer_Network_Vlan/getIpAddressUsage.md index 5fed49564f..5ea0c6fa8a 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getIpAddressUsage.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getIpAddressUsage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getIpAddressUsage-example) {#getIpAddressUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getIpAddressUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getLocalDiskStorageCapabilityFlag.md b/content/reference/services/SoftLayer_Network_Vlan/getLocalDiskStorageCapabilityFlag.md index a8e95f1df4..11f87b1f0c 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getLocalDiskStorageCapabilityFlag.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getLocalDiskStorageCapabilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getLocalDiskStorageCapabilityFlag-example) {#getLocalDiskStorageCapabilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getLocalDiskStorageCapabilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getNetwork.md b/content/reference/services/SoftLayer_Network_Vlan/getNetwork.md index 532523f52a..ac6a0b60f3 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getNetwork.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getNetwork.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getNetwork-example) {#getNetwork-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getNetwork' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentTrunks.md b/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentTrunks.md index bcac471f93..e9d1581fe0 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentTrunks.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentTrunks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getNetworkComponentTrunks-example) {#getNetworkComponentTrunks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getNetworkComponentTrunks' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponents.md b/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponents.md index 07d1b4f183..15198f91f6 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentsTrunkable.md b/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentsTrunkable.md index 8d60f9c4dd..bcb527441e 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentsTrunkable.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getNetworkComponentsTrunkable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getNetworkComponentsTrunkable-example) {#getNetworkComponentsTrunkable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getNetworkComponentsTrunkable' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getNetworkSpace.md b/content/reference/services/SoftLayer_Network_Vlan/getNetworkSpace.md index b2caeca07e..7d1a8baf44 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getNetworkSpace.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getNetworkSpace.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getNetworkSpace-example) {#getNetworkSpace-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getNetworkSpace' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getNetworkVlanFirewall.md b/content/reference/services/SoftLayer_Network_Vlan/getNetworkVlanFirewall.md index 2e5723e688..6e7f960622 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getNetworkVlanFirewall.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getNetworkVlanFirewall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getNetworkVlanFirewall-example) {#getNetworkVlanFirewall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getNetworkVlanFirewall' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getObject.md b/content/reference/services/SoftLayer_Network_Vlan/getObject.md index 6768e49bf9..14389c808b 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getObject.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPodName.md b/content/reference/services/SoftLayer_Network_Vlan/getPodName.md index 09d48fa417..d569b09d11 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPodName.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPodName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPodName-example) {#getPodName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPodName' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrimaryRouter.md b/content/reference/services/SoftLayer_Network_Vlan/getPrimaryRouter.md index 148a5422ba..7980533664 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrimaryRouter.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrimaryRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrimaryRouter-example) {#getPrimaryRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPrimaryRouter' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnet.md b/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnet.md index 7164ce9839..781d151cd0 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnet.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrimarySubnet-example) {#getPrimarySubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPrimarySubnet' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnetVersion6.md b/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnetVersion6.md index 959ac4d9a8..b3826d6b7d 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnetVersion6.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnetVersion6.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrimarySubnetVersion6-example) {#getPrimarySubnetVersion6-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPrimarySubnetVersion6' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnets.md b/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnets.md index 52b50d95f0..d1c0529bc2 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnets.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrimarySubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrimarySubnets-example) {#getPrimarySubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPrimarySubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrivateNetworkGateways.md b/content/reference/services/SoftLayer_Network_Vlan/getPrivateNetworkGateways.md index c66c170821..b14bea3274 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrivateNetworkGateways.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrivateNetworkGateways.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrivateNetworkGateways-example) {#getPrivateNetworkGateways-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPrivateNetworkGateways' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlan.md b/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlan.md index 2be4e1b60a..193e5f5a1e 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlan.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlan.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrivateVlan-example) {#getPrivateVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPrivateVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlanByIpAddress.md b/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlanByIpAddress.md index f836e64b2d..413d7d909a 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlanByIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPrivateVlanByIpAddress.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPrivateVlanByIpAddress-example) {#getPrivateVlanByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/getPrivateVlanByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getProtectedIpAddresses.md b/content/reference/services/SoftLayer_Network_Vlan/getProtectedIpAddresses.md index f8d9ee6846..3cb774d274 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getProtectedIpAddresses.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getProtectedIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getProtectedIpAddresses-example) {#getProtectedIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getProtectedIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPublicNetworkGateways.md b/content/reference/services/SoftLayer_Network_Vlan/getPublicNetworkGateways.md index 055df12330..1772ee0d4e 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPublicNetworkGateways.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPublicNetworkGateways.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPublicNetworkGateways-example) {#getPublicNetworkGateways-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getPublicNetworkGateways' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getPublicVlanByFqdn.md b/content/reference/services/SoftLayer_Network_Vlan/getPublicVlanByFqdn.md index 1a0b4bf76e..26fff212cb 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getPublicVlanByFqdn.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getPublicVlanByFqdn.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getPublicVlanByFqdn-example) {#getPublicVlanByFqdn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/getPublicVlanByFqdn' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getReverseDomainRecords.md b/content/reference/services/SoftLayer_Network_Vlan/getReverseDomainRecords.md index 929a01f08d..bf16a3dba9 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getReverseDomainRecords.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getReverseDomainRecords-example) {#getReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getSanStorageCapabilityFlag.md b/content/reference/services/SoftLayer_Network_Vlan/getSanStorageCapabilityFlag.md index 6b3d7588d1..12b83ad32c 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getSanStorageCapabilityFlag.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getSanStorageCapabilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getSanStorageCapabilityFlag-example) {#getSanStorageCapabilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getSanStorageCapabilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getSecondaryRouter.md b/content/reference/services/SoftLayer_Network_Vlan/getSecondaryRouter.md index b353892f1b..a3f0efb52e 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getSecondaryRouter.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getSecondaryRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getSecondaryRouter-example) {#getSecondaryRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getSecondaryRouter' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getSecondarySubnets.md b/content/reference/services/SoftLayer_Network_Vlan/getSecondarySubnets.md index eea06b58cc..e02792962d 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getSecondarySubnets.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getSecondarySubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getSecondarySubnets-example) {#getSecondarySubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getSecondarySubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getSubnets.md b/content/reference/services/SoftLayer_Network_Vlan/getSubnets.md index e670fbd45b..989e03f2d2 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getSubnets.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getSubnets-example) {#getSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getSubnets' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getTagReferences.md b/content/reference/services/SoftLayer_Network_Vlan/getTagReferences.md index a7c1b49a00..64fd76a434 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getTagReferences.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getTotalPrimaryIpAddressCount.md b/content/reference/services/SoftLayer_Network_Vlan/getTotalPrimaryIpAddressCount.md index 50a3daf75f..f3fddbeadd 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getTotalPrimaryIpAddressCount.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getTotalPrimaryIpAddressCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getTotalPrimaryIpAddressCount-example) {#getTotalPrimaryIpAddressCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getTotalPrimaryIpAddressCount' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getType.md b/content/reference/services/SoftLayer_Network_Vlan/getType.md index b2e96391a2..178dfd418e 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getType.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getVirtualGuests.md b/content/reference/services/SoftLayer_Network_Vlan/getVirtualGuests.md index 04d1720154..a436906dc0 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/getVlanForIpAddress.md b/content/reference/services/SoftLayer_Network_Vlan/getVlanForIpAddress.md index bc1dd6888e..cbd7170759 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/getVlanForIpAddress.md +++ b/content/reference/services/SoftLayer_Network_Vlan/getVlanForIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#getVlanForIpAddress-example) {#getVlanForIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/getVlanForIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/setTags.md b/content/reference/services/SoftLayer_Network_Vlan/setTags.md index bcdc5651d1..e3dad46146 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/setTags.md +++ b/content/reference/services/SoftLayer_Network_Vlan/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/updateFirewallIntraVlanCommunication.md b/content/reference/services/SoftLayer_Network_Vlan/updateFirewallIntraVlanCommunication.md index 49a8c4fa79..58a34faeb8 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/updateFirewallIntraVlanCommunication.md +++ b/content/reference/services/SoftLayer_Network_Vlan/updateFirewallIntraVlanCommunication.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#updateFirewallIntraVlanCommunication-example) {#updateFirewallIntraVlanCommunication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/updateFirewallIntraVlanCommunication' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan/upgrade.md b/content/reference/services/SoftLayer_Network_Vlan/upgrade.md index 871e9bf2ce..613bb19799 100644 --- a/content/reference/services/SoftLayer_Network_Vlan/upgrade.md +++ b/content/reference/services/SoftLayer_Network_Vlan/upgrade.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan" --- -### Curl Example +# [REST Example](#upgrade-example) {#upgrade-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan/{SoftLayer_Network_VlanID}/upgrade' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/approveBypassRequest.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/approveBypassRequest.md index ee92b912dd..6921baefd4 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/approveBypassRequest.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/approveBypassRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#approveBypassRequest-example) {#approveBypassRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/approveBypassRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getAccountId.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getAccountId.md index 10c59e5d27..d80c2ef637 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getAccountId.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getAccountId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getAccountId-example) {#getAccountId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getAccountId' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBandwidthAllocation.md index 2e670717e6..7794d8ca6e 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCycleBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCycleBandwidthUsage.md index 5e253d8b76..20963fe6d1 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCycleBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCycleBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getBillingCycleBandwidthUsage-example) {#getBillingCycleBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getBillingCycleBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePrivateBandwidthUsage.md index 9e2b7c3a5f..f96f7b1958 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getBillingCyclePrivateBandwidthUsage-example) {#getBillingCyclePrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getBillingCyclePrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePublicBandwidthUsage.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePublicBandwidthUsage.md index d1b60471ad..ff0b492ef1 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingCyclePublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getBillingCyclePublicBandwidthUsage-example) {#getBillingCyclePublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getBillingCyclePublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingItem.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingItem.md index ae84457321..8af101e207 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingItem.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBypassRequestStatus.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBypassRequestStatus.md index 5777467c02..a7260b4524 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBypassRequestStatus.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getBypassRequestStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getBypassRequestStatus-example) {#getBypassRequestStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getBypassRequestStatus' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getDatacenter.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getDatacenter.md index b9d6a8d379..2b329475b2 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getDatacenter.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallFirmwareVersion.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallFirmwareVersion.md index 7a8c4f6af9..3c0acfeb84 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallFirmwareVersion.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallFirmwareVersion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getFirewallFirmwareVersion-example) {#getFirewallFirmwareVersion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getFirewallFirmwareVersion' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallType.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallType.md index 770ebb545c..2f462cdf4c 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallType.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFirewallType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getFirewallType-example) {#getFirewallType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getFirewallType' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFullyQualifiedDomainName.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFullyQualifiedDomainName.md index 5ac022f31a..ca322fd0b1 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFullyQualifiedDomainName.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getFullyQualifiedDomainName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getFullyQualifiedDomainName-example) {#getFullyQualifiedDomainName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getFullyQualifiedDomainName' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getManagementCredentials.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getManagementCredentials.md index 5169beec64..6a9a5a7c03 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getManagementCredentials.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getManagementCredentials.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getManagementCredentials-example) {#getManagementCredentials-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getManagementCredentials' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObject.md index daf2aa40d0..d73b90aa1c 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObjectId.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObjectId.md index 9db05e5316..91637d828f 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObjectId.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getMetricTrackingObjectId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getMetricTrackingObjectId-example) {#getMetricTrackingObjectId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getMetricTrackingObjectId' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkFirewallUpdateRequests.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkFirewallUpdateRequests.md index 4fd3f2321a..22ae52479f 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkFirewallUpdateRequests.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkFirewallUpdateRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getNetworkFirewallUpdateRequests-example) {#getNetworkFirewallUpdateRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getNetworkFirewallUpdateRequests' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkGateway.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkGateway.md index 1bfd34da12..38085cca67 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkGateway.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkGateway.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getNetworkGateway-example) {#getNetworkGateway-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getNetworkGateway' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlan.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlan.md index 9564f6238d..1066d77f60 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlans.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlans.md index 62e6c5d884..48bab96f75 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getObject.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getObject.md index ef5235d0df..58ccf6bfef 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getObject.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getRules.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getRules.md index 332d57af4b..0f49a2ab3b 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getRules.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getTagReferences.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getTagReferences.md index d987383b06..f754902157 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getTagReferences.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getUpgradeRequest.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getUpgradeRequest.md index abc736be7a..34c171c5ea 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/hasActiveTransactions.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/hasActiveTransactions.md index e0a8f1ae14..0cdb286fe1 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/hasActiveTransactions.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/hasActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#hasActiveTransactions-example) {#hasActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/hasActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/isAccountAllowed.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/isAccountAllowed.md index 8fb2dacf66..a3f37198f0 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/isAccountAllowed.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/isAccountAllowed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#isAccountAllowed-example) {#isAccountAllowed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/isAccountAllowed' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/isHighAvailabilityUpgradeAvailable.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/isHighAvailabilityUpgradeAvailable.md index ca8fbc5c6d..acc2a9337b 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/isHighAvailabilityUpgradeAvailable.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/isHighAvailabilityUpgradeAvailable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#isHighAvailabilityUpgradeAvailable-example) {#isHighAvailabilityUpgradeAvailable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/isHighAvailabilityUpgradeAvailable' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/rejectBypassRequest.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/rejectBypassRequest.md index 260fc878ae..7c9b703b21 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/rejectBypassRequest.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/rejectBypassRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#rejectBypassRequest-example) {#rejectBypassRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/rejectBypassRequest' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/restoreDefaults.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/restoreDefaults.md index c0d369e563..566eed0da2 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/restoreDefaults.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/restoreDefaults.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#restoreDefaults-example) {#restoreDefaults-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/restoreDefaults' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/setTags.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/setTags.md index 8c4cbe748f..a18d329281 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/setTags.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Firewall/updateRouteBypass.md b/content/reference/services/SoftLayer_Network_Vlan_Firewall/updateRouteBypass.md index 7b8927e55c..aca022b46b 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Firewall/updateRouteBypass.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Firewall/updateRouteBypass.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Firewall" --- -### Curl Example +# [REST Example](#updateRouteBypass-example) {#updateRouteBypass-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Firewall/{SoftLayer_Network_Vlan_FirewallID}/updateRouteBypass' ``` diff --git a/content/reference/services/SoftLayer_Network_Vlan_Type/getObject.md b/content/reference/services/SoftLayer_Network_Vlan_Type/getObject.md index a2a58ce40c..4407265f73 100644 --- a/content/reference/services/SoftLayer_Network_Vlan_Type/getObject.md +++ b/content/reference/services/SoftLayer_Network_Vlan_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Network_Vlan_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Network_Vlan_Type/{SoftLayer_Network_Vlan_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification/getAllObjects.md b/content/reference/services/SoftLayer_Notification/getAllObjects.md index f20ac070c4..7a9c11cbcc 100644 --- a/content/reference/services/SoftLayer_Notification/getAllObjects.md +++ b/content/reference/services/SoftLayer_Notification/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Notification/getObject.md b/content/reference/services/SoftLayer_Notification/getObject.md index 5d82503386..3427d93e6b 100644 --- a/content/reference/services/SoftLayer_Notification/getObject.md +++ b/content/reference/services/SoftLayer_Notification/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification/{SoftLayer_NotificationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification/getPreferences.md b/content/reference/services/SoftLayer_Notification/getPreferences.md index ab4f36d342..6dce0d9a90 100644 --- a/content/reference/services/SoftLayer_Notification/getPreferences.md +++ b/content/reference/services/SoftLayer_Notification/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification/{SoftLayer_NotificationID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification/getRequiredPreferences.md b/content/reference/services/SoftLayer_Notification/getRequiredPreferences.md index 87caf5e19d..ab67fd9226 100644 --- a/content/reference/services/SoftLayer_Notification/getRequiredPreferences.md +++ b/content/reference/services/SoftLayer_Notification/getRequiredPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification" --- -### Curl Example +# [REST Example](#getRequiredPreferences-example) {#getRequiredPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification/{SoftLayer_NotificationID}/getRequiredPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification_Mobile/createSubscriberForMobileDevice.md b/content/reference/services/SoftLayer_Notification_Mobile/createSubscriberForMobileDevice.md index 8bd856f6ab..d55fd84efe 100644 --- a/content/reference/services/SoftLayer_Notification_Mobile/createSubscriberForMobileDevice.md +++ b/content/reference/services/SoftLayer_Notification_Mobile/createSubscriberForMobileDevice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Mobile" --- -### Curl Example +# [REST Example](#createSubscriberForMobileDevice-example) {#createSubscriberForMobileDevice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Mobile/createSubscriberForMobileDevice' ``` diff --git a/content/reference/services/SoftLayer_Notification_Mobile/getAllObjects.md b/content/reference/services/SoftLayer_Notification_Mobile/getAllObjects.md index 9c74f1985a..6939935e84 100644 --- a/content/reference/services/SoftLayer_Notification_Mobile/getAllObjects.md +++ b/content/reference/services/SoftLayer_Notification_Mobile/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Mobile" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Mobile/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Notification_Mobile/getObject.md b/content/reference/services/SoftLayer_Notification_Mobile/getObject.md index b4036b8cf6..42c84ce5ff 100644 --- a/content/reference/services/SoftLayer_Notification_Mobile/getObject.md +++ b/content/reference/services/SoftLayer_Notification_Mobile/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Mobile" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Mobile/{SoftLayer_Notification_MobileID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_Mobile/getPreferences.md b/content/reference/services/SoftLayer_Notification_Mobile/getPreferences.md index c6adfd29bc..ba0451d03e 100644 --- a/content/reference/services/SoftLayer_Notification_Mobile/getPreferences.md +++ b/content/reference/services/SoftLayer_Notification_Mobile/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Mobile" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Mobile/{SoftLayer_Notification_MobileID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification_Mobile/getRequiredPreferences.md b/content/reference/services/SoftLayer_Notification_Mobile/getRequiredPreferences.md index fedde7600c..8605d31248 100644 --- a/content/reference/services/SoftLayer_Notification_Mobile/getRequiredPreferences.md +++ b/content/reference/services/SoftLayer_Notification_Mobile/getRequiredPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Mobile" --- -### Curl Example +# [REST Example](#getRequiredPreferences-example) {#getRequiredPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Mobile/{SoftLayer_Notification_MobileID}/getRequiredPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/acknowledgeNotification.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/acknowledgeNotification.md index 7f26d21f61..7e786a961c 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/acknowledgeNotification.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/acknowledgeNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#acknowledgeNotification-example) {#acknowledgeNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/acknowledgeNotification' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAcknowledgedFlag.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAcknowledgedFlag.md index 26b277c87c..cdf885e6f8 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAcknowledgedFlag.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAcknowledgedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getAcknowledgedFlag-example) {#getAcknowledgedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getAcknowledgedFlag' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAllObjects.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAllObjects.md index 5c255dfc65..60267b4f00 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAllObjects.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachedFile.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachedFile.md index 9583547e77..d1a065cf76 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachedFile.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachedFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getAttachedFile-example) {#getAttachedFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getAttachedFile' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachments.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachments.md index c6680c5465..2163fe67d8 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachments.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getAttachments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getAttachments-example) {#getAttachments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getAttachments' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getFirstUpdate.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getFirstUpdate.md index 13af2ef242..70532ecd0e 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getFirstUpdate.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getFirstUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getFirstUpdate-example) {#getFirstUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getFirstUpdate' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccountCount.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccountCount.md index b73ea95780..aa5cb947f1 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccountCount.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccountCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getImpactedAccountCount-example) {#getImpactedAccountCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getImpactedAccountCount' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccounts.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccounts.md index 97e8e94e13..96eecdb3be 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccounts.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getImpactedAccounts-example) {#getImpactedAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getImpactedAccounts' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDeviceCount.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDeviceCount.md index 4439c3aeca..7c7d602b39 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDeviceCount.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDeviceCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getImpactedDeviceCount-example) {#getImpactedDeviceCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getImpactedDeviceCount' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDevices.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDevices.md index 8d13145df2..3132c47fdb 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDevices.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedDevices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getImpactedDevices-example) {#getImpactedDevices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getImpactedDevices' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedResources.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedResources.md index 1c6bf52f11..aea198814f 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedResources.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedResources.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getImpactedResources-example) {#getImpactedResources-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getImpactedResources' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedUsers.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedUsers.md index 5254c66009..33d2fdf83b 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedUsers.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getImpactedUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getImpactedUsers-example) {#getImpactedUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getImpactedUsers' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getLastUpdate.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getLastUpdate.md index aa9c8deb6a..0a6c633cc0 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getLastUpdate.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getLastUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getLastUpdate-example) {#getLastUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getLastUpdate' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getNotificationOccurrenceEventType.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getNotificationOccurrenceEventType.md index 11570de83b..b79bcad12b 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getNotificationOccurrenceEventType.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getNotificationOccurrenceEventType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getNotificationOccurrenceEventType-example) {#getNotificationOccurrenceEventType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getNotificationOccurrenceEventType' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getObject.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getObject.md index 9aa34bc1fb..186ebe3911 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getObject.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getStatusCode.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getStatusCode.md index 412fe3b912..4a003be49e 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getStatusCode.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getStatusCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getStatusCode-example) {#getStatusCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getStatusCode' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getUpdates.md b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getUpdates.md index e852385346..caae532b25 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_Event/getUpdates.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_Event/getUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_Event" --- -### Curl Example +# [REST Example](#getUpdates-example) {#getUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_Event/{SoftLayer_Notification_Occurrence_EventID}/getUpdates' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/acknowledge.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/acknowledge.md index 11d791c2c5..1f922837b7 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/acknowledge.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/acknowledge.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#acknowledge-example) {#acknowledge-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/{SoftLayer_Notification_Occurrence_UserID}/acknowledge' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/getAllObjects.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/getAllObjects.md index 405abde5f0..df616e233b 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/getAllObjects.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedDeviceCount.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedDeviceCount.md index c52c3dbf39..39f6b414a5 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedDeviceCount.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedDeviceCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#getImpactedDeviceCount-example) {#getImpactedDeviceCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/{SoftLayer_Notification_Occurrence_UserID}/getImpactedDeviceCount' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedResources.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedResources.md index a81890b716..da564429d9 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedResources.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/getImpactedResources.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#getImpactedResources-example) {#getImpactedResources-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/{SoftLayer_Notification_Occurrence_UserID}/getImpactedResources' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/getNotificationOccurrenceEvent.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/getNotificationOccurrenceEvent.md index 8c15db352b..7f4cec8514 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/getNotificationOccurrenceEvent.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/getNotificationOccurrenceEvent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#getNotificationOccurrenceEvent-example) {#getNotificationOccurrenceEvent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/{SoftLayer_Notification_Occurrence_UserID}/getNotificationOccurrenceEvent' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/getObject.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/getObject.md index e648ed2183..498ecd622e 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/getObject.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/{SoftLayer_Notification_Occurrence_UserID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_Occurrence_User/getUser.md b/content/reference/services/SoftLayer_Notification_Occurrence_User/getUser.md index 72b8bae487..3d92f95cf5 100644 --- a/content/reference/services/SoftLayer_Notification_Occurrence_User/getUser.md +++ b/content/reference/services/SoftLayer_Notification_Occurrence_User/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_Occurrence_User" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_Occurrence_User/{SoftLayer_Notification_Occurrence_UserID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/createObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/createObject.md index 93fde2bf2b..56271b94fc 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/createObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/createObject.md @@ -33,8 +33,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/createObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/editObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/editObject.md index 5fe9ab4860..d9bfa1c946 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/editObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/editObject.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getDeliveryMethods.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getDeliveryMethods.md index 32a214ff87..f3f8b46b8f 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getDeliveryMethods.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getDeliveryMethods.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getDeliveryMethods-example) {#getDeliveryMethods-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getDeliveryMethods' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getNotification.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getNotification.md index f12fad9ffe..5cf8e4049e 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getNotification.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getNotification-example) {#getNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getNotification' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getObject.md index e09dbbc730..88b5805c45 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferences.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferences.md index 9e8a4dc4ff..0c22e7d8d9 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferences.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferencesDetails.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferencesDetails.md index 937e7a4d6c..7309578ce1 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferencesDetails.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getPreferencesDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getPreferencesDetails-example) {#getPreferencesDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getPreferencesDetails' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getResourceRecord.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getResourceRecord.md index a5990ad6db..a8772205f4 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getResourceRecord.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getResourceRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getResourceRecord-example) {#getResourceRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getResourceRecord' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber/getUserRecord.md b/content/reference/services/SoftLayer_Notification_User_Subscriber/getUserRecord.md index 75738990c8..6065f0425a 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber/getUserRecord.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber/getUserRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber" --- -### Curl Example +# [REST Example](#getUserRecord-example) {#getUserRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber/{SoftLayer_Notification_User_SubscriberID}/getUserRecord' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/createObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/createObject.md index 6dfdb2d39f..7ef8b555d1 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/createObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/createObject.md @@ -33,8 +33,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/createObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/editObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/editObject.md index 47a1796624..8085f6fc90 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/editObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/editObject.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getDeliveryMethods.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getDeliveryMethods.md index 48de968fd3..8183f7c2fd 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getDeliveryMethods.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getDeliveryMethods.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getDeliveryMethods-example) {#getDeliveryMethods-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getDeliveryMethods' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getNotification.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getNotification.md index f7a9d544fd..20fdebf856 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getNotification.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getNotification-example) {#getNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getNotification' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getObject.md index a4b99ba21b..a6109d6a92 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferences.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferences.md index e8b8edc93d..e45ea9a6b6 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferences.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferencesDetails.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferencesDetails.md index 2503afaa4f..320616bcb1 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferencesDetails.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getPreferencesDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getPreferencesDetails-example) {#getPreferencesDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getPreferencesDetails' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getResourceRecord.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getResourceRecord.md index 6db023d240..c63409dc55 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getResourceRecord.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getResourceRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getResourceRecord-example) {#getResourceRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getResourceRecord' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getUserRecord.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getUserRecord.md index 9dee24d851..bc4650847e 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getUserRecord.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Billing/getUserRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Billing" --- -### Curl Example +# [REST Example](#getUserRecord-example) {#getUserRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Billing/{SoftLayer_Notification_User_Subscriber_BillingID}/getUserRecord' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/clearSnoozeTimer.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/clearSnoozeTimer.md index 2230be9bb2..41ad48370e 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/clearSnoozeTimer.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/clearSnoozeTimer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#clearSnoozeTimer-example) {#clearSnoozeTimer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/clearSnoozeTimer' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/createObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/createObject.md index 6fb6bef213..26c7cb7d2f 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/createObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/createObject.md @@ -33,8 +33,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/createObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/editObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/editObject.md index 6105faba4e..199be2cb27 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/editObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/editObject.md @@ -25,8 +25,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getDeliveryMethods.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getDeliveryMethods.md index d92d796a95..a07f00fd50 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getDeliveryMethods.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getDeliveryMethods.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getDeliveryMethods-example) {#getDeliveryMethods-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getDeliveryMethods' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getNotification.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getNotification.md index 3b21a8a767..032a01e4fb 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getNotification.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getNotification-example) {#getNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getNotification' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getObject.md index c5d0ac4e8c..bf7e4a9e37 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferences.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferences.md index 7bfef11c30..df3b227021 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferences.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferencesDetails.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferencesDetails.md index 62e5af849b..f72a5f61bf 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferencesDetails.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getPreferencesDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getPreferencesDetails-example) {#getPreferencesDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getPreferencesDetails' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getResourceRecord.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getResourceRecord.md index 0992afefd9..6d33627b3a 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getResourceRecord.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getResourceRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getResourceRecord-example) {#getResourceRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getResourceRecord' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getUserRecord.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getUserRecord.md index 9fa56397d9..12917a1c38 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getUserRecord.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/getUserRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#getUserRecord-example) {#getUserRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/getUserRecord' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/setSnoozeTimer.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/setSnoozeTimer.md index 8bf338a98d..c11570d202 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/setSnoozeTimer.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Mobile/setSnoozeTimer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Mobile" --- -### Curl Example +# [REST Example](#setSnoozeTimer-example) {#setSnoozeTimer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Mobile/{SoftLayer_Notification_User_Subscriber_MobileID}/setSnoozeTimer' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/createObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/createObject.md index f5c769043b..4c8c4d7272 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/createObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Preference" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber_Preference]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber_Preference]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Preference/createObject' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/editObjects.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/editObjects.md index 40f219cc56..f05787bfc3 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/editObjects.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Preference" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber_Preference]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Notification_User_Subscriber_Preference]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Preference/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getDefaultPreference.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getDefaultPreference.md index 9f6b3f17c7..4996bbd404 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getDefaultPreference.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getDefaultPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Preference" --- -### Curl Example +# [REST Example](#getDefaultPreference-example) {#getDefaultPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Preference/{SoftLayer_Notification_User_Subscriber_PreferenceID}/getDefaultPreference' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getNotificationUserSubscriber.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getNotificationUserSubscriber.md index f91dc54919..b1017522ec 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getNotificationUserSubscriber.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getNotificationUserSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Preference" --- -### Curl Example +# [REST Example](#getNotificationUserSubscriber-example) {#getNotificationUserSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Preference/{SoftLayer_Notification_User_Subscriber_PreferenceID}/getNotificationUserSubscriber' ``` diff --git a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getObject.md b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getObject.md index 335199b14a..49fd096146 100644 --- a/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getObject.md +++ b/content/reference/services/SoftLayer_Notification_User_Subscriber_Preference/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Notification_User_Subscriber_Preference" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Notification_User_Subscriber_Preference/{SoftLayer_Notification_User_Subscriber_PreferenceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getActivePresaleEvents.md b/content/reference/services/SoftLayer_Product_Item/getActivePresaleEvents.md index 06a3e14fd0..ad596231b5 100644 --- a/content/reference/services/SoftLayer_Product_Item/getActivePresaleEvents.md +++ b/content/reference/services/SoftLayer_Product_Item/getActivePresaleEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getActivePresaleEvents-example) {#getActivePresaleEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getActivePresaleEvents' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getActiveUsagePrices.md b/content/reference/services/SoftLayer_Product_Item/getActiveUsagePrices.md index d5255d9475..73b95585b3 100644 --- a/content/reference/services/SoftLayer_Product_Item/getActiveUsagePrices.md +++ b/content/reference/services/SoftLayer_Product_Item/getActiveUsagePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getActiveUsagePrices-example) {#getActiveUsagePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getActiveUsagePrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getAttributes.md b/content/reference/services/SoftLayer_Product_Item/getAttributes.md index 81e857c60d..d8bdfdfc42 100644 --- a/content/reference/services/SoftLayer_Product_Item/getAttributes.md +++ b/content/reference/services/SoftLayer_Product_Item/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getAvailabilityAttributes.md b/content/reference/services/SoftLayer_Product_Item/getAvailabilityAttributes.md index 0637c2b122..5c1c5798e7 100644 --- a/content/reference/services/SoftLayer_Product_Item/getAvailabilityAttributes.md +++ b/content/reference/services/SoftLayer_Product_Item/getAvailabilityAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getAvailabilityAttributes-example) {#getAvailabilityAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getAvailabilityAttributes' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getBillingType.md b/content/reference/services/SoftLayer_Product_Item/getBillingType.md index a65ba8c0a2..cc0a171003 100644 --- a/content/reference/services/SoftLayer_Product_Item/getBillingType.md +++ b/content/reference/services/SoftLayer_Product_Item/getBillingType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getBillingType-example) {#getBillingType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getBillingType' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getBundle.md b/content/reference/services/SoftLayer_Product_Item/getBundle.md index f2ebf09126..4839d380ce 100644 --- a/content/reference/services/SoftLayer_Product_Item/getBundle.md +++ b/content/reference/services/SoftLayer_Product_Item/getBundle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getBundle-example) {#getBundle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getBundle' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getBundleItems.md b/content/reference/services/SoftLayer_Product_Item/getBundleItems.md index 0ab7b51408..a774c197d7 100644 --- a/content/reference/services/SoftLayer_Product_Item/getBundleItems.md +++ b/content/reference/services/SoftLayer_Product_Item/getBundleItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getBundleItems-example) {#getBundleItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getBundleItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getCapacityMaximum.md b/content/reference/services/SoftLayer_Product_Item/getCapacityMaximum.md index a7e1fea931..29f59c8d49 100644 --- a/content/reference/services/SoftLayer_Product_Item/getCapacityMaximum.md +++ b/content/reference/services/SoftLayer_Product_Item/getCapacityMaximum.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getCapacityMaximum-example) {#getCapacityMaximum-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getCapacityMaximum' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getCapacityMinimum.md b/content/reference/services/SoftLayer_Product_Item/getCapacityMinimum.md index 68dc9ea9db..7fa40a39ec 100644 --- a/content/reference/services/SoftLayer_Product_Item/getCapacityMinimum.md +++ b/content/reference/services/SoftLayer_Product_Item/getCapacityMinimum.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getCapacityMinimum-example) {#getCapacityMinimum-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getCapacityMinimum' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getCapacityRestrictedProductFlag.md b/content/reference/services/SoftLayer_Product_Item/getCapacityRestrictedProductFlag.md index b22857c4cc..4982679d0e 100644 --- a/content/reference/services/SoftLayer_Product_Item/getCapacityRestrictedProductFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getCapacityRestrictedProductFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getCapacityRestrictedProductFlag-example) {#getCapacityRestrictedProductFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getCapacityRestrictedProductFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getCategories.md b/content/reference/services/SoftLayer_Product_Item/getCategories.md index 282ebcf136..720b9a96c2 100644 --- a/content/reference/services/SoftLayer_Product_Item/getCategories.md +++ b/content/reference/services/SoftLayer_Product_Item/getCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getCategories-example) {#getCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getConfigurationTemplates.md b/content/reference/services/SoftLayer_Product_Item/getConfigurationTemplates.md index 189993a168..e20e237361 100644 --- a/content/reference/services/SoftLayer_Product_Item/getConfigurationTemplates.md +++ b/content/reference/services/SoftLayer_Product_Item/getConfigurationTemplates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getConfigurationTemplates-example) {#getConfigurationTemplates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getConfigurationTemplates' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getConflicts.md b/content/reference/services/SoftLayer_Product_Item/getConflicts.md index d1621fa1ed..60a06976a8 100644 --- a/content/reference/services/SoftLayer_Product_Item/getConflicts.md +++ b/content/reference/services/SoftLayer_Product_Item/getConflicts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getConflicts-example) {#getConflicts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getConflicts' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getCoreRestrictedItemFlag.md b/content/reference/services/SoftLayer_Product_Item/getCoreRestrictedItemFlag.md index 8445736bd0..349b3f49c5 100644 --- a/content/reference/services/SoftLayer_Product_Item/getCoreRestrictedItemFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getCoreRestrictedItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getCoreRestrictedItemFlag-example) {#getCoreRestrictedItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getCoreRestrictedItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getDowngradeItem.md b/content/reference/services/SoftLayer_Product_Item/getDowngradeItem.md index a4a38ae8ed..cbbd9418ff 100644 --- a/content/reference/services/SoftLayer_Product_Item/getDowngradeItem.md +++ b/content/reference/services/SoftLayer_Product_Item/getDowngradeItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getDowngradeItem-example) {#getDowngradeItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getDowngradeItem' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getDowngradeItems.md b/content/reference/services/SoftLayer_Product_Item/getDowngradeItems.md index 1da8062436..053d0f14f9 100644 --- a/content/reference/services/SoftLayer_Product_Item/getDowngradeItems.md +++ b/content/reference/services/SoftLayer_Product_Item/getDowngradeItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getDowngradeItems-example) {#getDowngradeItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getDowngradeItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getGlobalCategoryConflicts.md b/content/reference/services/SoftLayer_Product_Item/getGlobalCategoryConflicts.md index 65d66b986d..97789bd3d3 100644 --- a/content/reference/services/SoftLayer_Product_Item/getGlobalCategoryConflicts.md +++ b/content/reference/services/SoftLayer_Product_Item/getGlobalCategoryConflicts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getGlobalCategoryConflicts-example) {#getGlobalCategoryConflicts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getGlobalCategoryConflicts' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getHardwareGenericComponentModel.md b/content/reference/services/SoftLayer_Product_Item/getHardwareGenericComponentModel.md index 121fdcea00..f9823bce2f 100644 --- a/content/reference/services/SoftLayer_Product_Item/getHardwareGenericComponentModel.md +++ b/content/reference/services/SoftLayer_Product_Item/getHardwareGenericComponentModel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getHardwareGenericComponentModel-example) {#getHardwareGenericComponentModel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getHardwareGenericComponentModel' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getHideFromPortalFlag.md b/content/reference/services/SoftLayer_Product_Item/getHideFromPortalFlag.md index c3c70d3801..b91592b683 100644 --- a/content/reference/services/SoftLayer_Product_Item/getHideFromPortalFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getHideFromPortalFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getHideFromPortalFlag-example) {#getHideFromPortalFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getHideFromPortalFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getIneligibleForAccountDiscountFlag.md b/content/reference/services/SoftLayer_Product_Item/getIneligibleForAccountDiscountFlag.md index 456a9acfe3..c57e5b82ef 100644 --- a/content/reference/services/SoftLayer_Product_Item/getIneligibleForAccountDiscountFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getIneligibleForAccountDiscountFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getIneligibleForAccountDiscountFlag-example) {#getIneligibleForAccountDiscountFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getIneligibleForAccountDiscountFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getInventory.md b/content/reference/services/SoftLayer_Product_Item/getInventory.md index b6be4ae947..2fd84e573d 100644 --- a/content/reference/services/SoftLayer_Product_Item/getInventory.md +++ b/content/reference/services/SoftLayer_Product_Item/getInventory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getInventory-example) {#getInventory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getInventory' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getIsEngineeredServerProduct.md b/content/reference/services/SoftLayer_Product_Item/getIsEngineeredServerProduct.md index 6cc36d21d5..045827c01d 100644 --- a/content/reference/services/SoftLayer_Product_Item/getIsEngineeredServerProduct.md +++ b/content/reference/services/SoftLayer_Product_Item/getIsEngineeredServerProduct.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getIsEngineeredServerProduct-example) {#getIsEngineeredServerProduct-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getIsEngineeredServerProduct' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getItemCategory.md b/content/reference/services/SoftLayer_Product_Item/getItemCategory.md index 980beb67c0..4f6ab6dae2 100644 --- a/content/reference/services/SoftLayer_Product_Item/getItemCategory.md +++ b/content/reference/services/SoftLayer_Product_Item/getItemCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getItemCategory-example) {#getItemCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getItemCategory' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getLocalDiskFlag.md b/content/reference/services/SoftLayer_Product_Item/getLocalDiskFlag.md index 6d777f7088..ef143d61eb 100644 --- a/content/reference/services/SoftLayer_Product_Item/getLocalDiskFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getLocalDiskFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getLocalDiskFlag-example) {#getLocalDiskFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getLocalDiskFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getLocationConflicts.md b/content/reference/services/SoftLayer_Product_Item/getLocationConflicts.md index c3c0539690..3f91e671fb 100644 --- a/content/reference/services/SoftLayer_Product_Item/getLocationConflicts.md +++ b/content/reference/services/SoftLayer_Product_Item/getLocationConflicts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getLocationConflicts-example) {#getLocationConflicts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getLocationConflicts' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getM2ControllerFlag.md b/content/reference/services/SoftLayer_Product_Item/getM2ControllerFlag.md index 87c6a6de44..1ad9cc73e4 100644 --- a/content/reference/services/SoftLayer_Product_Item/getM2ControllerFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getM2ControllerFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getM2ControllerFlag-example) {#getM2ControllerFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getM2ControllerFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getM2DriveFlag.md b/content/reference/services/SoftLayer_Product_Item/getM2DriveFlag.md index 19cebafc0b..32899df9fd 100644 --- a/content/reference/services/SoftLayer_Product_Item/getM2DriveFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getM2DriveFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getM2DriveFlag-example) {#getM2DriveFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getM2DriveFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getMinimumNvmeBays.md b/content/reference/services/SoftLayer_Product_Item/getMinimumNvmeBays.md index d94988fa62..b4f03fb7b0 100644 --- a/content/reference/services/SoftLayer_Product_Item/getMinimumNvmeBays.md +++ b/content/reference/services/SoftLayer_Product_Item/getMinimumNvmeBays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getMinimumNvmeBays-example) {#getMinimumNvmeBays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getMinimumNvmeBays' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getNvmeDiskFlag.md b/content/reference/services/SoftLayer_Product_Item/getNvmeDiskFlag.md index f80873c531..59cd5d60fc 100644 --- a/content/reference/services/SoftLayer_Product_Item/getNvmeDiskFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getNvmeDiskFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getNvmeDiskFlag-example) {#getNvmeDiskFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getNvmeDiskFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getObject.md b/content/reference/services/SoftLayer_Product_Item/getObject.md index d4b821c293..de199dbdf6 100644 --- a/content/reference/services/SoftLayer_Product_Item/getObject.md +++ b/content/reference/services/SoftLayer_Product_Item/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getObjectStorageClusterGeolocationType.md b/content/reference/services/SoftLayer_Product_Item/getObjectStorageClusterGeolocationType.md index 189e4da20f..6ec5ddb650 100644 --- a/content/reference/services/SoftLayer_Product_Item/getObjectStorageClusterGeolocationType.md +++ b/content/reference/services/SoftLayer_Product_Item/getObjectStorageClusterGeolocationType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getObjectStorageClusterGeolocationType-example) {#getObjectStorageClusterGeolocationType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getObjectStorageClusterGeolocationType' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getObjectStorageItemFlag.md b/content/reference/services/SoftLayer_Product_Item/getObjectStorageItemFlag.md index 9a17e8a721..ee44d3ee89 100644 --- a/content/reference/services/SoftLayer_Product_Item/getObjectStorageItemFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getObjectStorageItemFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getObjectStorageItemFlag-example) {#getObjectStorageItemFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getObjectStorageItemFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getObjectStorageServiceClass.md b/content/reference/services/SoftLayer_Product_Item/getObjectStorageServiceClass.md index 65b6122d6b..eba5478065 100644 --- a/content/reference/services/SoftLayer_Product_Item/getObjectStorageServiceClass.md +++ b/content/reference/services/SoftLayer_Product_Item/getObjectStorageServiceClass.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getObjectStorageServiceClass-example) {#getObjectStorageServiceClass-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getObjectStorageServiceClass' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getPackages.md b/content/reference/services/SoftLayer_Product_Item/getPackages.md index 1a112248f6..c1f4a529ba 100644 --- a/content/reference/services/SoftLayer_Product_Item/getPackages.md +++ b/content/reference/services/SoftLayer_Product_Item/getPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getPackages-example) {#getPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getPackages' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getPcieDriveFlag.md b/content/reference/services/SoftLayer_Product_Item/getPcieDriveFlag.md index 52d6d21020..3ce4740909 100644 --- a/content/reference/services/SoftLayer_Product_Item/getPcieDriveFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getPcieDriveFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getPcieDriveFlag-example) {#getPcieDriveFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getPcieDriveFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getPhysicalCoreCapacity.md b/content/reference/services/SoftLayer_Product_Item/getPhysicalCoreCapacity.md index 9507148d0d..2bdceeee63 100644 --- a/content/reference/services/SoftLayer_Product_Item/getPhysicalCoreCapacity.md +++ b/content/reference/services/SoftLayer_Product_Item/getPhysicalCoreCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getPhysicalCoreCapacity-example) {#getPhysicalCoreCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getPhysicalCoreCapacity' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getPresaleEvents.md b/content/reference/services/SoftLayer_Product_Item/getPresaleEvents.md index 7eecd81aa4..1eff522dfa 100644 --- a/content/reference/services/SoftLayer_Product_Item/getPresaleEvents.md +++ b/content/reference/services/SoftLayer_Product_Item/getPresaleEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getPresaleEvents-example) {#getPresaleEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getPresaleEvents' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getPrices.md b/content/reference/services/SoftLayer_Product_Item/getPrices.md index 26d60d5a14..5c7bccb2b7 100644 --- a/content/reference/services/SoftLayer_Product_Item/getPrices.md +++ b/content/reference/services/SoftLayer_Product_Item/getPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getPrices-example) {#getPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getPrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getRequirements.md b/content/reference/services/SoftLayer_Product_Item/getRequirements.md index d5ceb35e2b..2a8e8ea3c3 100644 --- a/content/reference/services/SoftLayer_Product_Item/getRequirements.md +++ b/content/reference/services/SoftLayer_Product_Item/getRequirements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getRequirements-example) {#getRequirements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getRequirements' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getRules.md b/content/reference/services/SoftLayer_Product_Item/getRules.md index 9a943ff7c7..9b00ad522a 100644 --- a/content/reference/services/SoftLayer_Product_Item/getRules.md +++ b/content/reference/services/SoftLayer_Product_Item/getRules.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getRules-example) {#getRules-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getRules' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getSoftwareDescription.md b/content/reference/services/SoftLayer_Product_Item/getSoftwareDescription.md index fc795d9667..8b93231227 100644 --- a/content/reference/services/SoftLayer_Product_Item/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Product_Item/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerCoreCount.md b/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerCoreCount.md index 3358613f1c..9b56f6bffb 100644 --- a/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerCoreCount.md +++ b/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerCoreCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getSpeedSelectServerCoreCount-example) {#getSpeedSelectServerCoreCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getSpeedSelectServerCoreCount' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerFlag.md b/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerFlag.md index 441b96bb71..67ac84d4f0 100644 --- a/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerFlag.md +++ b/content/reference/services/SoftLayer_Product_Item/getSpeedSelectServerFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getSpeedSelectServerFlag-example) {#getSpeedSelectServerFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getSpeedSelectServerFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getTaxCategory.md b/content/reference/services/SoftLayer_Product_Item/getTaxCategory.md index 45e5b29ab8..9b2a32b09a 100644 --- a/content/reference/services/SoftLayer_Product_Item/getTaxCategory.md +++ b/content/reference/services/SoftLayer_Product_Item/getTaxCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getTaxCategory-example) {#getTaxCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getTaxCategory' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getThirdPartyPolicyAssignments.md b/content/reference/services/SoftLayer_Product_Item/getThirdPartyPolicyAssignments.md index c59af992ea..e513eaa6f7 100644 --- a/content/reference/services/SoftLayer_Product_Item/getThirdPartyPolicyAssignments.md +++ b/content/reference/services/SoftLayer_Product_Item/getThirdPartyPolicyAssignments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getThirdPartyPolicyAssignments-example) {#getThirdPartyPolicyAssignments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getThirdPartyPolicyAssignments' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getThirdPartySupportVendor.md b/content/reference/services/SoftLayer_Product_Item/getThirdPartySupportVendor.md index 0b1ae99626..1652b9ec73 100644 --- a/content/reference/services/SoftLayer_Product_Item/getThirdPartySupportVendor.md +++ b/content/reference/services/SoftLayer_Product_Item/getThirdPartySupportVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getThirdPartySupportVendor-example) {#getThirdPartySupportVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getThirdPartySupportVendor' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCapacity.md b/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCapacity.md index f5dd1b6aaf..132189bfae 100644 --- a/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCapacity.md +++ b/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getTotalPhysicalCoreCapacity-example) {#getTotalPhysicalCoreCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getTotalPhysicalCoreCapacity' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCount.md b/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCount.md index 2289cf61e0..6ff1e6b02b 100644 --- a/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCount.md +++ b/content/reference/services/SoftLayer_Product_Item/getTotalPhysicalCoreCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getTotalPhysicalCoreCount-example) {#getTotalPhysicalCoreCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getTotalPhysicalCoreCount' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getTotalProcessorCapacity.md b/content/reference/services/SoftLayer_Product_Item/getTotalProcessorCapacity.md index c8144ff2be..ee3c8a9e26 100644 --- a/content/reference/services/SoftLayer_Product_Item/getTotalProcessorCapacity.md +++ b/content/reference/services/SoftLayer_Product_Item/getTotalProcessorCapacity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getTotalProcessorCapacity-example) {#getTotalProcessorCapacity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getTotalProcessorCapacity' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getUpgradeItem.md b/content/reference/services/SoftLayer_Product_Item/getUpgradeItem.md index e61e93c828..3f601a8991 100644 --- a/content/reference/services/SoftLayer_Product_Item/getUpgradeItem.md +++ b/content/reference/services/SoftLayer_Product_Item/getUpgradeItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getUpgradeItem-example) {#getUpgradeItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getUpgradeItem' ``` diff --git a/content/reference/services/SoftLayer_Product_Item/getUpgradeItems.md b/content/reference/services/SoftLayer_Product_Item/getUpgradeItems.md index 9bec574ab4..f1909d1968 100644 --- a/content/reference/services/SoftLayer_Product_Item/getUpgradeItems.md +++ b/content/reference/services/SoftLayer_Product_Item/getUpgradeItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item" --- -### Curl Example +# [REST Example](#getUpgradeItems-example) {#getUpgradeItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item/{SoftLayer_Product_ItemID}/getUpgradeItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getAdditionalProductsForCategory.md b/content/reference/services/SoftLayer_Product_Item_Category/getAdditionalProductsForCategory.md index 0db3052f62..d354de4d3e 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getAdditionalProductsForCategory.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getAdditionalProductsForCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getAdditionalProductsForCategory-example) {#getAdditionalProductsForCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getAdditionalProductsForCategory' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getBandwidthCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getBandwidthCategories.md index 7dbca42d85..a33c8e29a3 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getBandwidthCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getBandwidthCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getBandwidthCategories-example) {#getBandwidthCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getBandwidthCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getBillingItems.md b/content/reference/services/SoftLayer_Product_Item_Category/getBillingItems.md index 999f1198f6..0b67d80130 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getBillingItems.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getBillingItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getBillingItems-example) {#getBillingItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getBillingItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getComputingCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getComputingCategories.md index ec2ed6eb2e..5a3a958d83 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getComputingCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getComputingCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getComputingCategories-example) {#getComputingCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getComputingCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getCustomUsageRatesCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getCustomUsageRatesCategories.md index cb6eb82d73..66a2da8f2a 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getCustomUsageRatesCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getCustomUsageRatesCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getCustomUsageRatesCategories-example) {#getCustomUsageRatesCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getCustomUsageRatesCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getExternalResourceCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getExternalResourceCategories.md index e117421443..15216f5d79 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getExternalResourceCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getExternalResourceCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getExternalResourceCategories-example) {#getExternalResourceCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getExternalResourceCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getGroup.md b/content/reference/services/SoftLayer_Product_Item_Category/getGroup.md index 9fa2537be9..3e568417c4 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getGroup.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getGroup-example) {#getGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getGroup' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getGroups.md b/content/reference/services/SoftLayer_Product_Item_Category/getGroups.md index fdc16e8041..3601a66b99 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getGroups.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getGroups-example) {#getGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getGroups' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getObject.md b/content/reference/services/SoftLayer_Product_Item_Category/getObject.md index 2cd1910cf5..9974e76155 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getObject.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getObjectStorageCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getObjectStorageCategories.md index 0a4e0a4059..52e55a287c 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getObjectStorageCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getObjectStorageCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getObjectStorageCategories-example) {#getObjectStorageCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getObjectStorageCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getOrderOptions.md b/content/reference/services/SoftLayer_Product_Item_Category/getOrderOptions.md index 8678f97993..cbea5912dd 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getOrderOptions.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getOrderOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getOrderOptions-example) {#getOrderOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getOrderOptions' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getPackageConfigurations.md b/content/reference/services/SoftLayer_Product_Item_Category/getPackageConfigurations.md index 4a6d1b6518..72bf0feb80 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getPackageConfigurations.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getPackageConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getPackageConfigurations-example) {#getPackageConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getPackageConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getPresetConfigurations.md b/content/reference/services/SoftLayer_Product_Item_Category/getPresetConfigurations.md index d1f70b48bd..f182f9d608 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getPresetConfigurations.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getPresetConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getPresetConfigurations-example) {#getPresetConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getPresetConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getQuestionReferences.md b/content/reference/services/SoftLayer_Product_Item_Category/getQuestionReferences.md index 55ffcc3ef8..6f051d67b3 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getQuestionReferences.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getQuestionReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getQuestionReferences-example) {#getQuestionReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getQuestionReferences' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getQuestions.md b/content/reference/services/SoftLayer_Product_Item_Category/getQuestions.md index 1518482649..e74a956e73 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getQuestions.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getQuestions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getQuestions-example) {#getQuestions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/{SoftLayer_Product_Item_CategoryID}/getQuestions' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getSoftwareCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getSoftwareCategories.md index f6dbbdb6db..3b828a00d2 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getSoftwareCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getSoftwareCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getSoftwareCategories-example) {#getSoftwareCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getSoftwareCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getSubnetCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getSubnetCategories.md index cae16eb988..729399cf2d 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getSubnetCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getSubnetCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getSubnetCategories-example) {#getSubnetCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getSubnetCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getTopLevelCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getTopLevelCategories.md index a4bbbb6e95..1ccb958bed 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getTopLevelCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getTopLevelCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getTopLevelCategories-example) {#getTopLevelCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getTopLevelCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getValidCancelableServiceItemCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getValidCancelableServiceItemCategories.md index 2f2a3a4163..2683c8ac17 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getValidCancelableServiceItemCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getValidCancelableServiceItemCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getValidCancelableServiceItemCategories-example) {#getValidCancelableServiceItemCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getValidCancelableServiceItemCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category/getVlanCategories.md b/content/reference/services/SoftLayer_Product_Item_Category/getVlanCategories.md index 48bfa5d092..cadef81a95 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category/getVlanCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Category/getVlanCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category" --- -### Curl Example +# [REST Example](#getVlanCategories-example) {#getVlanCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category/getVlanCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Category_Group/getObject.md b/content/reference/services/SoftLayer_Product_Item_Category_Group/getObject.md index 5f6d3fa6fb..3a81d04036 100644 --- a/content/reference/services/SoftLayer_Product_Item_Category_Group/getObject.md +++ b/content/reference/services/SoftLayer_Product_Item_Category_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Category_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Category_Group/{SoftLayer_Product_Item_Category_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/acceptFromTicket.md b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/acceptFromTicket.md index 9ba265620e..a8b9a0934c 100644 --- a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/acceptFromTicket.md +++ b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/acceptFromTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Policy_Assignment" --- -### Curl Example +# [REST Example](#acceptFromTicket-example) {#acceptFromTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Policy_Assignment/{SoftLayer_Product_Item_Policy_AssignmentID}/acceptFromTicket' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getObject.md b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getObject.md index d610ed4eb4..b72552c07f 100644 --- a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getObject.md +++ b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Policy_Assignment" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Policy_Assignment/{SoftLayer_Product_Item_Policy_AssignmentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyDocumentContents.md b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyDocumentContents.md index e0fea484f0..3a993ba9c9 100644 --- a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyDocumentContents.md +++ b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyDocumentContents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Policy_Assignment" --- -### Curl Example +# [REST Example](#getPolicyDocumentContents-example) {#getPolicyDocumentContents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Policy_Assignment/{SoftLayer_Product_Item_Policy_AssignmentID}/getPolicyDocumentContents' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyName.md b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyName.md index cebbcc9519..1faff91434 100644 --- a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyName.md +++ b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getPolicyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Policy_Assignment" --- -### Curl Example +# [REST Example](#getPolicyName-example) {#getPolicyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Policy_Assignment/{SoftLayer_Product_Item_Policy_AssignmentID}/getPolicyName' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getProduct.md b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getProduct.md index f60924178f..e54305398d 100644 --- a/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getProduct.md +++ b/content/reference/services/SoftLayer_Product_Item_Policy_Assignment/getProduct.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Policy_Assignment" --- -### Curl Example +# [REST Example](#getProduct-example) {#getProduct-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Policy_Assignment/{SoftLayer_Product_Item_Policy_AssignmentID}/getProduct' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getAccountRestrictions.md b/content/reference/services/SoftLayer_Product_Item_Price/getAccountRestrictions.md index 561505e6cc..6ee9d22bef 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getAccountRestrictions.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getAccountRestrictions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getAccountRestrictions-example) {#getAccountRestrictions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getAccountRestrictions' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getAttributes.md b/content/reference/services/SoftLayer_Product_Item_Price/getAttributes.md index 2550dc6185..c9b0377076 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getAttributes.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getBareMetalReservedCapacityFlag.md b/content/reference/services/SoftLayer_Product_Item_Price/getBareMetalReservedCapacityFlag.md index 22e59d9468..89c27d0ef1 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getBareMetalReservedCapacityFlag.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getBareMetalReservedCapacityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getBareMetalReservedCapacityFlag-example) {#getBareMetalReservedCapacityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getBareMetalReservedCapacityFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getBigDataOsJournalDiskFlag.md b/content/reference/services/SoftLayer_Product_Item_Price/getBigDataOsJournalDiskFlag.md index d37da7e8e1..dacae6d1e2 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getBigDataOsJournalDiskFlag.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getBigDataOsJournalDiskFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getBigDataOsJournalDiskFlag-example) {#getBigDataOsJournalDiskFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getBigDataOsJournalDiskFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getBundleReferences.md b/content/reference/services/SoftLayer_Product_Item_Price/getBundleReferences.md index 106b138a62..6fc2f74e79 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getBundleReferences.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getBundleReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getBundleReferences-example) {#getBundleReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getBundleReferences' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMaximum.md b/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMaximum.md index 19fdcf5d35..ef8e632f75 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMaximum.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMaximum.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getCapacityRestrictionMaximum-example) {#getCapacityRestrictionMaximum-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getCapacityRestrictionMaximum' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMinimum.md b/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMinimum.md index 8b96d66d2b..072b136597 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMinimum.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionMinimum.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getCapacityRestrictionMinimum-example) {#getCapacityRestrictionMinimum-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getCapacityRestrictionMinimum' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionType.md b/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionType.md index 1e1a50dc02..cfd376df16 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionType.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getCapacityRestrictionType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getCapacityRestrictionType-example) {#getCapacityRestrictionType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getCapacityRestrictionType' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getCategories.md b/content/reference/services/SoftLayer_Product_Item_Price/getCategories.md index aa999779ff..de404c3141 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getCategories.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getCategories-example) {#getCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getDedicatedHostInstanceFlag.md b/content/reference/services/SoftLayer_Product_Item_Price/getDedicatedHostInstanceFlag.md index 0f591e93a7..702abef35b 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getDedicatedHostInstanceFlag.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getDedicatedHostInstanceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getDedicatedHostInstanceFlag-example) {#getDedicatedHostInstanceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getDedicatedHostInstanceFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getDefinedSoftwareLicenseFlag.md b/content/reference/services/SoftLayer_Product_Item_Price/getDefinedSoftwareLicenseFlag.md index 6261a3e22e..7bd684a2a6 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getDefinedSoftwareLicenseFlag.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getDefinedSoftwareLicenseFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getDefinedSoftwareLicenseFlag-example) {#getDefinedSoftwareLicenseFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getDefinedSoftwareLicenseFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getEligibilityStrategy.md b/content/reference/services/SoftLayer_Product_Item_Price/getEligibilityStrategy.md index aa7f24566c..857a667b23 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getEligibilityStrategy.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getEligibilityStrategy.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getEligibilityStrategy-example) {#getEligibilityStrategy-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getEligibilityStrategy' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getItem.md b/content/reference/services/SoftLayer_Product_Item_Price/getItem.md index 5a4bb9c489..7fb8fd55de 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getItem.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getObject.md b/content/reference/services/SoftLayer_Product_Item_Price/getObject.md index c1d3543c60..6b94cd30ea 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getObject.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getOrderPremiums.md b/content/reference/services/SoftLayer_Product_Item_Price/getOrderPremiums.md index 4b8d894f18..fe92f87716 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getOrderPremiums.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getOrderPremiums.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getOrderPremiums-example) {#getOrderPremiums-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getOrderPremiums' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getPackageReferences.md b/content/reference/services/SoftLayer_Product_Item_Price/getPackageReferences.md index d38d3c5072..854434041f 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getPackageReferences.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getPackageReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getPackageReferences-example) {#getPackageReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getPackageReferences' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getPackages.md b/content/reference/services/SoftLayer_Product_Item_Price/getPackages.md index 35bfff0e21..524b473ef1 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getPackages.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getPackages-example) {#getPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getPackages' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getPresetConfigurations.md b/content/reference/services/SoftLayer_Product_Item_Price/getPresetConfigurations.md index 713a414658..8b31770390 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getPresetConfigurations.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getPresetConfigurations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getPresetConfigurations-example) {#getPresetConfigurations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getPresetConfigurations' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getPriceType.md b/content/reference/services/SoftLayer_Product_Item_Price/getPriceType.md index adfa090b5f..6097edc8aa 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getPriceType.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getPriceType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getPriceType-example) {#getPriceType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getPriceType' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getPricingLocationGroup.md b/content/reference/services/SoftLayer_Product_Item_Price/getPricingLocationGroup.md index 9c91a0b4e3..cfed5cf163 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getPricingLocationGroup.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getPricingLocationGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getPricingLocationGroup-example) {#getPricingLocationGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getPricingLocationGroup' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getRequiredCoreCount.md b/content/reference/services/SoftLayer_Product_Item_Price/getRequiredCoreCount.md index 1235edd1fd..adf8618d54 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getRequiredCoreCount.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getRequiredCoreCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getRequiredCoreCount-example) {#getRequiredCoreCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getRequiredCoreCount' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getReservedCapacityInstanceFlag.md b/content/reference/services/SoftLayer_Product_Item_Price/getReservedCapacityInstanceFlag.md index a8f47870e6..6c1ca458f6 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getReservedCapacityInstanceFlag.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getReservedCapacityInstanceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getReservedCapacityInstanceFlag-example) {#getReservedCapacityInstanceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/{SoftLayer_Product_Item_PriceID}/getReservedCapacityInstanceFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price/getUsageRatePrices.md b/content/reference/services/SoftLayer_Product_Item_Price/getUsageRatePrices.md index d4c4140e81..9347e97fa5 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price/getUsageRatePrices.md +++ b/content/reference/services/SoftLayer_Product_Item_Price/getUsageRatePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price" --- -### Curl Example +# [REST Example](#getUsageRatePrices-example) {#getUsageRatePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location, SoftLayer_Product_Item]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location, SoftLayer_Product_Item]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price/getUsageRatePrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getItemPrice.md b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getItemPrice.md index eb2ac72a5c..2e863a4ec6 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getItemPrice.md +++ b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getItemPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price_Premium" --- -### Curl Example +# [REST Example](#getItemPrice-example) {#getItemPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price_Premium/{SoftLayer_Product_Item_Price_PremiumID}/getItemPrice' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getLocation.md b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getLocation.md index 09834e1143..9c82c72871 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getLocation.md +++ b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price_Premium" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price_Premium/{SoftLayer_Product_Item_Price_PremiumID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getObject.md b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getObject.md index 86ffb8d79b..521e885ec2 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getObject.md +++ b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price_Premium" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price_Premium/{SoftLayer_Product_Item_Price_PremiumID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getPackage.md b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getPackage.md index 9b94dffb59..4c9ed06d6b 100644 --- a/content/reference/services/SoftLayer_Product_Item_Price_Premium/getPackage.md +++ b/content/reference/services/SoftLayer_Product_Item_Price_Premium/getPackage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Item_Price_Premium" --- -### Curl Example +# [REST Example](#getPackage-example) {#getPackage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Item_Price_Premium/{SoftLayer_Product_Item_Price_PremiumID}/getPackage' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/checkItemAvailability.md b/content/reference/services/SoftLayer_Product_Order/checkItemAvailability.md index e666eda44b..390ad38fb2 100644 --- a/content/reference/services/SoftLayer_Product_Order/checkItemAvailability.md +++ b/content/reference/services/SoftLayer_Product_Order/checkItemAvailability.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#checkItemAvailability-example) {#checkItemAvailability-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Product_Item_Price, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Product_Item_Price, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/checkItemAvailability' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/checkItemAvailabilityForImageTemplate.md b/content/reference/services/SoftLayer_Product_Order/checkItemAvailabilityForImageTemplate.md index 26c6641d63..7454b66444 100644 --- a/content/reference/services/SoftLayer_Product_Order/checkItemAvailabilityForImageTemplate.md +++ b/content/reference/services/SoftLayer_Product_Order/checkItemAvailabilityForImageTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#checkItemAvailabilityForImageTemplate-example) {#checkItemAvailabilityForImageTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/checkItemAvailabilityForImageTemplate' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/checkItemConflicts.md b/content/reference/services/SoftLayer_Product_Order/checkItemConflicts.md index e2b606e74b..6e1199a585 100644 --- a/content/reference/services/SoftLayer_Product_Order/checkItemConflicts.md +++ b/content/reference/services/SoftLayer_Product_Order/checkItemConflicts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#checkItemConflicts-example) {#checkItemConflicts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Product_Item_Price]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Product_Item_Price]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/checkItemConflicts' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/getExternalPaymentAuthorizationReceipt.md b/content/reference/services/SoftLayer_Product_Order/getExternalPaymentAuthorizationReceipt.md index 5068573b4f..89cdb7551d 100644 --- a/content/reference/services/SoftLayer_Product_Order/getExternalPaymentAuthorizationReceipt.md +++ b/content/reference/services/SoftLayer_Product_Order/getExternalPaymentAuthorizationReceipt.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#getExternalPaymentAuthorizationReceipt-example) {#getExternalPaymentAuthorizationReceipt-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/getExternalPaymentAuthorizationReceipt' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/getNetworks.md b/content/reference/services/SoftLayer_Product_Order/getNetworks.md index 9d7b67db15..be4aead845 100644 --- a/content/reference/services/SoftLayer_Product_Order/getNetworks.md +++ b/content/reference/services/SoftLayer_Product_Order/getNetworks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#getNetworks-example) {#getNetworks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/getNetworks' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/getResellerOrder.md b/content/reference/services/SoftLayer_Product_Order/getResellerOrder.md index 3dbb94e93b..52df2db93d 100644 --- a/content/reference/services/SoftLayer_Product_Order/getResellerOrder.md +++ b/content/reference/services/SoftLayer_Product_Order/getResellerOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#getResellerOrder-example) {#getResellerOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/getResellerOrder' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/getTaxCalculationResult.md b/content/reference/services/SoftLayer_Product_Order/getTaxCalculationResult.md index 49d3d87e36..9b8a254de5 100644 --- a/content/reference/services/SoftLayer_Product_Order/getTaxCalculationResult.md +++ b/content/reference/services/SoftLayer_Product_Order/getTaxCalculationResult.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#getTaxCalculationResult-example) {#getTaxCalculationResult-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/getTaxCalculationResult' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/getVlans.md b/content/reference/services/SoftLayer_Product_Order/getVlans.md index 2e36ab182e..fbaf8c1e89 100644 --- a/content/reference/services/SoftLayer_Product_Order/getVlans.md +++ b/content/reference/services/SoftLayer_Product_Order/getVlans.md @@ -33,8 +33,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#getVlans-example) {#getVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, string, int, int, int, SoftLayer_Container_Product_Order, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int, string, int, int, int, SoftLayer_Container_Product_Order, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/getVlans' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/placeOrder.md b/content/reference/services/SoftLayer_Product_Order/placeOrder.md index 7e51577485..f5aa18c889 100644 --- a/content/reference/services/SoftLayer_Product_Order/placeOrder.md +++ b/content/reference/services/SoftLayer_Product_Order/placeOrder.md @@ -364,8 +364,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#placeOrder-example) {#placeOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/placeOrder' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/placeQuote.md b/content/reference/services/SoftLayer_Product_Order/placeQuote.md index 4e1c5060c1..cf865518d8 100644 --- a/content/reference/services/SoftLayer_Product_Order/placeQuote.md +++ b/content/reference/services/SoftLayer_Product_Order/placeQuote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#placeQuote-example) {#placeQuote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/placeQuote' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/processExternalPaymentAuthorization.md b/content/reference/services/SoftLayer_Product_Order/processExternalPaymentAuthorization.md index 52dbe3b0ec..b951bc6451 100644 --- a/content/reference/services/SoftLayer_Product_Order/processExternalPaymentAuthorization.md +++ b/content/reference/services/SoftLayer_Product_Order/processExternalPaymentAuthorization.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#processExternalPaymentAuthorization-example) {#processExternalPaymentAuthorization-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/processExternalPaymentAuthorization' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/requiredItems.md b/content/reference/services/SoftLayer_Product_Order/requiredItems.md index 0cc56eb052..464ee002b2 100644 --- a/content/reference/services/SoftLayer_Product_Order/requiredItems.md +++ b/content/reference/services/SoftLayer_Product_Order/requiredItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#requiredItems-example) {#requiredItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Product_Item_Price]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Product_Item_Price]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/requiredItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Order/verifyOrder.md b/content/reference/services/SoftLayer_Product_Order/verifyOrder.md index 1e0dc54b70..895a78abef 100644 --- a/content/reference/services/SoftLayer_Product_Order/verifyOrder.md +++ b/content/reference/services/SoftLayer_Product_Order/verifyOrder.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Product_Order" --- -### Curl Example +# [REST Example](#verifyOrder-example) {#verifyOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Product_Order]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/verifyOrder' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedActivePresets.md b/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedActivePresets.md index 646dd79acd..b9b54278ea 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedActivePresets.md +++ b/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedActivePresets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAccountRestrictedActivePresets-example) {#getAccountRestrictedActivePresets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAccountRestrictedActivePresets' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedCategories.md b/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedCategories.md index ebe56fa26b..210c2ceea7 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedCategories.md +++ b/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAccountRestrictedCategories-example) {#getAccountRestrictedCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAccountRestrictedCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedPricesFlag.md b/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedPricesFlag.md index ac03bd572d..e8ec5b96ef 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedPricesFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getAccountRestrictedPricesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAccountRestrictedPricesFlag-example) {#getAccountRestrictedPricesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAccountRestrictedPricesFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActiveItems.md b/content/reference/services/SoftLayer_Product_Package/getActiveItems.md index fbe5a5452c..64f1560561 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActiveItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getActiveItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActiveItems-example) {#getActiveItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActiveItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActivePackagesByAttribute.md b/content/reference/services/SoftLayer_Product_Package/getActivePackagesByAttribute.md index 5250ad1327..9444c0abd7 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActivePackagesByAttribute.md +++ b/content/reference/services/SoftLayer_Product_Package/getActivePackagesByAttribute.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActivePackagesByAttribute-example) {#getActivePackagesByAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/getActivePackagesByAttribute' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActivePresets.md b/content/reference/services/SoftLayer_Product_Package/getActivePresets.md index 65ad3f3723..6b092f8db9 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActivePresets.md +++ b/content/reference/services/SoftLayer_Product_Package/getActivePresets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActivePresets-example) {#getActivePresets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActivePresets' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActivePrivateHostedCloudPackages.md b/content/reference/services/SoftLayer_Product_Package/getActivePrivateHostedCloudPackages.md index 78b7cf9d3a..84fc57c3dd 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActivePrivateHostedCloudPackages.md +++ b/content/reference/services/SoftLayer_Product_Package/getActivePrivateHostedCloudPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActivePrivateHostedCloudPackages-example) {#getActivePrivateHostedCloudPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/getActivePrivateHostedCloudPackages' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActiveRamItems.md b/content/reference/services/SoftLayer_Product_Package/getActiveRamItems.md index 4b49a60c63..5159dd8c56 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActiveRamItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getActiveRamItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActiveRamItems-example) {#getActiveRamItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActiveRamItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActiveServerItems.md b/content/reference/services/SoftLayer_Product_Package/getActiveServerItems.md index c8488513a9..541e33e350 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActiveServerItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getActiveServerItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActiveServerItems-example) {#getActiveServerItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActiveServerItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActiveSoftwareItems.md b/content/reference/services/SoftLayer_Product_Package/getActiveSoftwareItems.md index d97c32bf77..da979cc82c 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActiveSoftwareItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getActiveSoftwareItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActiveSoftwareItems-example) {#getActiveSoftwareItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActiveSoftwareItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActiveUsagePrices.md b/content/reference/services/SoftLayer_Product_Package/getActiveUsagePrices.md index fa09d3188b..3902698cb4 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActiveUsagePrices.md +++ b/content/reference/services/SoftLayer_Product_Package/getActiveUsagePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActiveUsagePrices-example) {#getActiveUsagePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActiveUsagePrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getActiveUsageRatePrices.md b/content/reference/services/SoftLayer_Product_Package/getActiveUsageRatePrices.md index 39714975d8..3e2db456df 100644 --- a/content/reference/services/SoftLayer_Product_Package/getActiveUsageRatePrices.md +++ b/content/reference/services/SoftLayer_Product_Package/getActiveUsageRatePrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getActiveUsageRatePrices-example) {#getActiveUsageRatePrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getActiveUsageRatePrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAdditionalServiceFlag.md b/content/reference/services/SoftLayer_Product_Package/getAdditionalServiceFlag.md index 5665477315..8b15ae3983 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAdditionalServiceFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getAdditionalServiceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAdditionalServiceFlag-example) {#getAdditionalServiceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAdditionalServiceFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAllObjects.md b/content/reference/services/SoftLayer_Product_Package/getAllObjects.md index 83547927c0..ff11bfc2be 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAllObjects.md +++ b/content/reference/services/SoftLayer_Product_Package/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAttributes.md b/content/reference/services/SoftLayer_Product_Package/getAttributes.md index de7381733f..5ecf69159b 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAttributes.md +++ b/content/reference/services/SoftLayer_Product_Package/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAvailableLocations.md b/content/reference/services/SoftLayer_Product_Package/getAvailableLocations.md index a950073a31..8fc9dfb86b 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAvailableLocations.md +++ b/content/reference/services/SoftLayer_Product_Package/getAvailableLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAvailableLocations-example) {#getAvailableLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAvailableLocations' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAvailablePackagesForImageTemplate.md b/content/reference/services/SoftLayer_Product_Package/getAvailablePackagesForImageTemplate.md index 5ba3329109..bb7bef073a 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAvailablePackagesForImageTemplate.md +++ b/content/reference/services/SoftLayer_Product_Package/getAvailablePackagesForImageTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAvailablePackagesForImageTemplate-example) {#getAvailablePackagesForImageTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Block_Device_Template_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Block_Device_Template_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/getAvailablePackagesForImageTemplate' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getAvailableStorageUnits.md b/content/reference/services/SoftLayer_Product_Package/getAvailableStorageUnits.md index 0eb0c3271a..ae8a9338d1 100644 --- a/content/reference/services/SoftLayer_Product_Package/getAvailableStorageUnits.md +++ b/content/reference/services/SoftLayer_Product_Package/getAvailableStorageUnits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getAvailableStorageUnits-example) {#getAvailableStorageUnits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getAvailableStorageUnits' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getCategories.md b/content/reference/services/SoftLayer_Product_Package/getCategories.md index 18b7d1324e..2dbcb197ea 100644 --- a/content/reference/services/SoftLayer_Product_Package/getCategories.md +++ b/content/reference/services/SoftLayer_Product_Package/getCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getCategories-example) {#getCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getCdnItems.md b/content/reference/services/SoftLayer_Product_Package/getCdnItems.md index 8cd13a2f3e..33d8a988f4 100644 --- a/content/reference/services/SoftLayer_Product_Package/getCdnItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getCdnItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getCdnItems-example) {#getCdnItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getCdnItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getCloudStorageItems.md b/content/reference/services/SoftLayer_Product_Package/getCloudStorageItems.md index 3d093bfea0..edc99f4217 100644 --- a/content/reference/services/SoftLayer_Product_Package/getCloudStorageItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getCloudStorageItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getCloudStorageItems-example) {#getCloudStorageItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getCloudStorageItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getConfiguration.md b/content/reference/services/SoftLayer_Product_Package/getConfiguration.md index bae0bee45d..c842a2ee37 100644 --- a/content/reference/services/SoftLayer_Product_Package/getConfiguration.md +++ b/content/reference/services/SoftLayer_Product_Package/getConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getConfiguration-example) {#getConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDefaultBootCategoryCode.md b/content/reference/services/SoftLayer_Product_Package/getDefaultBootCategoryCode.md index 75ede258ed..e547a31d2f 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDefaultBootCategoryCode.md +++ b/content/reference/services/SoftLayer_Product_Package/getDefaultBootCategoryCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDefaultBootCategoryCode-example) {#getDefaultBootCategoryCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDefaultBootCategoryCode' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDefaultRamItems.md b/content/reference/services/SoftLayer_Product_Package/getDefaultRamItems.md index 443c61e7d1..0dcb40ac28 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDefaultRamItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getDefaultRamItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDefaultRamItems-example) {#getDefaultRamItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDefaultRamItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDeploymentNodeType.md b/content/reference/services/SoftLayer_Product_Package/getDeploymentNodeType.md index 2a34ce3641..6e90857149 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDeploymentNodeType.md +++ b/content/reference/services/SoftLayer_Product_Package/getDeploymentNodeType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDeploymentNodeType-example) {#getDeploymentNodeType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDeploymentNodeType' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDeploymentPackages.md b/content/reference/services/SoftLayer_Product_Package/getDeploymentPackages.md index 192e40138a..9114fc7f95 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDeploymentPackages.md +++ b/content/reference/services/SoftLayer_Product_Package/getDeploymentPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDeploymentPackages-example) {#getDeploymentPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDeploymentPackages' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDeploymentType.md b/content/reference/services/SoftLayer_Product_Package/getDeploymentType.md index c23cbb46b5..33defc2c50 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDeploymentType.md +++ b/content/reference/services/SoftLayer_Product_Package/getDeploymentType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDeploymentType-example) {#getDeploymentType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDeploymentType' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDeployments.md b/content/reference/services/SoftLayer_Product_Package/getDeployments.md index 96d82b9790..91ebe1ab10 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDeployments.md +++ b/content/reference/services/SoftLayer_Product_Package/getDeployments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDeployments-example) {#getDeployments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDeployments' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getDisallowCustomDiskPartitions.md b/content/reference/services/SoftLayer_Product_Package/getDisallowCustomDiskPartitions.md index a4ee612957..2fd1195727 100644 --- a/content/reference/services/SoftLayer_Product_Package/getDisallowCustomDiskPartitions.md +++ b/content/reference/services/SoftLayer_Product_Package/getDisallowCustomDiskPartitions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getDisallowCustomDiskPartitions-example) {#getDisallowCustomDiskPartitions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getDisallowCustomDiskPartitions' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getFirstOrderStep.md b/content/reference/services/SoftLayer_Product_Package/getFirstOrderStep.md index 05c0718cd1..d00c47e89b 100644 --- a/content/reference/services/SoftLayer_Product_Package/getFirstOrderStep.md +++ b/content/reference/services/SoftLayer_Product_Package/getFirstOrderStep.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getFirstOrderStep-example) {#getFirstOrderStep-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getFirstOrderStep' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getGatewayApplianceFlag.md b/content/reference/services/SoftLayer_Product_Package/getGatewayApplianceFlag.md index 4553d073e9..b5dc60666a 100644 --- a/content/reference/services/SoftLayer_Product_Package/getGatewayApplianceFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getGatewayApplianceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getGatewayApplianceFlag-example) {#getGatewayApplianceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getGatewayApplianceFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getGpuFlag.md b/content/reference/services/SoftLayer_Product_Package/getGpuFlag.md index abe90d944f..22450c980c 100644 --- a/content/reference/services/SoftLayer_Product_Package/getGpuFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getGpuFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getGpuFlag-example) {#getGpuFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getGpuFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getHourlyBillingAvailableFlag.md b/content/reference/services/SoftLayer_Product_Package/getHourlyBillingAvailableFlag.md index 5f4a09f83d..1db3aa0f0d 100644 --- a/content/reference/services/SoftLayer_Product_Package/getHourlyBillingAvailableFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getHourlyBillingAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getHourlyBillingAvailableFlag-example) {#getHourlyBillingAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getHourlyBillingAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getHourlyOnlyOrders.md b/content/reference/services/SoftLayer_Product_Package/getHourlyOnlyOrders.md index a01f672cb6..72a7269fab 100644 --- a/content/reference/services/SoftLayer_Product_Package/getHourlyOnlyOrders.md +++ b/content/reference/services/SoftLayer_Product_Package/getHourlyOnlyOrders.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getHourlyOnlyOrders-example) {#getHourlyOnlyOrders-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getHourlyOnlyOrders' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemAvailabilityTypes.md b/content/reference/services/SoftLayer_Product_Package/getItemAvailabilityTypes.md index 7bf32162aa..463a3d4eb2 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemAvailabilityTypes.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemAvailabilityTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemAvailabilityTypes-example) {#getItemAvailabilityTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/getItemAvailabilityTypes' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemConflicts.md b/content/reference/services/SoftLayer_Product_Package/getItemConflicts.md index 1d7353ffd8..747b8720bd 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemConflicts.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemConflicts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemConflicts-example) {#getItemConflicts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItemConflicts' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemLocationConflicts.md b/content/reference/services/SoftLayer_Product_Package/getItemLocationConflicts.md index dbf519ad66..7e9c975e4a 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemLocationConflicts.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemLocationConflicts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemLocationConflicts-example) {#getItemLocationConflicts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItemLocationConflicts' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemPriceReferences.md b/content/reference/services/SoftLayer_Product_Package/getItemPriceReferences.md index 8c6271a822..d7f500bddf 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemPriceReferences.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemPriceReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemPriceReferences-example) {#getItemPriceReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItemPriceReferences' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemPrices.md b/content/reference/services/SoftLayer_Product_Package/getItemPrices.md index ea696d28dd..a5d9335347 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemPrices.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemPrices-example) {#getItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemPricesFromSoftwareDescriptions.md b/content/reference/services/SoftLayer_Product_Package/getItemPricesFromSoftwareDescriptions.md index eab309a9ec..b1734dec4e 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemPricesFromSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemPricesFromSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemPricesFromSoftwareDescriptions-example) {#getItemPricesFromSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItemPricesFromSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItems.md b/content/reference/services/SoftLayer_Product_Package/getItems.md index 4674e0f422..60bc97c1f8 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItems-example) {#getItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getItemsFromImageTemplate.md b/content/reference/services/SoftLayer_Product_Package/getItemsFromImageTemplate.md index b14378608e..b4149a34ea 100644 --- a/content/reference/services/SoftLayer_Product_Package/getItemsFromImageTemplate.md +++ b/content/reference/services/SoftLayer_Product_Package/getItemsFromImageTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getItemsFromImageTemplate-example) {#getItemsFromImageTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Block_Device_Template_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Block_Device_Template_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getItemsFromImageTemplate' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getLocations.md b/content/reference/services/SoftLayer_Product_Package/getLocations.md index 73ee4ab972..09248b13f9 100644 --- a/content/reference/services/SoftLayer_Product_Package/getLocations.md +++ b/content/reference/services/SoftLayer_Product_Package/getLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getLocations-example) {#getLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getLocations' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getLowestServerPrice.md b/content/reference/services/SoftLayer_Product_Package/getLowestServerPrice.md index d5a89e4008..26ecd9fc36 100644 --- a/content/reference/services/SoftLayer_Product_Package/getLowestServerPrice.md +++ b/content/reference/services/SoftLayer_Product_Package/getLowestServerPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getLowestServerPrice-example) {#getLowestServerPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getLowestServerPrice' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getMaximumPortSpeed.md b/content/reference/services/SoftLayer_Product_Package/getMaximumPortSpeed.md index 55d5d409e4..b8bca9dbe1 100644 --- a/content/reference/services/SoftLayer_Product_Package/getMaximumPortSpeed.md +++ b/content/reference/services/SoftLayer_Product_Package/getMaximumPortSpeed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getMaximumPortSpeed-example) {#getMaximumPortSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getMaximumPortSpeed' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getMessageQueueItems.md b/content/reference/services/SoftLayer_Product_Package/getMessageQueueItems.md index 3373c9acb8..c1d1ce9208 100644 --- a/content/reference/services/SoftLayer_Product_Package/getMessageQueueItems.md +++ b/content/reference/services/SoftLayer_Product_Package/getMessageQueueItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getMessageQueueItems-example) {#getMessageQueueItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getMessageQueueItems' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getMinimumPortSpeed.md b/content/reference/services/SoftLayer_Product_Package/getMinimumPortSpeed.md index 4d2b58a3f1..652555888b 100644 --- a/content/reference/services/SoftLayer_Product_Package/getMinimumPortSpeed.md +++ b/content/reference/services/SoftLayer_Product_Package/getMinimumPortSpeed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getMinimumPortSpeed-example) {#getMinimumPortSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getMinimumPortSpeed' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getMongoDbEngineeredFlag.md b/content/reference/services/SoftLayer_Product_Package/getMongoDbEngineeredFlag.md index 12ce209e01..23124a9a35 100644 --- a/content/reference/services/SoftLayer_Product_Package/getMongoDbEngineeredFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getMongoDbEngineeredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getMongoDbEngineeredFlag-example) {#getMongoDbEngineeredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getMongoDbEngineeredFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getNoUpgradesFlag.md b/content/reference/services/SoftLayer_Product_Package/getNoUpgradesFlag.md index 4bf89f555b..c20a8a9d36 100644 --- a/content/reference/services/SoftLayer_Product_Package/getNoUpgradesFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getNoUpgradesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getNoUpgradesFlag-example) {#getNoUpgradesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getNoUpgradesFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getNonEuCompliantFlag.md b/content/reference/services/SoftLayer_Product_Package/getNonEuCompliantFlag.md index 3df039fce2..026d2396c3 100644 --- a/content/reference/services/SoftLayer_Product_Package/getNonEuCompliantFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getNonEuCompliantFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getNonEuCompliantFlag-example) {#getNonEuCompliantFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getNonEuCompliantFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getObject.md b/content/reference/services/SoftLayer_Product_Package/getObject.md index 98cb14b2a7..e3f440ee5a 100644 --- a/content/reference/services/SoftLayer_Product_Package/getObject.md +++ b/content/reference/services/SoftLayer_Product_Package/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getObjectStorageDatacenters.md b/content/reference/services/SoftLayer_Product_Package/getObjectStorageDatacenters.md index 484080ea21..425b21cfc7 100644 --- a/content/reference/services/SoftLayer_Product_Package/getObjectStorageDatacenters.md +++ b/content/reference/services/SoftLayer_Product_Package/getObjectStorageDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getObjectStorageDatacenters-example) {#getObjectStorageDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getObjectStorageDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getObjectStorageLocationGroups.md b/content/reference/services/SoftLayer_Product_Package/getObjectStorageLocationGroups.md index 00fa90d4da..c2517ac59e 100644 --- a/content/reference/services/SoftLayer_Product_Package/getObjectStorageLocationGroups.md +++ b/content/reference/services/SoftLayer_Product_Package/getObjectStorageLocationGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getObjectStorageLocationGroups-example) {#getObjectStorageLocationGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getObjectStorageLocationGroups' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getOrderPremiums.md b/content/reference/services/SoftLayer_Product_Package/getOrderPremiums.md index 7488dd852d..36a3778946 100644 --- a/content/reference/services/SoftLayer_Product_Package/getOrderPremiums.md +++ b/content/reference/services/SoftLayer_Product_Package/getOrderPremiums.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getOrderPremiums-example) {#getOrderPremiums-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getOrderPremiums' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPopLocationAvailabilityFlag.md b/content/reference/services/SoftLayer_Product_Package/getPopLocationAvailabilityFlag.md index 19735d60a7..a9f1e029fc 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPopLocationAvailabilityFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getPopLocationAvailabilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPopLocationAvailabilityFlag-example) {#getPopLocationAvailabilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPopLocationAvailabilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPreconfiguredFlag.md b/content/reference/services/SoftLayer_Product_Package/getPreconfiguredFlag.md index fe08648dae..69d64d32c1 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPreconfiguredFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getPreconfiguredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPreconfiguredFlag-example) {#getPreconfiguredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPreconfiguredFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPresetConfigurationRequiredFlag.md b/content/reference/services/SoftLayer_Product_Package/getPresetConfigurationRequiredFlag.md index b73cfe4c33..ee1e97b922 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPresetConfigurationRequiredFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getPresetConfigurationRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPresetConfigurationRequiredFlag-example) {#getPresetConfigurationRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPresetConfigurationRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPreventVlanSelectionFlag.md b/content/reference/services/SoftLayer_Product_Package/getPreventVlanSelectionFlag.md index 50189b7fee..e2296a30b0 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPreventVlanSelectionFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getPreventVlanSelectionFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPreventVlanSelectionFlag-example) {#getPreventVlanSelectionFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPreventVlanSelectionFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageFlag.md b/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageFlag.md index 9a9c52899c..fe44a910e1 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPrivateHostedCloudPackageFlag-example) {#getPrivateHostedCloudPackageFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPrivateHostedCloudPackageFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageType.md b/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageType.md index 549a48f903..46e4ed835b 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageType.md +++ b/content/reference/services/SoftLayer_Product_Package/getPrivateHostedCloudPackageType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPrivateHostedCloudPackageType-example) {#getPrivateHostedCloudPackageType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPrivateHostedCloudPackageType' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Product_Package/getPrivateNetworkOnlyFlag.md index 641bf73a88..8605edead5 100644 --- a/content/reference/services/SoftLayer_Product_Package/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getQuantaStorPackageFlag.md b/content/reference/services/SoftLayer_Product_Package/getQuantaStorPackageFlag.md index bd7fa6e6fe..bf230256f1 100644 --- a/content/reference/services/SoftLayer_Product_Package/getQuantaStorPackageFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getQuantaStorPackageFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getQuantaStorPackageFlag-example) {#getQuantaStorPackageFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getQuantaStorPackageFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getRaidDiskRestrictionFlag.md b/content/reference/services/SoftLayer_Product_Package/getRaidDiskRestrictionFlag.md index faf18f82f4..4dd6050266 100644 --- a/content/reference/services/SoftLayer_Product_Package/getRaidDiskRestrictionFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getRaidDiskRestrictionFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getRaidDiskRestrictionFlag-example) {#getRaidDiskRestrictionFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getRaidDiskRestrictionFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getRedundantPowerFlag.md b/content/reference/services/SoftLayer_Product_Package/getRedundantPowerFlag.md index f312efa496..e0324d250b 100644 --- a/content/reference/services/SoftLayer_Product_Package/getRedundantPowerFlag.md +++ b/content/reference/services/SoftLayer_Product_Package/getRedundantPowerFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getRedundantPowerFlag-example) {#getRedundantPowerFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getRedundantPowerFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getRegions.md b/content/reference/services/SoftLayer_Product_Package/getRegions.md index 56f6d5bba6..6d3d4bb3ed 100644 --- a/content/reference/services/SoftLayer_Product_Package/getRegions.md +++ b/content/reference/services/SoftLayer_Product_Package/getRegions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getRegions-example) {#getRegions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getRegions' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getStandardCategories.md b/content/reference/services/SoftLayer_Product_Package/getStandardCategories.md index 912711ff53..9561bffa19 100644 --- a/content/reference/services/SoftLayer_Product_Package/getStandardCategories.md +++ b/content/reference/services/SoftLayer_Product_Package/getStandardCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getStandardCategories-example) {#getStandardCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getStandardCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getTopLevelItemCategoryCode.md b/content/reference/services/SoftLayer_Product_Package/getTopLevelItemCategoryCode.md index 1c9f9bd1ab..2aa3868a0d 100644 --- a/content/reference/services/SoftLayer_Product_Package/getTopLevelItemCategoryCode.md +++ b/content/reference/services/SoftLayer_Product_Package/getTopLevelItemCategoryCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getTopLevelItemCategoryCode-example) {#getTopLevelItemCategoryCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getTopLevelItemCategoryCode' ``` diff --git a/content/reference/services/SoftLayer_Product_Package/getType.md b/content/reference/services/SoftLayer_Product_Package/getType.md index 22350ab3a0..513b1d972d 100644 --- a/content/reference/services/SoftLayer_Product_Package/getType.md +++ b/content/reference/services/SoftLayer_Product_Package/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/{SoftLayer_Product_PackageID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getAllObjects.md b/content/reference/services/SoftLayer_Product_Package_Preset/getAllObjects.md index 8693cf665a..1af58d56c6 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getAllObjects.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getAvailableStorageUnits.md b/content/reference/services/SoftLayer_Product_Package_Preset/getAvailableStorageUnits.md index 56e73dee59..c95d1f49d1 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getAvailableStorageUnits.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getAvailableStorageUnits.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getAvailableStorageUnits-example) {#getAvailableStorageUnits-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getAvailableStorageUnits' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getBareMetalReservedFlag.md b/content/reference/services/SoftLayer_Product_Package_Preset/getBareMetalReservedFlag.md index 29851e589d..cd5e63a0a2 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getBareMetalReservedFlag.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getBareMetalReservedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getBareMetalReservedFlag-example) {#getBareMetalReservedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getBareMetalReservedFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getCategories.md b/content/reference/services/SoftLayer_Product_Package_Preset/getCategories.md index 8ca09143dc..709369e52d 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getCategories.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getCategories-example) {#getCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getCategories' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getComputeGroup.md b/content/reference/services/SoftLayer_Product_Package_Preset/getComputeGroup.md index 82bcee6a99..8bffc2308f 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getComputeGroup.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getComputeGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getComputeGroup-example) {#getComputeGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getComputeGroup' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getConfiguration.md b/content/reference/services/SoftLayer_Product_Package_Preset/getConfiguration.md index 2fa665fade..1d1bf871cd 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getConfiguration.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getConfiguration-example) {#getConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getDisallowedComputeGroupUpgradeFlag.md b/content/reference/services/SoftLayer_Product_Package_Preset/getDisallowedComputeGroupUpgradeFlag.md index e995176d13..5d85074a75 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getDisallowedComputeGroupUpgradeFlag.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getDisallowedComputeGroupUpgradeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getDisallowedComputeGroupUpgradeFlag-example) {#getDisallowedComputeGroupUpgradeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getDisallowedComputeGroupUpgradeFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getFixedConfigurationFlag.md b/content/reference/services/SoftLayer_Product_Package_Preset/getFixedConfigurationFlag.md index 1d85d45601..553df7253f 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getFixedConfigurationFlag.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getFixedConfigurationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getFixedConfigurationFlag-example) {#getFixedConfigurationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getFixedConfigurationFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getLocations.md b/content/reference/services/SoftLayer_Product_Package_Preset/getLocations.md index 66122e22c7..ae21dd0260 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getLocations.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getLocations-example) {#getLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getLocations' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getLowestPresetServerPrice.md b/content/reference/services/SoftLayer_Product_Package_Preset/getLowestPresetServerPrice.md index 31fd27df62..95235caf3b 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getLowestPresetServerPrice.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getLowestPresetServerPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getLowestPresetServerPrice-example) {#getLowestPresetServerPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getLowestPresetServerPrice' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getObject.md b/content/reference/services/SoftLayer_Product_Package_Preset/getObject.md index 51daff1e75..a0e165dc69 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getObject.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getPackage.md b/content/reference/services/SoftLayer_Product_Package_Preset/getPackage.md index f155b9cd4a..5885800bec 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getPackage.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getPackage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getPackage-example) {#getPackage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getPackage' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getPackageConfiguration.md b/content/reference/services/SoftLayer_Product_Package_Preset/getPackageConfiguration.md index 8db723564f..d946b98004 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getPackageConfiguration.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getPackageConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getPackageConfiguration-example) {#getPackageConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getPackageConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getPrices.md b/content/reference/services/SoftLayer_Product_Package_Preset/getPrices.md index f3fbf2a012..103904634c 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getPrices.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getPrices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getPrices-example) {#getPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getPrices' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getStorageGroupTemplateArrays.md b/content/reference/services/SoftLayer_Product_Package_Preset/getStorageGroupTemplateArrays.md index fc8dab74c6..2bf0851070 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getStorageGroupTemplateArrays.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getStorageGroupTemplateArrays.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getStorageGroupTemplateArrays-example) {#getStorageGroupTemplateArrays-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getStorageGroupTemplateArrays' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumHourlyFee.md b/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumHourlyFee.md index 0ef1570a8d..d4bfc81920 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumHourlyFee.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumHourlyFee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getTotalMinimumHourlyFee-example) {#getTotalMinimumHourlyFee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getTotalMinimumHourlyFee' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumRecurringFee.md b/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumRecurringFee.md index e99f5640f7..c7338ebd4a 100644 --- a/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumRecurringFee.md +++ b/content/reference/services/SoftLayer_Product_Package_Preset/getTotalMinimumRecurringFee.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Preset" --- -### Curl Example +# [REST Example](#getTotalMinimumRecurringFee-example) {#getTotalMinimumRecurringFee-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Preset/{SoftLayer_Product_Package_PresetID}/getTotalMinimumRecurringFee' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getAllObjects.md b/content/reference/services/SoftLayer_Product_Package_Server/getAllObjects.md index 31558e9d30..3e59aab3b2 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getAllObjects.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getCatalog.md b/content/reference/services/SoftLayer_Product_Package_Server/getCatalog.md index af7f975a64..5f5413609c 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getCatalog.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getCatalog.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getCatalog-example) {#getCatalog-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/{SoftLayer_Product_Package_ServerID}/getCatalog' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getItem.md b/content/reference/services/SoftLayer_Product_Package_Server/getItem.md index 197ff6a0b6..112c578967 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getItem.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/{SoftLayer_Product_Package_ServerID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getItemPrice.md b/content/reference/services/SoftLayer_Product_Package_Server/getItemPrice.md index 3898eb686b..522af2b307 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getItemPrice.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getItemPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getItemPrice-example) {#getItemPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/{SoftLayer_Product_Package_ServerID}/getItemPrice' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getObject.md b/content/reference/services/SoftLayer_Product_Package_Server/getObject.md index 7919024f26..9aa60349f3 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getObject.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/{SoftLayer_Product_Package_ServerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getPackage.md b/content/reference/services/SoftLayer_Product_Package_Server/getPackage.md index 3daea8031d..8b189843fe 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getPackage.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getPackage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getPackage-example) {#getPackage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/{SoftLayer_Product_Package_ServerID}/getPackage' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server/getPreset.md b/content/reference/services/SoftLayer_Product_Package_Server/getPreset.md index 47b583cb5f..e167718a75 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server/getPreset.md +++ b/content/reference/services/SoftLayer_Product_Package_Server/getPreset.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server" --- -### Curl Example +# [REST Example](#getPreset-example) {#getPreset-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server/{SoftLayer_Product_Package_ServerID}/getPreset' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server_Option/getAllOptions.md b/content/reference/services/SoftLayer_Product_Package_Server_Option/getAllOptions.md index 69c4d4afd6..a82057728a 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server_Option/getAllOptions.md +++ b/content/reference/services/SoftLayer_Product_Package_Server_Option/getAllOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server_Option" --- -### Curl Example +# [REST Example](#getAllOptions-example) {#getAllOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server_Option/getAllOptions' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server_Option/getObject.md b/content/reference/services/SoftLayer_Product_Package_Server_Option/getObject.md index df249fbbf7..b4ca9d5908 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server_Option/getObject.md +++ b/content/reference/services/SoftLayer_Product_Package_Server_Option/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server_Option" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server_Option/{SoftLayer_Product_Package_Server_OptionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Server_Option/getOptions.md b/content/reference/services/SoftLayer_Product_Package_Server_Option/getOptions.md index 7395550db2..758358193a 100644 --- a/content/reference/services/SoftLayer_Product_Package_Server_Option/getOptions.md +++ b/content/reference/services/SoftLayer_Product_Package_Server_Option/getOptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Server_Option" --- -### Curl Example +# [REST Example](#getOptions-example) {#getOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Server_Option/getOptions' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Type/getAllObjects.md b/content/reference/services/SoftLayer_Product_Package_Type/getAllObjects.md index ed5853ded5..0627be07bf 100644 --- a/content/reference/services/SoftLayer_Product_Package_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Product_Package_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Type/getObject.md b/content/reference/services/SoftLayer_Product_Package_Type/getObject.md index 4e25c2eeb5..8d79165e61 100644 --- a/content/reference/services/SoftLayer_Product_Package_Type/getObject.md +++ b/content/reference/services/SoftLayer_Product_Package_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Type/{SoftLayer_Product_Package_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Package_Type/getPackages.md b/content/reference/services/SoftLayer_Product_Package_Type/getPackages.md index 84e4f6b09d..ac8d55696f 100644 --- a/content/reference/services/SoftLayer_Product_Package_Type/getPackages.md +++ b/content/reference/services/SoftLayer_Product_Package_Type/getPackages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Package_Type" --- -### Curl Example +# [REST Example](#getPackages-example) {#getPackages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Package_Type/{SoftLayer_Product_Package_TypeID}/getPackages' ``` diff --git a/content/reference/services/SoftLayer_Product_Promotion/findByPromoCode.md b/content/reference/services/SoftLayer_Product_Promotion/findByPromoCode.md index 5ad0048448..a5eadaeb52 100644 --- a/content/reference/services/SoftLayer_Product_Promotion/findByPromoCode.md +++ b/content/reference/services/SoftLayer_Product_Promotion/findByPromoCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Promotion" --- -### Curl Example +# [REST Example](#findByPromoCode-example) {#findByPromoCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Promotion/findByPromoCode' ``` diff --git a/content/reference/services/SoftLayer_Product_Promotion/getObject.md b/content/reference/services/SoftLayer_Product_Promotion/getObject.md index acad8c64bf..d7f2f29e94 100644 --- a/content/reference/services/SoftLayer_Product_Promotion/getObject.md +++ b/content/reference/services/SoftLayer_Product_Promotion/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Promotion" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Promotion/{SoftLayer_Product_PromotionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/approveChanges.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/approveChanges.md index 74cd0e6485..be43bd094d 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/approveChanges.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/approveChanges.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#approveChanges-example) {#approveChanges-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/approveChanges' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getAccount.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getAccount.md index 612f7d969c..dd61bdf368 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getCompletedFlag.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getCompletedFlag.md index 7727032e08..e97e0cd413 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getCompletedFlag.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getCompletedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getCompletedFlag-example) {#getCompletedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getCompletedFlag' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getInvoice.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getInvoice.md index d4c4696114..9ca3a0faee 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getInvoice.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getInvoice-example) {#getInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getInvoice' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getObject.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getObject.md index 1122d2b11e..6c5f7f6804 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getObject.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getOrder.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getOrder.md index 7bca7bd316..c0040fb1ce 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getOrder.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getOrder-example) {#getOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getOrder' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getServer.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getServer.md index bb6414818b..8a51c4a924 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getServer.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getServer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getServer-example) {#getServer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getServer' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getStatus.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getStatus.md index f9177b7a8a..bdac07c49f 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getStatus.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getTicket.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getTicket.md index 2330de8e19..38ea7a7c08 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getTicket.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getUser.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getUser.md index 194ebf99da..123eebcd2a 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getUser.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/getVirtualGuest.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/getVirtualGuest.md index fc7d8f89f9..a45f8267ce 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Product_Upgrade_Request/updateMaintenanceWindow.md b/content/reference/services/SoftLayer_Product_Upgrade_Request/updateMaintenanceWindow.md index b0c212b8ab..01cafc6d1e 100644 --- a/content/reference/services/SoftLayer_Product_Upgrade_Request/updateMaintenanceWindow.md +++ b/content/reference/services/SoftLayer_Product_Upgrade_Request/updateMaintenanceWindow.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Product_Upgrade_Request" --- -### Curl Example +# [REST Example](#updateMaintenanceWindow-example) {#updateMaintenanceWindow-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Upgrade_Request/{SoftLayer_Product_Upgrade_RequestID}/updateMaintenanceWindow' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook/createObject.md b/content/reference/services/SoftLayer_Provisioning_Hook/createObject.md index f90206a921..44b280e84d 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook/createObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Provisioning_Hook]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Provisioning_Hook]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook/createObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook/deleteObject.md b/content/reference/services/SoftLayer_Provisioning_Hook/deleteObject.md index 2e3a7b1f84..a52316cace 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook/deleteObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook/{SoftLayer_Provisioning_HookID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook/editObject.md b/content/reference/services/SoftLayer_Provisioning_Hook/editObject.md index 4176b8753b..b7269a921f 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook/editObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Provisioning_Hook]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Provisioning_Hook]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook/{SoftLayer_Provisioning_HookID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook/getAccount.md b/content/reference/services/SoftLayer_Provisioning_Hook/getAccount.md index d353dd3acc..48a2c6f6c2 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook/getAccount.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook/{SoftLayer_Provisioning_HookID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook/getHookType.md b/content/reference/services/SoftLayer_Provisioning_Hook/getHookType.md index df7e6227b8..ff3ff4cc9e 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook/getHookType.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook/getHookType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook" --- -### Curl Example +# [REST Example](#getHookType-example) {#getHookType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook/{SoftLayer_Provisioning_HookID}/getHookType' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook/getObject.md b/content/reference/services/SoftLayer_Provisioning_Hook/getObject.md index a8cb5dffb7..2822594d49 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook/{SoftLayer_Provisioning_HookID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook_Type/getAllHookTypes.md b/content/reference/services/SoftLayer_Provisioning_Hook_Type/getAllHookTypes.md index 311c24c822..28edac4dc2 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook_Type/getAllHookTypes.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook_Type/getAllHookTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook_Type" --- -### Curl Example +# [REST Example](#getAllHookTypes-example) {#getAllHookTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook_Type/getAllHookTypes' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Hook_Type/getObject.md b/content/reference/services/SoftLayer_Provisioning_Hook_Type/getObject.md index dcad6dd193..31f63781ed 100644 --- a/content/reference/services/SoftLayer_Provisioning_Hook_Type/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Hook_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Hook_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Hook_Type/{SoftLayer_Provisioning_Hook_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getItemCategories.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getItemCategories.md index 7241495a65..75f2788318 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getItemCategories.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getItemCategories.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Classification" --- -### Curl Example +# [REST Example](#getItemCategories-example) {#getItemCategories-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Classification/{SoftLayer_Provisioning_Maintenance_ClassificationID}/getItemCategories' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassification.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassification.md index 2c3927b7b2..4e9273ade3 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassification.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Classification" --- -### Curl Example +# [REST Example](#getMaintenanceClassification-example) {#getMaintenanceClassification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassification' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassificationsByItemCategory.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassificationsByItemCategory.md index e32d8b9160..1e2beb77be 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassificationsByItemCategory.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassificationsByItemCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Classification" --- -### Curl Example +# [REST Example](#getMaintenanceClassificationsByItemCategory-example) {#getMaintenanceClassificationsByItemCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Classification/getMaintenanceClassificationsByItemCategory' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getObject.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getObject.md index ad3299c2d2..6b65bb0ec8 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Classification" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Classification/{SoftLayer_Provisioning_Maintenance_ClassificationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getMaintenanceClassification.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getMaintenanceClassification.md index 513ad5dd91..cf1225e983 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getMaintenanceClassification.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getMaintenanceClassification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Classification_Item_Category" --- -### Curl Example +# [REST Example](#getMaintenanceClassification-example) {#getMaintenanceClassification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/{SoftLayer_Provisioning_Maintenance_Classification_Item_CategoryID}/getMaintenanceClassification' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getObject.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getObject.md index 3fe40527e5..07610c73cf 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Classification_Item_Category" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Classification_Item_Category/{SoftLayer_Provisioning_Maintenance_Classification_Item_CategoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Slots/getObject.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Slots/getObject.md index 1cce4807d4..23db2c0605 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Slots/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Slots/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Slots" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Slots/{SoftLayer_Provisioning_Maintenance_SlotsID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getAvailableSlots.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getAvailableSlots.md index b50aa148aa..99b8499651 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getAvailableSlots.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getAvailableSlots.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Ticket" --- -### Curl Example +# [REST Example](#getAvailableSlots-example) {#getAvailableSlots-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Ticket/{SoftLayer_Provisioning_Maintenance_TicketID}/getAvailableSlots' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getMaintenanceClass.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getMaintenanceClass.md index e3dcb103f4..9d1ce3ee58 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getMaintenanceClass.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getMaintenanceClass.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Ticket" --- -### Curl Example +# [REST Example](#getMaintenanceClass-example) {#getMaintenanceClass-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Ticket/{SoftLayer_Provisioning_Maintenance_TicketID}/getMaintenanceClass' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getObject.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getObject.md index 5bd5c48a01..880b2c102e 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Ticket" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Ticket/{SoftLayer_Provisioning_Maintenance_TicketID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getTicket.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getTicket.md index ec2ff30106..f00fa56720 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getTicket.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Ticket/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Ticket" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Ticket/{SoftLayer_Provisioning_Maintenance_TicketID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/addCustomerUpgradeWindow.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/addCustomerUpgradeWindow.md index 38d804fb69..6b3df68c69 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/addCustomerUpgradeWindow.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/addCustomerUpgradeWindow.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#addCustomerUpgradeWindow-example) {#addCustomerUpgradeWindow-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Provisioning_Maintenance_Window]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Provisioning_Maintenance_Window]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/addCustomerUpgradeWindow' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceClassifications.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceClassifications.md index 28478bef16..d67fe7d994 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceClassifications.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceClassifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#getMaintenanceClassifications-example) {#getMaintenanceClassifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceClassifications' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceStartEndTime.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceStartEndTime.md index 58ec1b784e..8fae36d220 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceStartEndTime.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceStartEndTime.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#getMaintenanceStartEndTime-example) {#getMaintenanceStartEndTime-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceStartEndTime' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowForTicket.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowForTicket.md index 11ccbbca40..940296dd82 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowForTicket.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowForTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#getMaintenanceWindowForTicket-example) {#getMaintenanceWindowForTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowForTicket' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowTicketsByTicketId.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowTicketsByTicketId.md index 67aa63b486..fe7733e783 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowTicketsByTicketId.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowTicketsByTicketId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#getMaintenanceWindowTicketsByTicketId-example) {#getMaintenanceWindowTicketsByTicketId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindowTicketsByTicketId' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindows.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindows.md index b2a565ecec..c849545405 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindows.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindows.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#getMaintenanceWindows-example) {#getMaintenanceWindows-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/getMaintenanceWindows' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenceWindows.md b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenceWindows.md index 23f5d30b8e..a76acfe3c8 100644 --- a/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenceWindows.md +++ b/content/reference/services/SoftLayer_Provisioning_Maintenance_Window/getMaintenceWindows.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Maintenance_Window" --- -### Curl Example +# [REST Example](#getMaintenceWindows-example) {#getMaintenceWindows-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Maintenance_Window/getMaintenceWindows' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getAllObjects.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getAllObjects.md index 67b621afae..36088f6451 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getAllObjects.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_Group" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_Group/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getObject.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getObject.md index 448918bc1e..5fd5c3ecc5 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_Group/{SoftLayer_Provisioning_Version1_Transaction_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getInvoiceId.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getInvoiceId.md index 648fcc0d10..aeeb85dd74 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getInvoiceId.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getInvoiceId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_OrderTracking" --- -### Curl Example +# [REST Example](#getInvoiceId-example) {#getInvoiceId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/{SoftLayer_Provisioning_Version1_Transaction_OrderTrackingID}/getInvoiceId' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getObject.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getObject.md index ad3885283d..faf0823668 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_OrderTracking" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/{SoftLayer_Provisioning_Version1_Transaction_OrderTrackingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getOrderTrackingState.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getOrderTrackingState.md index a895cb9c11..2d2da139db 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getOrderTrackingState.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getOrderTrackingState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_OrderTracking" --- -### Curl Example +# [REST Example](#getOrderTrackingState-example) {#getOrderTrackingState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/{SoftLayer_Provisioning_Version1_Transaction_OrderTrackingID}/getOrderTrackingState' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getTransaction.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getTransaction.md index e1246ad536..572d52a497 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getTransaction.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/getTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_OrderTracking" --- -### Curl Example +# [REST Example](#getTransaction-example) {#getTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_OrderTracking/{SoftLayer_Provisioning_Version1_Transaction_OrderTrackingID}/getTransaction' ``` diff --git a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTrackingState/getObject.md b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTrackingState/getObject.md index 2b78570097..b7c161cf69 100644 --- a/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTrackingState/getObject.md +++ b/content/reference/services/SoftLayer_Provisioning_Version1_Transaction_OrderTrackingState/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Provisioning_Version1_Transaction_OrderTrackingState" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Provisioning_Version1_Transaction_OrderTrackingState/{SoftLayer_Provisioning_Version1_Transaction_OrderTrackingStateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Resource_Configuration/setOsPasswordFromEncrypted.md b/content/reference/services/SoftLayer_Resource_Configuration/setOsPasswordFromEncrypted.md index b9e324275d..d5792c5e79 100644 --- a/content/reference/services/SoftLayer_Resource_Configuration/setOsPasswordFromEncrypted.md +++ b/content/reference/services/SoftLayer_Resource_Configuration/setOsPasswordFromEncrypted.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Configuration" --- -### Curl Example +# [REST Example](#setOsPasswordFromEncrypted-example) {#setOsPasswordFromEncrypted-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Configuration/{SoftLayer_Resource_ConfigurationID}/setOsPasswordFromEncrypted' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/editObject.md b/content/reference/services/SoftLayer_Resource_Group/editObject.md index c3f9799dff..4741e1a1c4 100644 --- a/content/reference/services/SoftLayer_Resource_Group/editObject.md +++ b/content/reference/services/SoftLayer_Resource_Group/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Resource_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Resource_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getAncestorGroups.md b/content/reference/services/SoftLayer_Resource_Group/getAncestorGroups.md index 139e88d011..cf2596e97d 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getAncestorGroups.md +++ b/content/reference/services/SoftLayer_Resource_Group/getAncestorGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getAncestorGroups-example) {#getAncestorGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getAncestorGroups' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getAttributes.md b/content/reference/services/SoftLayer_Resource_Group/getAttributes.md index 2a073717ab..afcfe6dbbb 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getAttributes.md +++ b/content/reference/services/SoftLayer_Resource_Group/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getHardwareMembers.md b/content/reference/services/SoftLayer_Resource_Group/getHardwareMembers.md index 7118a8719c..70760c698b 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getHardwareMembers.md +++ b/content/reference/services/SoftLayer_Resource_Group/getHardwareMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getHardwareMembers-example) {#getHardwareMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getHardwareMembers' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getMembers.md b/content/reference/services/SoftLayer_Resource_Group/getMembers.md index 0ed708e1b0..3006a8e2ad 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getMembers.md +++ b/content/reference/services/SoftLayer_Resource_Group/getMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getMembers-example) {#getMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getMembers' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getObject.md b/content/reference/services/SoftLayer_Resource_Group/getObject.md index 0131c4dc72..0afc44838e 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getObject.md +++ b/content/reference/services/SoftLayer_Resource_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getRootResourceGroup.md b/content/reference/services/SoftLayer_Resource_Group/getRootResourceGroup.md index aa254dbb18..85c6aa60b0 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getRootResourceGroup.md +++ b/content/reference/services/SoftLayer_Resource_Group/getRootResourceGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getRootResourceGroup-example) {#getRootResourceGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getRootResourceGroup' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getSubnetMembers.md b/content/reference/services/SoftLayer_Resource_Group/getSubnetMembers.md index c353555106..5bfb902c27 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getSubnetMembers.md +++ b/content/reference/services/SoftLayer_Resource_Group/getSubnetMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getSubnetMembers-example) {#getSubnetMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getSubnetMembers' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getTemplate.md b/content/reference/services/SoftLayer_Resource_Group/getTemplate.md index 9cf9df6c2f..a95f4dddc1 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getTemplate.md +++ b/content/reference/services/SoftLayer_Resource_Group/getTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getTemplate-example) {#getTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getTemplate' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group/getVlanMembers.md b/content/reference/services/SoftLayer_Resource_Group/getVlanMembers.md index 058dfdb82e..5045fa9d5f 100644 --- a/content/reference/services/SoftLayer_Resource_Group/getVlanMembers.md +++ b/content/reference/services/SoftLayer_Resource_Group/getVlanMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group" --- -### Curl Example +# [REST Example](#getVlanMembers-example) {#getVlanMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group/{SoftLayer_Resource_GroupID}/getVlanMembers' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group_Template/getAllObjects.md b/content/reference/services/SoftLayer_Resource_Group_Template/getAllObjects.md index 13fab9c5fc..1fdfa0c1bc 100644 --- a/content/reference/services/SoftLayer_Resource_Group_Template/getAllObjects.md +++ b/content/reference/services/SoftLayer_Resource_Group_Template/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group_Template" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group_Template/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group_Template/getChildren.md b/content/reference/services/SoftLayer_Resource_Group_Template/getChildren.md index 4e84c631c0..e6913db341 100644 --- a/content/reference/services/SoftLayer_Resource_Group_Template/getChildren.md +++ b/content/reference/services/SoftLayer_Resource_Group_Template/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group_Template" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group_Template/{SoftLayer_Resource_Group_TemplateID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group_Template/getMembers.md b/content/reference/services/SoftLayer_Resource_Group_Template/getMembers.md index c313b34c25..5eb9e13b33 100644 --- a/content/reference/services/SoftLayer_Resource_Group_Template/getMembers.md +++ b/content/reference/services/SoftLayer_Resource_Group_Template/getMembers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group_Template" --- -### Curl Example +# [REST Example](#getMembers-example) {#getMembers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group_Template/{SoftLayer_Resource_Group_TemplateID}/getMembers' ``` diff --git a/content/reference/services/SoftLayer_Resource_Group_Template/getObject.md b/content/reference/services/SoftLayer_Resource_Group_Template/getObject.md index e52888e48a..4640699cf7 100644 --- a/content/reference/services/SoftLayer_Resource_Group_Template/getObject.md +++ b/content/reference/services/SoftLayer_Resource_Group_Template/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Group_Template" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Group_Template/{SoftLayer_Resource_Group_TemplateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getAccountId.md b/content/reference/services/SoftLayer_Resource_Metadata/getAccountId.md index 3883f2e689..386bca5e70 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getAccountId.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getAccountId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getAccountId-example) {#getAccountId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getAccountId' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getBackendMacAddresses.md b/content/reference/services/SoftLayer_Resource_Metadata/getBackendMacAddresses.md index e57d384c31..bd3c7849cc 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getBackendMacAddresses.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getBackendMacAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getBackendMacAddresses-example) {#getBackendMacAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getBackendMacAddresses' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getDatacenter.md b/content/reference/services/SoftLayer_Resource_Metadata/getDatacenter.md index 158ecde6f4..89edecd481 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getDatacenter.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getDatacenterId.md b/content/reference/services/SoftLayer_Resource_Metadata/getDatacenterId.md index 7a52799d01..88c43132b9 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getDatacenterId.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getDatacenterId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getDatacenterId-example) {#getDatacenterId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getDatacenterId' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getDomain.md b/content/reference/services/SoftLayer_Resource_Metadata/getDomain.md index ee34fe8e26..59a5d5c360 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getDomain.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getDomain.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getDomain-example) {#getDomain-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getDomain' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getFrontendMacAddresses.md b/content/reference/services/SoftLayer_Resource_Metadata/getFrontendMacAddresses.md index de446e8d0a..1aed67bea5 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getFrontendMacAddresses.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getFrontendMacAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getFrontendMacAddresses-example) {#getFrontendMacAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getFrontendMacAddresses' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getFullyQualifiedDomainName.md b/content/reference/services/SoftLayer_Resource_Metadata/getFullyQualifiedDomainName.md index 441c864707..56b4f2da6b 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getFullyQualifiedDomainName.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getFullyQualifiedDomainName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getFullyQualifiedDomainName-example) {#getFullyQualifiedDomainName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getFullyQualifiedDomainName' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Resource_Metadata/getGlobalIdentifier.md index 9a765d3150..8df9cddc55 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getHostname.md b/content/reference/services/SoftLayer_Resource_Metadata/getHostname.md index 168ac9c09b..97a91e0b84 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getHostname.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getHostname.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getHostname-example) {#getHostname-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getHostname' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getId.md b/content/reference/services/SoftLayer_Resource_Metadata/getId.md index 32d80c188e..c6cb66d6f9 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getId.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getId-example) {#getId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getId' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryBackendIpAddress.md index 904af6073a..3fe0afeeaf 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryIpAddress.md index cbff48a638..1e3a21083d 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getProvisionState.md b/content/reference/services/SoftLayer_Resource_Metadata/getProvisionState.md index 88d27a042e..fbb6b5a8d6 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getProvisionState.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getProvisionState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getProvisionState-example) {#getProvisionState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getProvisionState' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getRouter.md b/content/reference/services/SoftLayer_Resource_Metadata/getRouter.md index e9b170ff98..0a795fdadc 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getRouter.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getRouter-example) {#getRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getRouter' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getServiceResource.md b/content/reference/services/SoftLayer_Resource_Metadata/getServiceResource.md index 882f9d0e05..8766d1f7a5 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getServiceResource.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getServiceResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getServiceResource-example) {#getServiceResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getServiceResource' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getServiceResources.md b/content/reference/services/SoftLayer_Resource_Metadata/getServiceResources.md index 6024665735..2acabe1bd8 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getServiceResources.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getServiceResources.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getServiceResources-example) {#getServiceResources-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getServiceResources' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getTags.md b/content/reference/services/SoftLayer_Resource_Metadata/getTags.md index b402a8ca18..8209f12c9f 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getTags.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getTags-example) {#getTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getTags' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getUserMetadata.md b/content/reference/services/SoftLayer_Resource_Metadata/getUserMetadata.md index 05d6acb351..8d77093db7 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getUserMetadata.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getUserMetadata.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getUserMetadata-example) {#getUserMetadata-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getUserMetadata' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getVlanIds.md b/content/reference/services/SoftLayer_Resource_Metadata/getVlanIds.md index df31fcdd6b..b28480bf27 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getVlanIds.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getVlanIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getVlanIds-example) {#getVlanIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getVlanIds' ``` diff --git a/content/reference/services/SoftLayer_Resource_Metadata/getVlans.md b/content/reference/services/SoftLayer_Resource_Metadata/getVlans.md index 9843c53b98..39737a3c91 100644 --- a/content/reference/services/SoftLayer_Resource_Metadata/getVlans.md +++ b/content/reference/services/SoftLayer_Resource_Metadata/getVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Resource_Metadata" --- -### Curl Example +# [REST Example](#getVlans-example) {#getVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Resource_Metadata/{SoftLayer_Resource_MetadataID}/getVlans' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getActiveFlag.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getActiveFlag.md index 4cfc5da742..c54bab5aaa 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getActiveFlag.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getActiveFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getActiveFlag-example) {#getActiveFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/{SoftLayer_Sales_Presale_EventID}/getActiveFlag' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getAllObjects.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getAllObjects.md index 4d702eceaa..19860102bc 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getAllObjects.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getExpiredFlag.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getExpiredFlag.md index 4c93087760..d966964304 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getExpiredFlag.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getExpiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getExpiredFlag-example) {#getExpiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/{SoftLayer_Sales_Presale_EventID}/getExpiredFlag' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getItem.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getItem.md index 569bebe283..05d0d33041 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getItem.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getItem-example) {#getItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/{SoftLayer_Sales_Presale_EventID}/getItem' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getLocation.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getLocation.md index 5394658bc6..da29c8606d 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getLocation.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/{SoftLayer_Sales_Presale_EventID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getObject.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getObject.md index 55d2508266..edf8cf457f 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getObject.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/{SoftLayer_Sales_Presale_EventID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Sales_Presale_Event/getOrders.md b/content/reference/services/SoftLayer_Sales_Presale_Event/getOrders.md index 4200b91329..e58ce4a18d 100644 --- a/content/reference/services/SoftLayer_Sales_Presale_Event/getOrders.md +++ b/content/reference/services/SoftLayer_Sales_Presale_Event/getOrders.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Sales_Presale_Event" --- -### Curl Example +# [REST Example](#getOrders-example) {#getOrders-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Sales_Presale_Event/{SoftLayer_Sales_Presale_EventID}/getOrders' ``` diff --git a/content/reference/services/SoftLayer_Search/advancedSearch.md b/content/reference/services/SoftLayer_Search/advancedSearch.md index ab7edb61d8..469f067334 100644 --- a/content/reference/services/SoftLayer_Search/advancedSearch.md +++ b/content/reference/services/SoftLayer_Search/advancedSearch.md @@ -35,8 +35,8 @@ layout: "method" mainService : "SoftLayer_Search" --- -### Curl Example +# [REST Example](#advancedSearch-example) {#advancedSearch-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Search/advancedSearch' ``` diff --git a/content/reference/services/SoftLayer_Search/getObjectTypes.md b/content/reference/services/SoftLayer_Search/getObjectTypes.md index f4ec588761..2120a47b68 100644 --- a/content/reference/services/SoftLayer_Search/getObjectTypes.md +++ b/content/reference/services/SoftLayer_Search/getObjectTypes.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Search" --- -### Curl Example +# [REST Example](#getObjectTypes-example) {#getObjectTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Search/getObjectTypes' ``` diff --git a/content/reference/services/SoftLayer_Search/search.md b/content/reference/services/SoftLayer_Search/search.md index 32d8a0677d..b50734b630 100644 --- a/content/reference/services/SoftLayer_Search/search.md +++ b/content/reference/services/SoftLayer_Search/search.md @@ -37,8 +37,8 @@ layout: "method" mainService : "SoftLayer_Search" --- -### Curl Example +# [REST Example](#search-example) {#search-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Search/search' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/createObject.md b/content/reference/services/SoftLayer_Security_Certificate/createObject.md index 227ae467ed..955dda1d8d 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/createObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate/createObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Certificate]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Certificate]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/createObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/deleteObject.md b/content/reference/services/SoftLayer_Security_Certificate/deleteObject.md index 0611e20fb8..e994a40b9a 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/deleteObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/editObject.md b/content/reference/services/SoftLayer_Security_Certificate/editObject.md index 18274ad80f..8f6de3efcf 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/editObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Certificate]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Certificate]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/findByCommonName.md b/content/reference/services/SoftLayer_Security_Certificate/findByCommonName.md index c0b5639234..811c7f1575 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/findByCommonName.md +++ b/content/reference/services/SoftLayer_Security_Certificate/findByCommonName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#findByCommonName-example) {#findByCommonName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/findByCommonName' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/getAssociatedServiceCount.md b/content/reference/services/SoftLayer_Security_Certificate/getAssociatedServiceCount.md index 04ee16f493..6aeb4b9a66 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/getAssociatedServiceCount.md +++ b/content/reference/services/SoftLayer_Security_Certificate/getAssociatedServiceCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#getAssociatedServiceCount-example) {#getAssociatedServiceCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/getAssociatedServiceCount' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/getLbaasListeners.md b/content/reference/services/SoftLayer_Security_Certificate/getLbaasListeners.md index 81374fed8c..4d8e757732 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/getLbaasListeners.md +++ b/content/reference/services/SoftLayer_Security_Certificate/getLbaasListeners.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#getLbaasListeners-example) {#getLbaasListeners-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/getLbaasListeners' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/getLoadBalancerVirtualIpAddresses.md b/content/reference/services/SoftLayer_Security_Certificate/getLoadBalancerVirtualIpAddresses.md index bacf99622f..3b8d6275d0 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/getLoadBalancerVirtualIpAddresses.md +++ b/content/reference/services/SoftLayer_Security_Certificate/getLoadBalancerVirtualIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#getLoadBalancerVirtualIpAddresses-example) {#getLoadBalancerVirtualIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/getLoadBalancerVirtualIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/getObject.md b/content/reference/services/SoftLayer_Security_Certificate/getObject.md index 6dcf323543..528cf8acd2 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/getObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate/getPemFormat.md b/content/reference/services/SoftLayer_Security_Certificate/getPemFormat.md index b6acacd686..4eaf6f39bf 100644 --- a/content/reference/services/SoftLayer_Security_Certificate/getPemFormat.md +++ b/content/reference/services/SoftLayer_Security_Certificate/getPemFormat.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate" --- -### Curl Example +# [REST Example](#getPemFormat-example) {#getPemFormat-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate/{SoftLayer_Security_CertificateID}/getPemFormat' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/cancelSslOrder.md b/content/reference/services/SoftLayer_Security_Certificate_Request/cancelSslOrder.md index e01e47dd35..eb6e922836 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/cancelSslOrder.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/cancelSslOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#cancelSslOrder-example) {#cancelSslOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/cancelSslOrder' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getAccount.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getAccount.md index 28a78315f3..ebbfa24a54 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getAccount.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailDomains.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailDomains.md index 1b16e702c7..727bcc9fbd 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailDomains.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailDomains.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getAdministratorEmailDomains-example) {#getAdministratorEmailDomains-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/getAdministratorEmailDomains' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailPrefixes.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailPrefixes.md index 0e815a6718..241592c1c9 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailPrefixes.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getAdministratorEmailPrefixes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getAdministratorEmailPrefixes-example) {#getAdministratorEmailPrefixes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/getAdministratorEmailPrefixes' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getObject.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getObject.md index 202b45a899..44ab5367e7 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getOrder.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getOrder.md index 51f183e3af..1d2d5c20e3 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getOrder.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getOrder-example) {#getOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/getOrder' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getOrderItem.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getOrderItem.md index 015dc674dc..d2db284ae4 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getOrderItem.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getOrderItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getOrderItem-example) {#getOrderItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/getOrderItem' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getPreviousOrderData.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getPreviousOrderData.md index d9f2602666..942523e84a 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getPreviousOrderData.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getPreviousOrderData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getPreviousOrderData-example) {#getPreviousOrderData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/getPreviousOrderData' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getSslCertificateRequests.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getSslCertificateRequests.md index 9d5dc6720b..07572ac165 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getSslCertificateRequests.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getSslCertificateRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getSslCertificateRequests-example) {#getSslCertificateRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/getSslCertificateRequests' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/getStatus.md b/content/reference/services/SoftLayer_Security_Certificate_Request/getStatus.md index 594e7a62b9..a0de1fbc0e 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/getStatus.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/resendEmail.md b/content/reference/services/SoftLayer_Security_Certificate_Request/resendEmail.md index 4697282809..552f226bd2 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/resendEmail.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/resendEmail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#resendEmail-example) {#resendEmail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/{SoftLayer_Security_Certificate_RequestID}/resendEmail' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request/validateCsr.md b/content/reference/services/SoftLayer_Security_Certificate_Request/validateCsr.md index 4acdb5d115..f9879c1c04 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request/validateCsr.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request/validateCsr.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request" --- -### Curl Example +# [REST Example](#validateCsr-example) {#validateCsr-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request/validateCsr' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getAllObjects.md b/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getAllObjects.md index 73626d234d..a63e2cfad2 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getAllObjects.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request_ServerType" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request_ServerType/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getObject.md b/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getObject.md index ab3ddee08e..aa6cc00aaf 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request_ServerType/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request_ServerType" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request_ServerType/{SoftLayer_Security_Certificate_Request_ServerTypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getObject.md b/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getObject.md index 913000bb20..1b410d0e18 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getObject.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request_Status/{SoftLayer_Security_Certificate_Request_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getSslRequestStatuses.md b/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getSslRequestStatuses.md index 5ee8cc5628..238fa38875 100644 --- a/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getSslRequestStatuses.md +++ b/content/reference/services/SoftLayer_Security_Certificate_Request_Status/getSslRequestStatuses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Certificate_Request_Status" --- -### Curl Example +# [REST Example](#getSslRequestStatuses-example) {#getSslRequestStatuses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Certificate_Request_Status/getSslRequestStatuses' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/createObject.md b/content/reference/services/SoftLayer_Security_Ssh_Key/createObject.md index cafe8455ac..1535bfd806 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/createObject.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Ssh_Key]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Ssh_Key]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/createObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/deleteObject.md b/content/reference/services/SoftLayer_Security_Ssh_Key/deleteObject.md index e2b8fbd2b8..a1a8997e60 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/deleteObject.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/{SoftLayer_Security_Ssh_KeyID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/editObject.md b/content/reference/services/SoftLayer_Security_Ssh_Key/editObject.md index f4080db492..0530d1ff0a 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/editObject.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Ssh_Key]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Security_Ssh_Key]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/{SoftLayer_Security_Ssh_KeyID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/getAccount.md b/content/reference/services/SoftLayer_Security_Ssh_Key/getAccount.md index b99d3a696a..5cb5a7d914 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/getAccount.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/{SoftLayer_Security_Ssh_KeyID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/getBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Security_Ssh_Key/getBlockDeviceTemplateGroups.md index c86f31d837..205ec4c2dd 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/getBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/getBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#getBlockDeviceTemplateGroups-example) {#getBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/{SoftLayer_Security_Ssh_KeyID}/getBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/getObject.md b/content/reference/services/SoftLayer_Security_Ssh_Key/getObject.md index 8e7f5453fd..43b979e695 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/getObject.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/{SoftLayer_Security_Ssh_KeyID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Security_Ssh_Key/getSoftwarePasswords.md b/content/reference/services/SoftLayer_Security_Ssh_Key/getSoftwarePasswords.md index ffba539746..8c75b6ad8d 100644 --- a/content/reference/services/SoftLayer_Security_Ssh_Key/getSoftwarePasswords.md +++ b/content/reference/services/SoftLayer_Security_Ssh_Key/getSoftwarePasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Security_Ssh_Key" --- -### Curl Example +# [REST Example](#getSoftwarePasswords-example) {#getSoftwarePasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Security_Ssh_Key/{SoftLayer_Security_Ssh_KeyID}/getSoftwarePasswords' ``` diff --git a/content/reference/services/SoftLayer_Software_AccountLicense/getAccount.md b/content/reference/services/SoftLayer_Software_AccountLicense/getAccount.md index 46ded17991..eb1e2980df 100644 --- a/content/reference/services/SoftLayer_Software_AccountLicense/getAccount.md +++ b/content/reference/services/SoftLayer_Software_AccountLicense/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_AccountLicense" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_AccountLicense/{SoftLayer_Software_AccountLicenseID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Software_AccountLicense/getAllObjects.md b/content/reference/services/SoftLayer_Software_AccountLicense/getAllObjects.md index 55d8e7e1bb..62731ab81c 100644 --- a/content/reference/services/SoftLayer_Software_AccountLicense/getAllObjects.md +++ b/content/reference/services/SoftLayer_Software_AccountLicense/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_AccountLicense" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_AccountLicense/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Software_AccountLicense/getBillingItem.md b/content/reference/services/SoftLayer_Software_AccountLicense/getBillingItem.md index c5422a15cd..3e85fa8df2 100644 --- a/content/reference/services/SoftLayer_Software_AccountLicense/getBillingItem.md +++ b/content/reference/services/SoftLayer_Software_AccountLicense/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_AccountLicense" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_AccountLicense/{SoftLayer_Software_AccountLicenseID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Software_AccountLicense/getObject.md b/content/reference/services/SoftLayer_Software_AccountLicense/getObject.md index f30bbf7d82..0a60a5be29 100644 --- a/content/reference/services/SoftLayer_Software_AccountLicense/getObject.md +++ b/content/reference/services/SoftLayer_Software_AccountLicense/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_AccountLicense" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_AccountLicense/{SoftLayer_Software_AccountLicenseID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_AccountLicense/getSoftwareDescription.md b/content/reference/services/SoftLayer_Software_AccountLicense/getSoftwareDescription.md index 602a00c17f..37dd3c0075 100644 --- a/content/reference/services/SoftLayer_Software_AccountLicense/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_AccountLicense/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_AccountLicense" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_AccountLicense/{SoftLayer_Software_AccountLicenseID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getAverageInstallationDuration.md b/content/reference/services/SoftLayer_Software_Component/getAverageInstallationDuration.md index cd1ee65459..36afb73841 100644 --- a/content/reference/services/SoftLayer_Software_Component/getAverageInstallationDuration.md +++ b/content/reference/services/SoftLayer_Software_Component/getAverageInstallationDuration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getAverageInstallationDuration-example) {#getAverageInstallationDuration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getAverageInstallationDuration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getBillingItem.md b/content/reference/services/SoftLayer_Software_Component/getBillingItem.md index 62280ad12d..16fac67e73 100644 --- a/content/reference/services/SoftLayer_Software_Component/getBillingItem.md +++ b/content/reference/services/SoftLayer_Software_Component/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getHardware.md b/content/reference/services/SoftLayer_Software_Component/getHardware.md index 6667c56c94..1aecd74817 100644 --- a/content/reference/services/SoftLayer_Software_Component/getHardware.md +++ b/content/reference/services/SoftLayer_Software_Component/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getLicenseFile.md b/content/reference/services/SoftLayer_Software_Component/getLicenseFile.md index 649c28bc6c..358da85dbd 100644 --- a/content/reference/services/SoftLayer_Software_Component/getLicenseFile.md +++ b/content/reference/services/SoftLayer_Software_Component/getLicenseFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getLicenseFile-example) {#getLicenseFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getLicenseFile' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getObject.md b/content/reference/services/SoftLayer_Software_Component/getObject.md index 260ec4d562..ef464babc5 100644 --- a/content/reference/services/SoftLayer_Software_Component/getObject.md +++ b/content/reference/services/SoftLayer_Software_Component/getObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getPasswordHistory.md b/content/reference/services/SoftLayer_Software_Component/getPasswordHistory.md index ecbd734320..37ae4bc71d 100644 --- a/content/reference/services/SoftLayer_Software_Component/getPasswordHistory.md +++ b/content/reference/services/SoftLayer_Software_Component/getPasswordHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getPasswordHistory-example) {#getPasswordHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getPasswordHistory' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getPasswords.md b/content/reference/services/SoftLayer_Software_Component/getPasswords.md index 681017c597..488d9f8049 100644 --- a/content/reference/services/SoftLayer_Software_Component/getPasswords.md +++ b/content/reference/services/SoftLayer_Software_Component/getPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getPasswords-example) {#getPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getPasswords' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getSoftwareDescription.md b/content/reference/services/SoftLayer_Software_Component/getSoftwareDescription.md index 28eb5056ee..68dc8e2647 100644 --- a/content/reference/services/SoftLayer_Software_Component/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_Component/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getSoftwareLicense.md b/content/reference/services/SoftLayer_Software_Component/getSoftwareLicense.md index 8f9e23c929..97b83611db 100644 --- a/content/reference/services/SoftLayer_Software_Component/getSoftwareLicense.md +++ b/content/reference/services/SoftLayer_Software_Component/getSoftwareLicense.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getSoftwareLicense-example) {#getSoftwareLicense-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getSoftwareLicense' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getVendorSetUpConfiguration.md b/content/reference/services/SoftLayer_Software_Component/getVendorSetUpConfiguration.md index e2977e5239..9f61b132fb 100644 --- a/content/reference/services/SoftLayer_Software_Component/getVendorSetUpConfiguration.md +++ b/content/reference/services/SoftLayer_Software_Component/getVendorSetUpConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getVendorSetUpConfiguration-example) {#getVendorSetUpConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getVendorSetUpConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component/getVirtualGuest.md b/content/reference/services/SoftLayer_Software_Component/getVirtualGuest.md index 2984a5a942..dfb139035a 100644 --- a/content/reference/services/SoftLayer_Software_Component/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Software_Component/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component/{SoftLayer_Software_ComponentID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getAverageInstallationDuration.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getAverageInstallationDuration.md index d86ef53c96..4871a11931 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getAverageInstallationDuration.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getAverageInstallationDuration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getAverageInstallationDuration-example) {#getAverageInstallationDuration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getAverageInstallationDuration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getBillingItem.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getBillingItem.md index 3c7da9bfa6..83501fb536 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getBillingItem.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getHardware.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getHardware.md index 7aeed4672d..094fce7ea9 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getHardware.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getLicenseFile.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getLicenseFile.md index 2058d83b4f..ab2b02f4e5 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getLicenseFile.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getLicenseFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getLicenseFile-example) {#getLicenseFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getLicenseFile' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getObject.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getObject.md index d494a55885..baae2318a3 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getObject.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswordHistory.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswordHistory.md index c46619c976..ac2a8993ed 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswordHistory.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswordHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getPasswordHistory-example) {#getPasswordHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getPasswordHistory' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswords.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswords.md index 3d726bb7f9..19ab66054a 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswords.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getPasswords-example) {#getPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getPasswords' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareDescription.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareDescription.md index d971b622ed..f1ae52ec9e 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareLicense.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareLicense.md index a51ad5d957..7e168b7356 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareLicense.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getSoftwareLicense.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getSoftwareLicense-example) {#getSoftwareLicense-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getSoftwareLicense' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVendorSetUpConfiguration.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVendorSetUpConfiguration.md index 907769c236..5eb1064deb 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVendorSetUpConfiguration.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVendorSetUpConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getVendorSetUpConfiguration-example) {#getVendorSetUpConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getVendorSetUpConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVirtualGuest.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVirtualGuest.md index b1b0a90153..ca37d03fab 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/updateAntivirusSpywarePolicy.md b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/updateAntivirusSpywarePolicy.md index 25c144efba..e6c2d39f84 100644 --- a/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/updateAntivirusSpywarePolicy.md +++ b/content/reference/services/SoftLayer_Software_Component_AntivirusSpyware/updateAntivirusSpywarePolicy.md @@ -18,8 +18,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_AntivirusSpyware" --- -### Curl Example +# [REST Example](#updateAntivirusSpywarePolicy-example) {#updateAntivirusSpywarePolicy-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_AntivirusSpyware/{SoftLayer_Software_Component_AntivirusSpywareID}/updateAntivirusSpywarePolicy' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getAverageInstallationDuration.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getAverageInstallationDuration.md index 30643ea7b9..926669109a 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getAverageInstallationDuration.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getAverageInstallationDuration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getAverageInstallationDuration-example) {#getAverageInstallationDuration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getAverageInstallationDuration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getBillingItem.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getBillingItem.md index 12e87abcfd..c113f43d23 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getBillingItem.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getCurrentHostIpsPolicies.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getCurrentHostIpsPolicies.md index 280446a99b..aeadd98c50 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getCurrentHostIpsPolicies.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getCurrentHostIpsPolicies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getCurrentHostIpsPolicies-example) {#getCurrentHostIpsPolicies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getCurrentHostIpsPolicies' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getHardware.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getHardware.md index db13c2a6c1..46f9470670 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getHardware.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getLicenseFile.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getLicenseFile.md index f4ee77f752..507c695536 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getLicenseFile.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getLicenseFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getLicenseFile-example) {#getLicenseFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getLicenseFile' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getObject.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getObject.md index 47ec07823c..9650caa826 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getObject.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswordHistory.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswordHistory.md index a682f8f7db..13ab1aa2b1 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswordHistory.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswordHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getPasswordHistory-example) {#getPasswordHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getPasswordHistory' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswords.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswords.md index 16eeb14f3e..90c532663a 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswords.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getPasswords-example) {#getPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getPasswords' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareDescription.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareDescription.md index fa4779511b..1695876382 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareLicense.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareLicense.md index 1f7626af03..77656c9155 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareLicense.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getSoftwareLicense.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getSoftwareLicense-example) {#getSoftwareLicense-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getSoftwareLicense' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getVendorSetUpConfiguration.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getVendorSetUpConfiguration.md index 702f2bed02..5881e0601f 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getVendorSetUpConfiguration.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getVendorSetUpConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getVendorSetUpConfiguration-example) {#getVendorSetUpConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getVendorSetUpConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/getVirtualGuest.md b/content/reference/services/SoftLayer_Software_Component_HostIps/getVirtualGuest.md index 580e062289..365d081937 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_HostIps/updateHipsPolicies.md b/content/reference/services/SoftLayer_Software_Component_HostIps/updateHipsPolicies.md index 0f598642fd..fcdd54d4df 100644 --- a/content/reference/services/SoftLayer_Software_Component_HostIps/updateHipsPolicies.md +++ b/content/reference/services/SoftLayer_Software_Component_HostIps/updateHipsPolicies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_HostIps" --- -### Curl Example +# [REST Example](#updateHipsPolicies-example) {#updateHipsPolicies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_HostIps/{SoftLayer_Software_Component_HostIpsID}/updateHipsPolicies' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/createObject.md b/content/reference/services/SoftLayer_Software_Component_Password/createObject.md index 4602849d47..1b87aa7734 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/createObject.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/createObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/createObjects.md b/content/reference/services/SoftLayer_Software_Component_Password/createObjects.md index cc109391d8..5dbecb40f8 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/createObjects.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/deleteObject.md b/content/reference/services/SoftLayer_Software_Component_Password/deleteObject.md index e061212006..9af3900a45 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/deleteObject.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/{SoftLayer_Software_Component_PasswordID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/deleteObjects.md b/content/reference/services/SoftLayer_Software_Component_Password/deleteObjects.md index 678ba87094..6690c7ab53 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/deleteObjects.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/editObject.md b/content/reference/services/SoftLayer_Software_Component_Password/editObject.md index 637583dd51..f28e80f283 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/editObject.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/{SoftLayer_Software_Component_PasswordID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/editObjects.md b/content/reference/services/SoftLayer_Software_Component_Password/editObjects.md index 9e60c115bd..1eae7c24a4 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/editObjects.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Component_Password]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/editObjects' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/getObject.md b/content/reference/services/SoftLayer_Software_Component_Password/getObject.md index 56cbe58639..cb4ca0ab26 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/getObject.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/{SoftLayer_Software_Component_PasswordID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/getSoftware.md b/content/reference/services/SoftLayer_Software_Component_Password/getSoftware.md index 98e2f23332..944ef7641d 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/getSoftware.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/getSoftware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#getSoftware-example) {#getSoftware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/{SoftLayer_Software_Component_PasswordID}/getSoftware' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Password/getSshKeys.md b/content/reference/services/SoftLayer_Software_Component_Password/getSshKeys.md index f8c0fbc42f..542e97a851 100644 --- a/content/reference/services/SoftLayer_Software_Component_Password/getSshKeys.md +++ b/content/reference/services/SoftLayer_Software_Component_Password/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Password" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Password/{SoftLayer_Software_Component_PasswordID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getAverageInstallationDuration.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getAverageInstallationDuration.md index b0405d1cfe..b9413c8ed4 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getAverageInstallationDuration.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getAverageInstallationDuration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getAverageInstallationDuration-example) {#getAverageInstallationDuration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getAverageInstallationDuration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getBillingItem.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getBillingItem.md index 4b0efbcf36..6a581377d9 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getBillingItem.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getCurrentHostIpsPolicies.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getCurrentHostIpsPolicies.md index afd2ea17a9..03235d9397 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getCurrentHostIpsPolicies.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getCurrentHostIpsPolicies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getCurrentHostIpsPolicies-example) {#getCurrentHostIpsPolicies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getCurrentHostIpsPolicies' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getHardware.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getHardware.md index eb3efef839..c09de30262 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getHardware.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getLicenseFile.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getLicenseFile.md index 5245cacfb1..ae4f551f8c 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getLicenseFile.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getLicenseFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getLicenseFile-example) {#getLicenseFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getLicenseFile' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getObject.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getObject.md index 2acc602364..c63097a0ac 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getObject.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswordHistory.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswordHistory.md index ec8255f0f3..c7b325eae9 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswordHistory.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswordHistory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getPasswordHistory-example) {#getPasswordHistory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getPasswordHistory' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswords.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswords.md index dabd07d0b6..b205636e58 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswords.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getPasswords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getPasswords-example) {#getPasswords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getPasswords' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareDescription.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareDescription.md index 26cedf9b0d..99c978f6c0 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareLicense.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareLicense.md index b9be4242cf..8170269b47 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareLicense.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getSoftwareLicense.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getSoftwareLicense-example) {#getSoftwareLicense-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getSoftwareLicense' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getVendorSetUpConfiguration.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getVendorSetUpConfiguration.md index c49f63f03c..21605608c7 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getVendorSetUpConfiguration.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getVendorSetUpConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getVendorSetUpConfiguration-example) {#getVendorSetUpConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getVendorSetUpConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/getVirtualGuest.md b/content/reference/services/SoftLayer_Software_Component_Trellix/getVirtualGuest.md index 19e4d79a63..d37b2f9bea 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/getVirtualGuest.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/getVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#getVirtualGuest-example) {#getVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/getVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/updateAntivirusSpywarePolicy.md b/content/reference/services/SoftLayer_Software_Component_Trellix/updateAntivirusSpywarePolicy.md index ea824c2b35..42888c1695 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/updateAntivirusSpywarePolicy.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/updateAntivirusSpywarePolicy.md @@ -18,8 +18,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#updateAntivirusSpywarePolicy-example) {#updateAntivirusSpywarePolicy-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/updateAntivirusSpywarePolicy' ``` diff --git a/content/reference/services/SoftLayer_Software_Component_Trellix/updateHipsPolicies.md b/content/reference/services/SoftLayer_Software_Component_Trellix/updateHipsPolicies.md index 8f0417de69..9e91a5fabd 100644 --- a/content/reference/services/SoftLayer_Software_Component_Trellix/updateHipsPolicies.md +++ b/content/reference/services/SoftLayer_Software_Component_Trellix/updateHipsPolicies.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Component_Trellix" --- -### Curl Example +# [REST Example](#updateHipsPolicies-example) {#updateHipsPolicies-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Component_Trellix/{SoftLayer_Software_Component_TrellixID}/updateHipsPolicies' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getAllObjects.md b/content/reference/services/SoftLayer_Software_Description/getAllObjects.md index 2c735953c4..507a8b8c11 100644 --- a/content/reference/services/SoftLayer_Software_Description/getAllObjects.md +++ b/content/reference/services/SoftLayer_Software_Description/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getAttributes.md b/content/reference/services/SoftLayer_Software_Description/getAttributes.md index 53b05426d8..c19fbcec9a 100644 --- a/content/reference/services/SoftLayer_Software_Description/getAttributes.md +++ b/content/reference/services/SoftLayer_Software_Description/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getAverageInstallationDuration.md b/content/reference/services/SoftLayer_Software_Description/getAverageInstallationDuration.md index b4fb512bfa..32293fa536 100644 --- a/content/reference/services/SoftLayer_Software_Description/getAverageInstallationDuration.md +++ b/content/reference/services/SoftLayer_Software_Description/getAverageInstallationDuration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getAverageInstallationDuration-example) {#getAverageInstallationDuration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getAverageInstallationDuration' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getCompatibleSoftwareDescriptions.md b/content/reference/services/SoftLayer_Software_Description/getCompatibleSoftwareDescriptions.md index 4aedfb92ad..79d2e15824 100644 --- a/content/reference/services/SoftLayer_Software_Description/getCompatibleSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Software_Description/getCompatibleSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getCompatibleSoftwareDescriptions-example) {#getCompatibleSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getCompatibleSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getCustomerOwnedLicenseDescriptions.md b/content/reference/services/SoftLayer_Software_Description/getCustomerOwnedLicenseDescriptions.md index 26f957db00..47e2c80ca9 100644 --- a/content/reference/services/SoftLayer_Software_Description/getCustomerOwnedLicenseDescriptions.md +++ b/content/reference/services/SoftLayer_Software_Description/getCustomerOwnedLicenseDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getCustomerOwnedLicenseDescriptions-example) {#getCustomerOwnedLicenseDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/getCustomerOwnedLicenseDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getFeatures.md b/content/reference/services/SoftLayer_Software_Description/getFeatures.md index a0c5552e73..6db18e7a08 100644 --- a/content/reference/services/SoftLayer_Software_Description/getFeatures.md +++ b/content/reference/services/SoftLayer_Software_Description/getFeatures.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getFeatures-example) {#getFeatures-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getFeatures' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getLatestVersion.md b/content/reference/services/SoftLayer_Software_Description/getLatestVersion.md index 3930badd72..b5e80a7018 100644 --- a/content/reference/services/SoftLayer_Software_Description/getLatestVersion.md +++ b/content/reference/services/SoftLayer_Software_Description/getLatestVersion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getLatestVersion-example) {#getLatestVersion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getLatestVersion' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getObject.md b/content/reference/services/SoftLayer_Software_Description/getObject.md index fdfb36fa32..3d4750b157 100644 --- a/content/reference/services/SoftLayer_Software_Description/getObject.md +++ b/content/reference/services/SoftLayer_Software_Description/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getProductItems.md b/content/reference/services/SoftLayer_Software_Description/getProductItems.md index a5cf379a8d..d19adf0140 100644 --- a/content/reference/services/SoftLayer_Software_Description/getProductItems.md +++ b/content/reference/services/SoftLayer_Software_Description/getProductItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getProductItems-example) {#getProductItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getProductItems' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getProvisionTransactionGroup.md b/content/reference/services/SoftLayer_Software_Description/getProvisionTransactionGroup.md index 097eac9902..7ee7f22097 100644 --- a/content/reference/services/SoftLayer_Software_Description/getProvisionTransactionGroup.md +++ b/content/reference/services/SoftLayer_Software_Description/getProvisionTransactionGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getProvisionTransactionGroup-example) {#getProvisionTransactionGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getProvisionTransactionGroup' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getReloadTransactionGroup.md b/content/reference/services/SoftLayer_Software_Description/getReloadTransactionGroup.md index 29160af365..82b8eb2091 100644 --- a/content/reference/services/SoftLayer_Software_Description/getReloadTransactionGroup.md +++ b/content/reference/services/SoftLayer_Software_Description/getReloadTransactionGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getReloadTransactionGroup-example) {#getReloadTransactionGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getReloadTransactionGroup' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getRequiredUser.md b/content/reference/services/SoftLayer_Software_Description/getRequiredUser.md index 1928259c3a..d21fc13cc8 100644 --- a/content/reference/services/SoftLayer_Software_Description/getRequiredUser.md +++ b/content/reference/services/SoftLayer_Software_Description/getRequiredUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getRequiredUser-example) {#getRequiredUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getRequiredUser' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getSoftwareLicenses.md b/content/reference/services/SoftLayer_Software_Description/getSoftwareLicenses.md index 8a7d62e785..1511162ad9 100644 --- a/content/reference/services/SoftLayer_Software_Description/getSoftwareLicenses.md +++ b/content/reference/services/SoftLayer_Software_Description/getSoftwareLicenses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getSoftwareLicenses-example) {#getSoftwareLicenses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getSoftwareLicenses' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getUpgradeSoftwareDescription.md b/content/reference/services/SoftLayer_Software_Description/getUpgradeSoftwareDescription.md index 94408dc877..cae87f4a11 100644 --- a/content/reference/services/SoftLayer_Software_Description/getUpgradeSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_Description/getUpgradeSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getUpgradeSoftwareDescription-example) {#getUpgradeSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getUpgradeSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getUpgradeSwDesc.md b/content/reference/services/SoftLayer_Software_Description/getUpgradeSwDesc.md index a9fa9e4b36..38870e3cb6 100644 --- a/content/reference/services/SoftLayer_Software_Description/getUpgradeSwDesc.md +++ b/content/reference/services/SoftLayer_Software_Description/getUpgradeSwDesc.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getUpgradeSwDesc-example) {#getUpgradeSwDesc-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getUpgradeSwDesc' ``` diff --git a/content/reference/services/SoftLayer_Software_Description/getValidFilesystemTypes.md b/content/reference/services/SoftLayer_Software_Description/getValidFilesystemTypes.md index 7ed652ac08..057f8745b9 100644 --- a/content/reference/services/SoftLayer_Software_Description/getValidFilesystemTypes.md +++ b/content/reference/services/SoftLayer_Software_Description/getValidFilesystemTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_Description" --- -### Curl Example +# [REST Example](#getValidFilesystemTypes-example) {#getValidFilesystemTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_Description/{SoftLayer_Software_DescriptionID}/getValidFilesystemTypes' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getAccount.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getAccount.md index 2818a3c624..950cfde800 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getAccount.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getBillingItem.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getBillingItem.md index 4450dcce81..9d8118dd5e 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getBillingItem.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getHostHardware.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getHostHardware.md index b97cc25d72..7894eaf25f 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getHostHardware.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getHostHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getHostHardware-example) {#getHostHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getHostHardware' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getIpAddressRecord.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getIpAddressRecord.md index 9dfaece431..0fc5787e5f 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getIpAddressRecord.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getIpAddressRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getIpAddressRecord-example) {#getIpAddressRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getIpAddressRecord' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getLicenseFile.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getLicenseFile.md index cd6b1657d9..17581e94b6 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getLicenseFile.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getLicenseFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getLicenseFile-example) {#getLicenseFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getLicenseFile' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getObject.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getObject.md index 3c5ec3a2d3..b49ce53311 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getObject.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getSoftwareDescription.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getSoftwareDescription.md index f58914dd41..949c830ebd 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getSoftwareDescription.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getSoftwareDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getSoftwareDescription-example) {#getSoftwareDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getSoftwareDescription' ``` diff --git a/content/reference/services/SoftLayer_Software_VirtualLicense/getSubnet.md b/content/reference/services/SoftLayer_Software_VirtualLicense/getSubnet.md index 41ed315908..ab454d80ef 100644 --- a/content/reference/services/SoftLayer_Software_VirtualLicense/getSubnet.md +++ b/content/reference/services/SoftLayer_Software_VirtualLicense/getSubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Software_VirtualLicense" --- -### Curl Example +# [REST Example](#getSubnet-example) {#getSubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Software_VirtualLicense/{SoftLayer_Software_VirtualLicenseID}/getSubnet' ``` diff --git a/content/reference/services/SoftLayer_Survey/getActiveSurveyByType.md b/content/reference/services/SoftLayer_Survey/getActiveSurveyByType.md index 54133c29a2..959bd8f64f 100644 --- a/content/reference/services/SoftLayer_Survey/getActiveSurveyByType.md +++ b/content/reference/services/SoftLayer_Survey/getActiveSurveyByType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Survey" --- -### Curl Example +# [REST Example](#getActiveSurveyByType-example) {#getActiveSurveyByType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Survey/getActiveSurveyByType' ``` diff --git a/content/reference/services/SoftLayer_Survey/getObject.md b/content/reference/services/SoftLayer_Survey/getObject.md index acc550c3e8..3a5e6d14da 100644 --- a/content/reference/services/SoftLayer_Survey/getObject.md +++ b/content/reference/services/SoftLayer_Survey/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Survey" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Survey/{SoftLayer_SurveyID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Survey/getQuestions.md b/content/reference/services/SoftLayer_Survey/getQuestions.md index d08e585ed1..1f0f7332bf 100644 --- a/content/reference/services/SoftLayer_Survey/getQuestions.md +++ b/content/reference/services/SoftLayer_Survey/getQuestions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Survey" --- -### Curl Example +# [REST Example](#getQuestions-example) {#getQuestions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Survey/{SoftLayer_SurveyID}/getQuestions' ``` diff --git a/content/reference/services/SoftLayer_Survey/getStatus.md b/content/reference/services/SoftLayer_Survey/getStatus.md index c7c0802800..a33240dba3 100644 --- a/content/reference/services/SoftLayer_Survey/getStatus.md +++ b/content/reference/services/SoftLayer_Survey/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Survey" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Survey/{SoftLayer_SurveyID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Survey/getType.md b/content/reference/services/SoftLayer_Survey/getType.md index 81faef4cbb..05d2d9bd5a 100644 --- a/content/reference/services/SoftLayer_Survey/getType.md +++ b/content/reference/services/SoftLayer_Survey/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Survey" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Survey/{SoftLayer_SurveyID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Survey/takeSurvey.md b/content/reference/services/SoftLayer_Survey/takeSurvey.md index b6231d107c..bdfeffb9c3 100644 --- a/content/reference/services/SoftLayer_Survey/takeSurvey.md +++ b/content/reference/services/SoftLayer_Survey/takeSurvey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Survey" --- -### Curl Example +# [REST Example](#takeSurvey-example) {#takeSurvey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Survey_Response]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Survey_Response]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Survey/{SoftLayer_SurveyID}/takeSurvey' ``` diff --git a/content/reference/services/SoftLayer_Tag/autoComplete.md b/content/reference/services/SoftLayer_Tag/autoComplete.md index 20d445aee9..2307823ed4 100644 --- a/content/reference/services/SoftLayer_Tag/autoComplete.md +++ b/content/reference/services/SoftLayer_Tag/autoComplete.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#autoComplete-example) {#autoComplete-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/autoComplete' ``` diff --git a/content/reference/services/SoftLayer_Tag/deleteTag.md b/content/reference/services/SoftLayer_Tag/deleteTag.md index 22bccde745..72fb94be1f 100644 --- a/content/reference/services/SoftLayer_Tag/deleteTag.md +++ b/content/reference/services/SoftLayer_Tag/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Tag/getAccount.md b/content/reference/services/SoftLayer_Tag/getAccount.md index e992a35706..d24deacfab 100644 --- a/content/reference/services/SoftLayer_Tag/getAccount.md +++ b/content/reference/services/SoftLayer_Tag/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/{SoftLayer_TagID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Tag/getAllTagTypes.md b/content/reference/services/SoftLayer_Tag/getAllTagTypes.md index 5c77195cec..a21e75da8d 100644 --- a/content/reference/services/SoftLayer_Tag/getAllTagTypes.md +++ b/content/reference/services/SoftLayer_Tag/getAllTagTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getAllTagTypes-example) {#getAllTagTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/getAllTagTypes' ``` diff --git a/content/reference/services/SoftLayer_Tag/getAttachedTagsForCurrentUser.md b/content/reference/services/SoftLayer_Tag/getAttachedTagsForCurrentUser.md index 8bf441a5f8..00c4f783c6 100644 --- a/content/reference/services/SoftLayer_Tag/getAttachedTagsForCurrentUser.md +++ b/content/reference/services/SoftLayer_Tag/getAttachedTagsForCurrentUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getAttachedTagsForCurrentUser-example) {#getAttachedTagsForCurrentUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/getAttachedTagsForCurrentUser' ``` diff --git a/content/reference/services/SoftLayer_Tag/getObject.md b/content/reference/services/SoftLayer_Tag/getObject.md index a89f523985..7bb5d958b4 100644 --- a/content/reference/services/SoftLayer_Tag/getObject.md +++ b/content/reference/services/SoftLayer_Tag/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/{SoftLayer_TagID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Tag/getReferences.md b/content/reference/services/SoftLayer_Tag/getReferences.md index 4e86ec8096..971b4e3307 100644 --- a/content/reference/services/SoftLayer_Tag/getReferences.md +++ b/content/reference/services/SoftLayer_Tag/getReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getReferences-example) {#getReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/{SoftLayer_TagID}/getReferences' ``` diff --git a/content/reference/services/SoftLayer_Tag/getTagByTagName.md b/content/reference/services/SoftLayer_Tag/getTagByTagName.md index f0b4ce7478..b3a717b643 100644 --- a/content/reference/services/SoftLayer_Tag/getTagByTagName.md +++ b/content/reference/services/SoftLayer_Tag/getTagByTagName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getTagByTagName-example) {#getTagByTagName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/getTagByTagName' ``` diff --git a/content/reference/services/SoftLayer_Tag/getUnattachedTagsForCurrentUser.md b/content/reference/services/SoftLayer_Tag/getUnattachedTagsForCurrentUser.md index f6c957c2b2..8d00590b86 100644 --- a/content/reference/services/SoftLayer_Tag/getUnattachedTagsForCurrentUser.md +++ b/content/reference/services/SoftLayer_Tag/getUnattachedTagsForCurrentUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#getUnattachedTagsForCurrentUser-example) {#getUnattachedTagsForCurrentUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/getUnattachedTagsForCurrentUser' ``` diff --git a/content/reference/services/SoftLayer_Tag/setTags.md b/content/reference/services/SoftLayer_Tag/setTags.md index a6f8c019cc..8068264f2d 100644 --- a/content/reference/services/SoftLayer_Tag/setTags.md +++ b/content/reference/services/SoftLayer_Tag/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Tag" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Tag/setTags' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addAssignedAgent.md b/content/reference/services/SoftLayer_Ticket/addAssignedAgent.md index d53ed93f6f..5111609bcf 100644 --- a/content/reference/services/SoftLayer_Ticket/addAssignedAgent.md +++ b/content/reference/services/SoftLayer_Ticket/addAssignedAgent.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addAssignedAgent-example) {#addAssignedAgent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addAssignedAgent' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addAttachedAdditionalEmails.md b/content/reference/services/SoftLayer_Ticket/addAttachedAdditionalEmails.md index 4899b1032e..d40bbb02d4 100644 --- a/content/reference/services/SoftLayer_Ticket/addAttachedAdditionalEmails.md +++ b/content/reference/services/SoftLayer_Ticket/addAttachedAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addAttachedAdditionalEmails-example) {#addAttachedAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addAttachedAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addAttachedDedicatedHost.md b/content/reference/services/SoftLayer_Ticket/addAttachedDedicatedHost.md index f4b016c58a..cd76664048 100644 --- a/content/reference/services/SoftLayer_Ticket/addAttachedDedicatedHost.md +++ b/content/reference/services/SoftLayer_Ticket/addAttachedDedicatedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addAttachedDedicatedHost-example) {#addAttachedDedicatedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addAttachedDedicatedHost' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addAttachedFile.md b/content/reference/services/SoftLayer_Ticket/addAttachedFile.md index c0622ba26d..5c21a4b624 100644 --- a/content/reference/services/SoftLayer_Ticket/addAttachedFile.md +++ b/content/reference/services/SoftLayer_Ticket/addAttachedFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addAttachedFile-example) {#addAttachedFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Attachment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Utility_File_Attachment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addAttachedFile' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addAttachedHardware.md b/content/reference/services/SoftLayer_Ticket/addAttachedHardware.md index 5da08bbba3..5dc188db5e 100644 --- a/content/reference/services/SoftLayer_Ticket/addAttachedHardware.md +++ b/content/reference/services/SoftLayer_Ticket/addAttachedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addAttachedHardware-example) {#addAttachedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addAttachedHardware' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addAttachedVirtualGuest.md b/content/reference/services/SoftLayer_Ticket/addAttachedVirtualGuest.md index 2d3006553e..4236c4395f 100644 --- a/content/reference/services/SoftLayer_Ticket/addAttachedVirtualGuest.md +++ b/content/reference/services/SoftLayer_Ticket/addAttachedVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addAttachedVirtualGuest-example) {#addAttachedVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addAttachedVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addFinalComments.md b/content/reference/services/SoftLayer_Ticket/addFinalComments.md index a69c80858f..2a969b8c2f 100644 --- a/content/reference/services/SoftLayer_Ticket/addFinalComments.md +++ b/content/reference/services/SoftLayer_Ticket/addFinalComments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addFinalComments-example) {#addFinalComments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addFinalComments' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addScheduledAlert.md b/content/reference/services/SoftLayer_Ticket/addScheduledAlert.md index 3b167e87e2..cd6540b550 100644 --- a/content/reference/services/SoftLayer_Ticket/addScheduledAlert.md +++ b/content/reference/services/SoftLayer_Ticket/addScheduledAlert.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addScheduledAlert-example) {#addScheduledAlert-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addScheduledAlert' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addScheduledAutoClose.md b/content/reference/services/SoftLayer_Ticket/addScheduledAutoClose.md index f41058bfae..c605bfacbc 100644 --- a/content/reference/services/SoftLayer_Ticket/addScheduledAutoClose.md +++ b/content/reference/services/SoftLayer_Ticket/addScheduledAutoClose.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addScheduledAutoClose-example) {#addScheduledAutoClose-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addScheduledAutoClose' ``` diff --git a/content/reference/services/SoftLayer_Ticket/addUpdate.md b/content/reference/services/SoftLayer_Ticket/addUpdate.md index e90e94f37a..5892000f97 100644 --- a/content/reference/services/SoftLayer_Ticket/addUpdate.md +++ b/content/reference/services/SoftLayer_Ticket/addUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#addUpdate-example) {#addUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket_Update, SoftLayer_Container_Utility_File_Attachment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket_Update, SoftLayer_Container_Utility_File_Attachment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/addUpdate' ``` diff --git a/content/reference/services/SoftLayer_Ticket/createAdministrativeTicket.md b/content/reference/services/SoftLayer_Ticket/createAdministrativeTicket.md index 730e3da5bb..d9e0c1558b 100644 --- a/content/reference/services/SoftLayer_Ticket/createAdministrativeTicket.md +++ b/content/reference/services/SoftLayer_Ticket/createAdministrativeTicket.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#createAdministrativeTicket-example) {#createAdministrativeTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket, string, int, string, string, string, SoftLayer_Container_Utility_File_Attachment, enum]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket, string, int, string, string, string, SoftLayer_Container_Utility_File_Attachment, enum]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/createAdministrativeTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket/createCancelServerTicket.md b/content/reference/services/SoftLayer_Ticket/createCancelServerTicket.md index ac08c3f4d8..d43c43ca9e 100644 --- a/content/reference/services/SoftLayer_Ticket/createCancelServerTicket.md +++ b/content/reference/services/SoftLayer_Ticket/createCancelServerTicket.md @@ -28,8 +28,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#createCancelServerTicket-example) {#createCancelServerTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string, boolean, enum]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string, boolean, enum]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/createCancelServerTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket/createCancelServiceTicket.md b/content/reference/services/SoftLayer_Ticket/createCancelServiceTicket.md index 5d8a241f95..6e8752d0af 100644 --- a/content/reference/services/SoftLayer_Ticket/createCancelServiceTicket.md +++ b/content/reference/services/SoftLayer_Ticket/createCancelServiceTicket.md @@ -28,8 +28,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#createCancelServiceTicket-example) {#createCancelServiceTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string, enum]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string, enum]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/createCancelServiceTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket/createStandardTicket.md b/content/reference/services/SoftLayer_Ticket/createStandardTicket.md index edfecea631..02a8d165a8 100644 --- a/content/reference/services/SoftLayer_Ticket/createStandardTicket.md +++ b/content/reference/services/SoftLayer_Ticket/createStandardTicket.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#createStandardTicket-example) {#createStandardTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket, string, int, string, string, string, SoftLayer_Container_Utility_File_Attachment, enum]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket, string, int, string, string, string, SoftLayer_Container_Utility_File_Attachment, enum]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/createStandardTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket/createUpgradeTicket.md b/content/reference/services/SoftLayer_Ticket/createUpgradeTicket.md index 6da7171d97..c27f5244f3 100644 --- a/content/reference/services/SoftLayer_Ticket/createUpgradeTicket.md +++ b/content/reference/services/SoftLayer_Ticket/createUpgradeTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#createUpgradeTicket-example) {#createUpgradeTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string, string, enum, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string, string, string, enum, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/createUpgradeTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket/edit.md b/content/reference/services/SoftLayer_Ticket/edit.md index b600a51368..c40961f0c1 100644 --- a/content/reference/services/SoftLayer_Ticket/edit.md +++ b/content/reference/services/SoftLayer_Ticket/edit.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#edit-example) {#edit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket, string, SoftLayer_Container_Utility_File_Attachment]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Ticket, string, SoftLayer_Container_Utility_File_Attachment]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/edit' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAccount.md b/content/reference/services/SoftLayer_Ticket/getAccount.md index e8181d8016..9b3026a88e 100644 --- a/content/reference/services/SoftLayer_Ticket/getAccount.md +++ b/content/reference/services/SoftLayer_Ticket/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAllTicketGroups.md b/content/reference/services/SoftLayer_Ticket/getAllTicketGroups.md index bb540d5479..2ffe8f9e44 100644 --- a/content/reference/services/SoftLayer_Ticket/getAllTicketGroups.md +++ b/content/reference/services/SoftLayer_Ticket/getAllTicketGroups.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAllTicketGroups-example) {#getAllTicketGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/getAllTicketGroups' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAllTicketStatuses.md b/content/reference/services/SoftLayer_Ticket/getAllTicketStatuses.md index f159138462..a185d26826 100644 --- a/content/reference/services/SoftLayer_Ticket/getAllTicketStatuses.md +++ b/content/reference/services/SoftLayer_Ticket/getAllTicketStatuses.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAllTicketStatuses-example) {#getAllTicketStatuses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/getAllTicketStatuses' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAssignedAgents.md b/content/reference/services/SoftLayer_Ticket/getAssignedAgents.md index 93e4cae35e..1b09ffdf84 100644 --- a/content/reference/services/SoftLayer_Ticket/getAssignedAgents.md +++ b/content/reference/services/SoftLayer_Ticket/getAssignedAgents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAssignedAgents-example) {#getAssignedAgents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAssignedAgents' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAssignedUser.md b/content/reference/services/SoftLayer_Ticket/getAssignedUser.md index c16577271d..e0a51b87e8 100644 --- a/content/reference/services/SoftLayer_Ticket/getAssignedUser.md +++ b/content/reference/services/SoftLayer_Ticket/getAssignedUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAssignedUser-example) {#getAssignedUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAssignedUser' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedAdditionalEmails.md b/content/reference/services/SoftLayer_Ticket/getAttachedAdditionalEmails.md index 4b448970ff..c697dd7c18 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedAdditionalEmails.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedAdditionalEmails-example) {#getAttachedAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedDedicatedHosts.md b/content/reference/services/SoftLayer_Ticket/getAttachedDedicatedHosts.md index ec3cc941ca..afc008c895 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedDedicatedHosts.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedDedicatedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedDedicatedHosts-example) {#getAttachedDedicatedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedDedicatedHosts' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedFile.md b/content/reference/services/SoftLayer_Ticket/getAttachedFile.md index bb35056692..05761b365c 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedFile.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedFile.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedFile-example) {#getAttachedFile-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedFile' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedFiles.md b/content/reference/services/SoftLayer_Ticket/getAttachedFiles.md index 59851b4dca..abbaff510c 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedFiles.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedFiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedFiles-example) {#getAttachedFiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedFiles' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedHardware.md b/content/reference/services/SoftLayer_Ticket/getAttachedHardware.md index d746d71f59..d62f9e55dc 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedHardware.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedHardware-example) {#getAttachedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedHardware' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedHardwareCount.md b/content/reference/services/SoftLayer_Ticket/getAttachedHardwareCount.md index c9f4569871..ac88c2f5d8 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedHardwareCount.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedHardwareCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedHardwareCount-example) {#getAttachedHardwareCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedHardwareCount' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedResources.md b/content/reference/services/SoftLayer_Ticket/getAttachedResources.md index c24b0a4ef1..9f9a967d43 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedResources.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedResources.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedResources-example) {#getAttachedResources-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedResources' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAttachedVirtualGuests.md b/content/reference/services/SoftLayer_Ticket/getAttachedVirtualGuests.md index 3cfe295adb..e119b2b7d0 100644 --- a/content/reference/services/SoftLayer_Ticket/getAttachedVirtualGuests.md +++ b/content/reference/services/SoftLayer_Ticket/getAttachedVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAttachedVirtualGuests-example) {#getAttachedVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAttachedVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getAwaitingUserResponseFlag.md b/content/reference/services/SoftLayer_Ticket/getAwaitingUserResponseFlag.md index 45f87ec5f9..fa598de0c3 100644 --- a/content/reference/services/SoftLayer_Ticket/getAwaitingUserResponseFlag.md +++ b/content/reference/services/SoftLayer_Ticket/getAwaitingUserResponseFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getAwaitingUserResponseFlag-example) {#getAwaitingUserResponseFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getAwaitingUserResponseFlag' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getBnppSupportedFlag.md b/content/reference/services/SoftLayer_Ticket/getBnppSupportedFlag.md index 990aa790ab..3fc3cf8613 100644 --- a/content/reference/services/SoftLayer_Ticket/getBnppSupportedFlag.md +++ b/content/reference/services/SoftLayer_Ticket/getBnppSupportedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getBnppSupportedFlag-example) {#getBnppSupportedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getBnppSupportedFlag' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getCancellationRequest.md b/content/reference/services/SoftLayer_Ticket/getCancellationRequest.md index 424aca6719..348012f003 100644 --- a/content/reference/services/SoftLayer_Ticket/getCancellationRequest.md +++ b/content/reference/services/SoftLayer_Ticket/getCancellationRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getCancellationRequest-example) {#getCancellationRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getCancellationRequest' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getEmployeeAttachments.md b/content/reference/services/SoftLayer_Ticket/getEmployeeAttachments.md index 50ae78b6b8..81e1164421 100644 --- a/content/reference/services/SoftLayer_Ticket/getEmployeeAttachments.md +++ b/content/reference/services/SoftLayer_Ticket/getEmployeeAttachments.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getEmployeeAttachments-example) {#getEmployeeAttachments-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getEmployeeAttachments' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getEuSupportedFlag.md b/content/reference/services/SoftLayer_Ticket/getEuSupportedFlag.md index 370b3dc209..bbc0b1f0ea 100644 --- a/content/reference/services/SoftLayer_Ticket/getEuSupportedFlag.md +++ b/content/reference/services/SoftLayer_Ticket/getEuSupportedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getEuSupportedFlag-example) {#getEuSupportedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getEuSupportedFlag' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getFirstAttachedResource.md b/content/reference/services/SoftLayer_Ticket/getFirstAttachedResource.md index 7a3e3a4edc..d780a9e816 100644 --- a/content/reference/services/SoftLayer_Ticket/getFirstAttachedResource.md +++ b/content/reference/services/SoftLayer_Ticket/getFirstAttachedResource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getFirstAttachedResource-example) {#getFirstAttachedResource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getFirstAttachedResource' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getFirstUpdate.md b/content/reference/services/SoftLayer_Ticket/getFirstUpdate.md index 5ae9b6d54e..a29c249a67 100644 --- a/content/reference/services/SoftLayer_Ticket/getFirstUpdate.md +++ b/content/reference/services/SoftLayer_Ticket/getFirstUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getFirstUpdate-example) {#getFirstUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getFirstUpdate' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getFsboaSupportedFlag.md b/content/reference/services/SoftLayer_Ticket/getFsboaSupportedFlag.md index c68a3707f7..22090f77db 100644 --- a/content/reference/services/SoftLayer_Ticket/getFsboaSupportedFlag.md +++ b/content/reference/services/SoftLayer_Ticket/getFsboaSupportedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getFsboaSupportedFlag-example) {#getFsboaSupportedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getFsboaSupportedFlag' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getGroup.md b/content/reference/services/SoftLayer_Ticket/getGroup.md index eda7656e50..44c6e059c2 100644 --- a/content/reference/services/SoftLayer_Ticket/getGroup.md +++ b/content/reference/services/SoftLayer_Ticket/getGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getGroup-example) {#getGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getGroup' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getInvoiceItems.md b/content/reference/services/SoftLayer_Ticket/getInvoiceItems.md index a584b7998e..92bd89da7d 100644 --- a/content/reference/services/SoftLayer_Ticket/getInvoiceItems.md +++ b/content/reference/services/SoftLayer_Ticket/getInvoiceItems.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getInvoiceItems-example) {#getInvoiceItems-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getInvoiceItems' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getLastActivity.md b/content/reference/services/SoftLayer_Ticket/getLastActivity.md index 29df0a8f03..7955a44ddf 100644 --- a/content/reference/services/SoftLayer_Ticket/getLastActivity.md +++ b/content/reference/services/SoftLayer_Ticket/getLastActivity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getLastActivity-example) {#getLastActivity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getLastActivity' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getLastEditor.md b/content/reference/services/SoftLayer_Ticket/getLastEditor.md index 4df4a8aad5..1639077071 100644 --- a/content/reference/services/SoftLayer_Ticket/getLastEditor.md +++ b/content/reference/services/SoftLayer_Ticket/getLastEditor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getLastEditor-example) {#getLastEditor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getLastEditor' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getLastUpdate.md b/content/reference/services/SoftLayer_Ticket/getLastUpdate.md index 164ae209f0..306034cc53 100644 --- a/content/reference/services/SoftLayer_Ticket/getLastUpdate.md +++ b/content/reference/services/SoftLayer_Ticket/getLastUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getLastUpdate-example) {#getLastUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getLastUpdate' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getLocation.md b/content/reference/services/SoftLayer_Ticket/getLocation.md index ffff2d378e..48f14336f9 100644 --- a/content/reference/services/SoftLayer_Ticket/getLocation.md +++ b/content/reference/services/SoftLayer_Ticket/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getNewUpdatesFlag.md b/content/reference/services/SoftLayer_Ticket/getNewUpdatesFlag.md index 43e7af285f..98c8bf28cd 100644 --- a/content/reference/services/SoftLayer_Ticket/getNewUpdatesFlag.md +++ b/content/reference/services/SoftLayer_Ticket/getNewUpdatesFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getNewUpdatesFlag-example) {#getNewUpdatesFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getNewUpdatesFlag' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getObject.md b/content/reference/services/SoftLayer_Ticket/getObject.md index a5b537088b..a8f9a8b122 100644 --- a/content/reference/services/SoftLayer_Ticket/getObject.md +++ b/content/reference/services/SoftLayer_Ticket/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getScheduledActions.md b/content/reference/services/SoftLayer_Ticket/getScheduledActions.md index 0b09609fe7..56ccbd46a1 100644 --- a/content/reference/services/SoftLayer_Ticket/getScheduledActions.md +++ b/content/reference/services/SoftLayer_Ticket/getScheduledActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getScheduledActions-example) {#getScheduledActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getScheduledActions' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getServerAdministrationBillingInvoice.md b/content/reference/services/SoftLayer_Ticket/getServerAdministrationBillingInvoice.md index a488691529..2314afc725 100644 --- a/content/reference/services/SoftLayer_Ticket/getServerAdministrationBillingInvoice.md +++ b/content/reference/services/SoftLayer_Ticket/getServerAdministrationBillingInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getServerAdministrationBillingInvoice-example) {#getServerAdministrationBillingInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getServerAdministrationBillingInvoice' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getServerAdministrationRefundInvoice.md b/content/reference/services/SoftLayer_Ticket/getServerAdministrationRefundInvoice.md index 80afd45945..d42ab39912 100644 --- a/content/reference/services/SoftLayer_Ticket/getServerAdministrationRefundInvoice.md +++ b/content/reference/services/SoftLayer_Ticket/getServerAdministrationRefundInvoice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getServerAdministrationRefundInvoice-example) {#getServerAdministrationRefundInvoice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getServerAdministrationRefundInvoice' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getServiceProvider.md b/content/reference/services/SoftLayer_Ticket/getServiceProvider.md index 0561dce8e8..d1ae35e435 100644 --- a/content/reference/services/SoftLayer_Ticket/getServiceProvider.md +++ b/content/reference/services/SoftLayer_Ticket/getServiceProvider.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getServiceProvider-example) {#getServiceProvider-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getServiceProvider' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getState.md b/content/reference/services/SoftLayer_Ticket/getState.md index 9fb04aa33a..5cfa0201d6 100644 --- a/content/reference/services/SoftLayer_Ticket/getState.md +++ b/content/reference/services/SoftLayer_Ticket/getState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getState-example) {#getState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getState' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getStatus.md b/content/reference/services/SoftLayer_Ticket/getStatus.md index 37ce621593..0f77d30814 100644 --- a/content/reference/services/SoftLayer_Ticket/getStatus.md +++ b/content/reference/services/SoftLayer_Ticket/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getSubject.md b/content/reference/services/SoftLayer_Ticket/getSubject.md index 7cacec3f38..a910848785 100644 --- a/content/reference/services/SoftLayer_Ticket/getSubject.md +++ b/content/reference/services/SoftLayer_Ticket/getSubject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getSubject-example) {#getSubject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getSubject' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getTagReferences.md b/content/reference/services/SoftLayer_Ticket/getTagReferences.md index 6024c457f0..e5130cc4dd 100644 --- a/content/reference/services/SoftLayer_Ticket/getTagReferences.md +++ b/content/reference/services/SoftLayer_Ticket/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getTicketsClosedSinceDate.md b/content/reference/services/SoftLayer_Ticket/getTicketsClosedSinceDate.md index 5861535263..a4eeb1b34f 100644 --- a/content/reference/services/SoftLayer_Ticket/getTicketsClosedSinceDate.md +++ b/content/reference/services/SoftLayer_Ticket/getTicketsClosedSinceDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getTicketsClosedSinceDate-example) {#getTicketsClosedSinceDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/getTicketsClosedSinceDate' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getUpdateRatingFlag.md b/content/reference/services/SoftLayer_Ticket/getUpdateRatingFlag.md index df66e979fb..67341c868e 100644 --- a/content/reference/services/SoftLayer_Ticket/getUpdateRatingFlag.md +++ b/content/reference/services/SoftLayer_Ticket/getUpdateRatingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getUpdateRatingFlag-example) {#getUpdateRatingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getUpdateRatingFlag' ``` diff --git a/content/reference/services/SoftLayer_Ticket/getUpdates.md b/content/reference/services/SoftLayer_Ticket/getUpdates.md index 8b5d98b909..694e93ca7d 100644 --- a/content/reference/services/SoftLayer_Ticket/getUpdates.md +++ b/content/reference/services/SoftLayer_Ticket/getUpdates.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#getUpdates-example) {#getUpdates-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/getUpdates' ``` diff --git a/content/reference/services/SoftLayer_Ticket/markAsViewed.md b/content/reference/services/SoftLayer_Ticket/markAsViewed.md index cb1fc567c2..022df7cf70 100644 --- a/content/reference/services/SoftLayer_Ticket/markAsViewed.md +++ b/content/reference/services/SoftLayer_Ticket/markAsViewed.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#markAsViewed-example) {#markAsViewed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/markAsViewed' ``` diff --git a/content/reference/services/SoftLayer_Ticket/removeAssignedAgent.md b/content/reference/services/SoftLayer_Ticket/removeAssignedAgent.md index 86e52daf06..5a7b68d023 100644 --- a/content/reference/services/SoftLayer_Ticket/removeAssignedAgent.md +++ b/content/reference/services/SoftLayer_Ticket/removeAssignedAgent.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#removeAssignedAgent-example) {#removeAssignedAgent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/removeAssignedAgent' ``` diff --git a/content/reference/services/SoftLayer_Ticket/removeAttachedAdditionalEmails.md b/content/reference/services/SoftLayer_Ticket/removeAttachedAdditionalEmails.md index 20cbccdd0d..9760498cf0 100644 --- a/content/reference/services/SoftLayer_Ticket/removeAttachedAdditionalEmails.md +++ b/content/reference/services/SoftLayer_Ticket/removeAttachedAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#removeAttachedAdditionalEmails-example) {#removeAttachedAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/removeAttachedAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_Ticket/removeAttachedHardware.md b/content/reference/services/SoftLayer_Ticket/removeAttachedHardware.md index 5550727579..cf65fce6cb 100644 --- a/content/reference/services/SoftLayer_Ticket/removeAttachedHardware.md +++ b/content/reference/services/SoftLayer_Ticket/removeAttachedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#removeAttachedHardware-example) {#removeAttachedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/removeAttachedHardware' ``` diff --git a/content/reference/services/SoftLayer_Ticket/removeAttachedVirtualGuest.md b/content/reference/services/SoftLayer_Ticket/removeAttachedVirtualGuest.md index fce60b84fd..5f01d3c92f 100644 --- a/content/reference/services/SoftLayer_Ticket/removeAttachedVirtualGuest.md +++ b/content/reference/services/SoftLayer_Ticket/removeAttachedVirtualGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#removeAttachedVirtualGuest-example) {#removeAttachedVirtualGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/removeAttachedVirtualGuest' ``` diff --git a/content/reference/services/SoftLayer_Ticket/removeScheduledAlert.md b/content/reference/services/SoftLayer_Ticket/removeScheduledAlert.md index 20453df9e8..4767ffc003 100644 --- a/content/reference/services/SoftLayer_Ticket/removeScheduledAlert.md +++ b/content/reference/services/SoftLayer_Ticket/removeScheduledAlert.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#removeScheduledAlert-example) {#removeScheduledAlert-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/removeScheduledAlert' ``` diff --git a/content/reference/services/SoftLayer_Ticket/removeScheduledAutoClose.md b/content/reference/services/SoftLayer_Ticket/removeScheduledAutoClose.md index 4af65673ed..4e79e41666 100644 --- a/content/reference/services/SoftLayer_Ticket/removeScheduledAutoClose.md +++ b/content/reference/services/SoftLayer_Ticket/removeScheduledAutoClose.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#removeScheduledAutoClose-example) {#removeScheduledAutoClose-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/removeScheduledAutoClose' ``` diff --git a/content/reference/services/SoftLayer_Ticket/setTags.md b/content/reference/services/SoftLayer_Ticket/setTags.md index 3a644abf6d..1da8313fb4 100644 --- a/content/reference/services/SoftLayer_Ticket/setTags.md +++ b/content/reference/services/SoftLayer_Ticket/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Ticket/surveyEligible.md b/content/reference/services/SoftLayer_Ticket/surveyEligible.md index cb74a75769..87f0ba302e 100644 --- a/content/reference/services/SoftLayer_Ticket/surveyEligible.md +++ b/content/reference/services/SoftLayer_Ticket/surveyEligible.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#surveyEligible-example) {#surveyEligible-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/surveyEligible' ``` diff --git a/content/reference/services/SoftLayer_Ticket/updateAttachedAdditionalEmails.md b/content/reference/services/SoftLayer_Ticket/updateAttachedAdditionalEmails.md index c8a414f3e0..48cecd3723 100644 --- a/content/reference/services/SoftLayer_Ticket/updateAttachedAdditionalEmails.md +++ b/content/reference/services/SoftLayer_Ticket/updateAttachedAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket" --- -### Curl Example +# [REST Example](#updateAttachedAdditionalEmails-example) {#updateAttachedAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket/{SoftLayer_TicketID}/updateAttachedAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File/getExtensionWhitelist.md b/content/reference/services/SoftLayer_Ticket_Attachment_File/getExtensionWhitelist.md index 69f14fa91c..ef168c9395 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File/getExtensionWhitelist.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File/getExtensionWhitelist.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File" --- -### Curl Example +# [REST Example](#getExtensionWhitelist-example) {#getExtensionWhitelist-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File/getExtensionWhitelist' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File/getObject.md b/content/reference/services/SoftLayer_Ticket_Attachment_File/getObject.md index 357dd1e3e8..c219ddc31a 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File/getObject.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File/{SoftLayer_Ticket_Attachment_FileID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File/getTicket.md b/content/reference/services/SoftLayer_Ticket_Attachment_File/getTicket.md index b35de3e2bd..8cf7f354d5 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File/getTicket.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File/{SoftLayer_Ticket_Attachment_FileID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File/getUpdate.md b/content/reference/services/SoftLayer_Ticket_Attachment_File/getUpdate.md index 315a0ce872..3ded9e11a9 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File/getUpdate.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File/getUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File" --- -### Curl Example +# [REST Example](#getUpdate-example) {#getUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File/{SoftLayer_Ticket_Attachment_FileID}/getUpdate' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getExtensionWhitelist.md b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getExtensionWhitelist.md index e8f228effc..08847622d5 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getExtensionWhitelist.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getExtensionWhitelist.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File_ServiceNow" --- -### Curl Example +# [REST Example](#getExtensionWhitelist-example) {#getExtensionWhitelist-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File_ServiceNow/getExtensionWhitelist' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getObject.md b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getObject.md index ed36e06ce9..a1e7509621 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getObject.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File_ServiceNow" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File_ServiceNow/{SoftLayer_Ticket_Attachment_File_ServiceNowID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getTicket.md b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getTicket.md index 81856cc577..e055bef6a9 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getTicket.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File_ServiceNow" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File_ServiceNow/{SoftLayer_Ticket_Attachment_File_ServiceNowID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getUpdate.md b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getUpdate.md index 87669acfec..832f696bd9 100644 --- a/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getUpdate.md +++ b/content/reference/services/SoftLayer_Ticket_Attachment_File_ServiceNow/getUpdate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Attachment_File_ServiceNow" --- -### Curl Example +# [REST Example](#getUpdate-example) {#getUpdate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Attachment_File_ServiceNow/{SoftLayer_Ticket_Attachment_File_ServiceNowID}/getUpdate' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Priority/getPriorities.md b/content/reference/services/SoftLayer_Ticket_Priority/getPriorities.md index af909f79e7..decd6a8c84 100644 --- a/content/reference/services/SoftLayer_Ticket_Priority/getPriorities.md +++ b/content/reference/services/SoftLayer_Ticket_Priority/getPriorities.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Priority" --- -### Curl Example +# [REST Example](#getPriorities-example) {#getPriorities-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Priority/getPriorities' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getAllObjects.md b/content/reference/services/SoftLayer_Ticket_Subject/getAllObjects.md index ab10e33df4..de5db3ee5f 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getAllObjects.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getCategory.md b/content/reference/services/SoftLayer_Ticket_Subject/getCategory.md index dc25271486..82e7f5a980 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getCategory.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getCategory.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getCategory-example) {#getCategory-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/{SoftLayer_Ticket_SubjectID}/getCategory' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getChildren.md b/content/reference/services/SoftLayer_Ticket_Subject/getChildren.md index 7b86e3fbda..8506258cce 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getChildren.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/{SoftLayer_Ticket_SubjectID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getGroup.md b/content/reference/services/SoftLayer_Ticket_Subject/getGroup.md index fe8419e676..8073bf9a73 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getGroup.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getGroup-example) {#getGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/{SoftLayer_Ticket_SubjectID}/getGroup' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getObject.md b/content/reference/services/SoftLayer_Ticket_Subject/getObject.md index e1529a2d7b..3148698d65 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getObject.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/{SoftLayer_Ticket_SubjectID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getParent.md b/content/reference/services/SoftLayer_Ticket_Subject/getParent.md index 62542ad3fa..cc23a98066 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getParent.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/{SoftLayer_Ticket_SubjectID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject/getTopFiveKnowledgeLayerQuestions.md b/content/reference/services/SoftLayer_Ticket_Subject/getTopFiveKnowledgeLayerQuestions.md index 44af940654..4753d0a6e7 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject/getTopFiveKnowledgeLayerQuestions.md +++ b/content/reference/services/SoftLayer_Ticket_Subject/getTopFiveKnowledgeLayerQuestions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject" --- -### Curl Example +# [REST Example](#getTopFiveKnowledgeLayerQuestions-example) {#getTopFiveKnowledgeLayerQuestions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject/{SoftLayer_Ticket_SubjectID}/getTopFiveKnowledgeLayerQuestions' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject_Category/getAllObjects.md b/content/reference/services/SoftLayer_Ticket_Subject_Category/getAllObjects.md index d0eb7903d8..a96a36a41d 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject_Category/getAllObjects.md +++ b/content/reference/services/SoftLayer_Ticket_Subject_Category/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject_Category" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject_Category/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject_Category/getObject.md b/content/reference/services/SoftLayer_Ticket_Subject_Category/getObject.md index 9c93b83f67..b043fc9c5d 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject_Category/getObject.md +++ b/content/reference/services/SoftLayer_Ticket_Subject_Category/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject_Category" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject_Category/{SoftLayer_Ticket_Subject_CategoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Subject_Category/getSubjects.md b/content/reference/services/SoftLayer_Ticket_Subject_Category/getSubjects.md index a845566d0a..0dac7b0cf9 100644 --- a/content/reference/services/SoftLayer_Ticket_Subject_Category/getSubjects.md +++ b/content/reference/services/SoftLayer_Ticket_Subject_Category/getSubjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Subject_Category" --- -### Curl Example +# [REST Example](#getSubjects-example) {#getSubjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Subject_Category/{SoftLayer_Ticket_Subject_CategoryID}/getSubjects' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Survey/getPreference.md b/content/reference/services/SoftLayer_Ticket_Survey/getPreference.md index 23a2e492bf..bac9a310bb 100644 --- a/content/reference/services/SoftLayer_Ticket_Survey/getPreference.md +++ b/content/reference/services/SoftLayer_Ticket_Survey/getPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Survey" --- -### Curl Example +# [REST Example](#getPreference-example) {#getPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Survey/getPreference' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Survey/optIn.md b/content/reference/services/SoftLayer_Ticket_Survey/optIn.md index 2e009da428..f7a55e784b 100644 --- a/content/reference/services/SoftLayer_Ticket_Survey/optIn.md +++ b/content/reference/services/SoftLayer_Ticket_Survey/optIn.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Survey" --- -### Curl Example +# [REST Example](#optIn-example) {#optIn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Survey/optIn' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Survey/optOut.md b/content/reference/services/SoftLayer_Ticket_Survey/optOut.md index 7581657959..79b96f4afb 100644 --- a/content/reference/services/SoftLayer_Ticket_Survey/optOut.md +++ b/content/reference/services/SoftLayer_Ticket_Survey/optOut.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Survey" --- -### Curl Example +# [REST Example](#optOut-example) {#optOut-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Survey/optOut' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/addResponseRating.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/addResponseRating.md index 0cc625918b..4e909cae7c 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/addResponseRating.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/addResponseRating.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#addResponseRating-example) {#addResponseRating-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/addResponseRating' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getChangeOwnerActivity.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getChangeOwnerActivity.md index a90e985855..d06a3fa023 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getChangeOwnerActivity.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getChangeOwnerActivity.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getChangeOwnerActivity-example) {#getChangeOwnerActivity-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getChangeOwnerActivity' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getChat.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getChat.md index ed08fecdbc..750efac683 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getChat.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getChat.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getChat-example) {#getChat-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getChat' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getEditor.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getEditor.md index c0f90cd8bc..52da8b99f6 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getEditor.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getEditor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getEditor-example) {#getEditor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getEditor' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getFileAttachment.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getFileAttachment.md index e0ef0f7d14..67e50e171b 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getFileAttachment.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getFileAttachment.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getFileAttachment-example) {#getFileAttachment-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getFileAttachment' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getObject.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getObject.md index a725eb68c3..cad6fa0937 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getObject.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getTicket.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getTicket.md index 773e02983c..a04cc99a3b 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getTicket.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getTicket-example) {#getTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getTicket' ``` diff --git a/content/reference/services/SoftLayer_Ticket_Update_Employee/getType.md b/content/reference/services/SoftLayer_Ticket_Update_Employee/getType.md index b64313e600..369b5043a4 100644 --- a/content/reference/services/SoftLayer_Ticket_Update_Employee/getType.md +++ b/content/reference/services/SoftLayer_Ticket_Update_Employee/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Ticket_Update_Employee" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Ticket_Update_Employee/{SoftLayer_Ticket_Update_EmployeeID}/getType' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/acknowledgeSupportPolicy.md b/content/reference/services/SoftLayer_User_Customer/acknowledgeSupportPolicy.md index f43cbc928c..c2a5482920 100644 --- a/content/reference/services/SoftLayer_User_Customer/acknowledgeSupportPolicy.md +++ b/content/reference/services/SoftLayer_User_Customer/acknowledgeSupportPolicy.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#acknowledgeSupportPolicy-example) {#acknowledgeSupportPolicy-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/acknowledgeSupportPolicy' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addApiAuthenticationKey.md b/content/reference/services/SoftLayer_User_Customer/addApiAuthenticationKey.md index 758b656948..4b472a5a0c 100644 --- a/content/reference/services/SoftLayer_User_Customer/addApiAuthenticationKey.md +++ b/content/reference/services/SoftLayer_User_Customer/addApiAuthenticationKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addApiAuthenticationKey-example) {#addApiAuthenticationKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addApiAuthenticationKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addBulkDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer/addBulkDedicatedHostAccess.md index f7decdb315..86b3f341ca 100644 --- a/content/reference/services/SoftLayer_User_Customer/addBulkDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/addBulkDedicatedHostAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addBulkDedicatedHostAccess-example) {#addBulkDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addBulkDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addBulkHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer/addBulkHardwareAccess.md index dc25376598..f40ec49c69 100644 --- a/content/reference/services/SoftLayer_User_Customer/addBulkHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/addBulkHardwareAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addBulkHardwareAccess-example) {#addBulkHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addBulkHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addBulkPortalPermission.md b/content/reference/services/SoftLayer_User_Customer/addBulkPortalPermission.md index aed157d3a0..97a44015e0 100644 --- a/content/reference/services/SoftLayer_User_Customer/addBulkPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer/addBulkPortalPermission.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addBulkPortalPermission-example) {#addBulkPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addBulkPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addBulkRoles.md b/content/reference/services/SoftLayer_User_Customer/addBulkRoles.md index 837998b0c9..9f50e3fca1 100644 --- a/content/reference/services/SoftLayer_User_Customer/addBulkRoles.md +++ b/content/reference/services/SoftLayer_User_Customer/addBulkRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addBulkRoles-example) {#addBulkRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addBulkRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addBulkVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer/addBulkVirtualGuestAccess.md index c356debb94..e59ba565ab 100644 --- a/content/reference/services/SoftLayer_User_Customer/addBulkVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/addBulkVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addBulkVirtualGuestAccess-example) {#addBulkVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addBulkVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer/addDedicatedHostAccess.md index 2726e90aa3..48752b61ff 100644 --- a/content/reference/services/SoftLayer_User_Customer/addDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/addDedicatedHostAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addDedicatedHostAccess-example) {#addDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addExternalBinding.md b/content/reference/services/SoftLayer_User_Customer/addExternalBinding.md index e939508f1e..f881eab70a 100644 --- a/content/reference/services/SoftLayer_User_Customer/addExternalBinding.md +++ b/content/reference/services/SoftLayer_User_Customer/addExternalBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addExternalBinding-example) {#addExternalBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addExternalBinding' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer/addHardwareAccess.md index a9974513d5..5da8dcd089 100644 --- a/content/reference/services/SoftLayer_User_Customer/addHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/addHardwareAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addHardwareAccess-example) {#addHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer/addNotificationSubscriber.md index 7c5c21bbe0..62ad08707d 100644 --- a/content/reference/services/SoftLayer_User_Customer/addNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer/addNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addNotificationSubscriber-example) {#addNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addPortalPermission.md b/content/reference/services/SoftLayer_User_Customer/addPortalPermission.md index bd7c892ea6..0203303ff1 100644 --- a/content/reference/services/SoftLayer_User_Customer/addPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer/addPortalPermission.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addPortalPermission-example) {#addPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addRole.md b/content/reference/services/SoftLayer_User_Customer/addRole.md index 950847b011..40c54dafa5 100644 --- a/content/reference/services/SoftLayer_User_Customer/addRole.md +++ b/content/reference/services/SoftLayer_User_Customer/addRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addRole-example) {#addRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addRole' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/addVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer/addVirtualGuestAccess.md index ac8a655c91..b6674d2e60 100644 --- a/content/reference/services/SoftLayer_User_Customer/addVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/addVirtualGuestAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#addVirtualGuestAccess-example) {#addVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/addVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/assignNewParentId.md b/content/reference/services/SoftLayer_User_Customer/assignNewParentId.md index a8e8e78c48..c167e94cfa 100644 --- a/content/reference/services/SoftLayer_User_Customer/assignNewParentId.md +++ b/content/reference/services/SoftLayer_User_Customer/assignNewParentId.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#assignNewParentId-example) {#assignNewParentId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/assignNewParentId' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/changePreference.md b/content/reference/services/SoftLayer_User_Customer/changePreference.md index f653382563..c1ca748b00 100644 --- a/content/reference/services/SoftLayer_User_Customer/changePreference.md +++ b/content/reference/services/SoftLayer_User_Customer/changePreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#changePreference-example) {#changePreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/changePreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/createNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer/createNotificationSubscriber.md index 97306c1fcf..8968c6239a 100644 --- a/content/reference/services/SoftLayer_User_Customer/createNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer/createNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#createNotificationSubscriber-example) {#createNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/createNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/createObject.md b/content/reference/services/SoftLayer_User_Customer/createObject.md index 1459e60215..cf3144f5d9 100644 --- a/content/reference/services/SoftLayer_User_Customer/createObject.md +++ b/content/reference/services/SoftLayer_User_Customer/createObject.md @@ -35,8 +35,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/createSubscriberDeliveryMethods.md b/content/reference/services/SoftLayer_User_Customer/createSubscriberDeliveryMethods.md index ecddef3a90..403983e9da 100644 --- a/content/reference/services/SoftLayer_User_Customer/createSubscriberDeliveryMethods.md +++ b/content/reference/services/SoftLayer_User_Customer/createSubscriberDeliveryMethods.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#createSubscriberDeliveryMethods-example) {#createSubscriberDeliveryMethods-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/createSubscriberDeliveryMethods' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/deactivateNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer/deactivateNotificationSubscriber.md index 0065691aa9..a9848bfd2a 100644 --- a/content/reference/services/SoftLayer_User_Customer/deactivateNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer/deactivateNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#deactivateNotificationSubscriber-example) {#deactivateNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/deactivateNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/editObject.md b/content/reference/services/SoftLayer_User_Customer/editObject.md index 57bf920004..47dd827adb 100644 --- a/content/reference/services/SoftLayer_User_Customer/editObject.md +++ b/content/reference/services/SoftLayer_User_Customer/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/editObjects.md b/content/reference/services/SoftLayer_User_Customer/editObjects.md index 638c20e67d..ebbd6e8371 100644 --- a/content/reference/services/SoftLayer_User_Customer/editObjects.md +++ b/content/reference/services/SoftLayer_User_Customer/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/editObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/findUserPreference.md b/content/reference/services/SoftLayer_User_Customer/findUserPreference.md index 59847d1a5b..463ade2f68 100644 --- a/content/reference/services/SoftLayer_User_Customer/findUserPreference.md +++ b/content/reference/services/SoftLayer_User_Customer/findUserPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#findUserPreference-example) {#findUserPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/findUserPreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAccount.md b/content/reference/services/SoftLayer_User_Customer/getAccount.md index 29671bd850..3408480ecb 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAccount.md +++ b/content/reference/services/SoftLayer_User_Customer/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getActions.md b/content/reference/services/SoftLayer_User_Customer/getActions.md index aa54e49368..94d346d37d 100644 --- a/content/reference/services/SoftLayer_User_Customer/getActions.md +++ b/content/reference/services/SoftLayer_User_Customer/getActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getActions-example) {#getActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getActions' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getActiveExternalAuthenticationVendors.md b/content/reference/services/SoftLayer_User_Customer/getActiveExternalAuthenticationVendors.md index 644aced6ea..a8c1af7734 100644 --- a/content/reference/services/SoftLayer_User_Customer/getActiveExternalAuthenticationVendors.md +++ b/content/reference/services/SoftLayer_User_Customer/getActiveExternalAuthenticationVendors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getActiveExternalAuthenticationVendors-example) {#getActiveExternalAuthenticationVendors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/getActiveExternalAuthenticationVendors' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAdditionalEmails.md b/content/reference/services/SoftLayer_User_Customer/getAdditionalEmails.md index 3080f74177..3455507064 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAdditionalEmails.md +++ b/content/reference/services/SoftLayer_User_Customer/getAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAdditionalEmails-example) {#getAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAgentImpersonationToken.md b/content/reference/services/SoftLayer_User_Customer/getAgentImpersonationToken.md index 614ef7af05..025887e7fb 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAgentImpersonationToken.md +++ b/content/reference/services/SoftLayer_User_Customer/getAgentImpersonationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAgentImpersonationToken-example) {#getAgentImpersonationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAgentImpersonationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAllowedDedicatedHostIds.md b/content/reference/services/SoftLayer_User_Customer/getAllowedDedicatedHostIds.md index 1961266baa..b161ec73e8 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAllowedDedicatedHostIds.md +++ b/content/reference/services/SoftLayer_User_Customer/getAllowedDedicatedHostIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAllowedDedicatedHostIds-example) {#getAllowedDedicatedHostIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAllowedDedicatedHostIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAllowedHardwareIds.md b/content/reference/services/SoftLayer_User_Customer/getAllowedHardwareIds.md index a992fc6f5c..65d8ea40e8 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAllowedHardwareIds.md +++ b/content/reference/services/SoftLayer_User_Customer/getAllowedHardwareIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAllowedHardwareIds-example) {#getAllowedHardwareIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAllowedHardwareIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAllowedVirtualGuestIds.md b/content/reference/services/SoftLayer_User_Customer/getAllowedVirtualGuestIds.md index b17dc75565..e9790fb149 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAllowedVirtualGuestIds.md +++ b/content/reference/services/SoftLayer_User_Customer/getAllowedVirtualGuestIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAllowedVirtualGuestIds-example) {#getAllowedVirtualGuestIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAllowedVirtualGuestIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getApiAuthenticationKeys.md b/content/reference/services/SoftLayer_User_Customer/getApiAuthenticationKeys.md index e01d44f237..fa481d5c82 100644 --- a/content/reference/services/SoftLayer_User_Customer/getApiAuthenticationKeys.md +++ b/content/reference/services/SoftLayer_User_Customer/getApiAuthenticationKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getApiAuthenticationKeys-example) {#getApiAuthenticationKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getApiAuthenticationKeys' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getAuthenticationToken.md b/content/reference/services/SoftLayer_User_Customer/getAuthenticationToken.md index c609b5811d..8f74c19c2b 100644 --- a/content/reference/services/SoftLayer_User_Customer/getAuthenticationToken.md +++ b/content/reference/services/SoftLayer_User_Customer/getAuthenticationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getAuthenticationToken-example) {#getAuthenticationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getAuthenticationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getChildUsers.md b/content/reference/services/SoftLayer_User_Customer/getChildUsers.md index e6a8be779a..a491aabc46 100644 --- a/content/reference/services/SoftLayer_User_Customer/getChildUsers.md +++ b/content/reference/services/SoftLayer_User_Customer/getChildUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getChildUsers-example) {#getChildUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getChildUsers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getClosedTickets.md b/content/reference/services/SoftLayer_User_Customer/getClosedTickets.md index f83cef5eff..74039dccb2 100644 --- a/content/reference/services/SoftLayer_User_Customer/getClosedTickets.md +++ b/content/reference/services/SoftLayer_User_Customer/getClosedTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getClosedTickets-example) {#getClosedTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getClosedTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getDedicatedHosts.md b/content/reference/services/SoftLayer_User_Customer/getDedicatedHosts.md index fbd401d3c3..fdf110e97c 100644 --- a/content/reference/services/SoftLayer_User_Customer/getDedicatedHosts.md +++ b/content/reference/services/SoftLayer_User_Customer/getDedicatedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getDedicatedHosts-example) {#getDedicatedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getDedicatedHosts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getDefaultAccount.md b/content/reference/services/SoftLayer_User_Customer/getDefaultAccount.md index e1b79351a6..f0987edc8f 100644 --- a/content/reference/services/SoftLayer_User_Customer/getDefaultAccount.md +++ b/content/reference/services/SoftLayer_User_Customer/getDefaultAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getDefaultAccount-example) {#getDefaultAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getDefaultAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getExternalBindings.md b/content/reference/services/SoftLayer_User_Customer/getExternalBindings.md index 5167bb26f4..7290fd3a3e 100644 --- a/content/reference/services/SoftLayer_User_Customer/getExternalBindings.md +++ b/content/reference/services/SoftLayer_User_Customer/getExternalBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getExternalBindings-example) {#getExternalBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getExternalBindings' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHardware.md b/content/reference/services/SoftLayer_User_Customer/getHardware.md index 36e7e990ea..9f8b9315b8 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHardware.md +++ b/content/reference/services/SoftLayer_User_Customer/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHardwareCount.md b/content/reference/services/SoftLayer_User_Customer/getHardwareCount.md index d00bd8eac9..a3e5ea0ad5 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHardwareCount.md +++ b/content/reference/services/SoftLayer_User_Customer/getHardwareCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHardwareCount-example) {#getHardwareCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHardwareCount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHardwareNotifications.md b/content/reference/services/SoftLayer_User_Customer/getHardwareNotifications.md index 510d771917..10537e24c3 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHardwareNotifications.md +++ b/content/reference/services/SoftLayer_User_Customer/getHardwareNotifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHardwareNotifications-example) {#getHardwareNotifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHardwareNotifications' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHasAcknowledgedSupportPolicyFlag.md b/content/reference/services/SoftLayer_User_Customer/getHasAcknowledgedSupportPolicyFlag.md index 0be6a81253..df8971352c 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHasAcknowledgedSupportPolicyFlag.md +++ b/content/reference/services/SoftLayer_User_Customer/getHasAcknowledgedSupportPolicyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHasAcknowledgedSupportPolicyFlag-example) {#getHasAcknowledgedSupportPolicyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHasAcknowledgedSupportPolicyFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHasFullDedicatedHostAccessFlag.md b/content/reference/services/SoftLayer_User_Customer/getHasFullDedicatedHostAccessFlag.md index 27475e19a2..739ea98c67 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHasFullDedicatedHostAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer/getHasFullDedicatedHostAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHasFullDedicatedHostAccessFlag-example) {#getHasFullDedicatedHostAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHasFullDedicatedHostAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHasFullHardwareAccessFlag.md b/content/reference/services/SoftLayer_User_Customer/getHasFullHardwareAccessFlag.md index 46f2104679..7f3f2aec99 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHasFullHardwareAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer/getHasFullHardwareAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHasFullHardwareAccessFlag-example) {#getHasFullHardwareAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHasFullHardwareAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getHasFullVirtualGuestAccessFlag.md b/content/reference/services/SoftLayer_User_Customer/getHasFullVirtualGuestAccessFlag.md index 01cd5c8f5f..a046b8caf5 100644 --- a/content/reference/services/SoftLayer_User_Customer/getHasFullVirtualGuestAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer/getHasFullVirtualGuestAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getHasFullVirtualGuestAccessFlag-example) {#getHasFullVirtualGuestAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getHasFullVirtualGuestAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getIbmIdLink.md b/content/reference/services/SoftLayer_User_Customer/getIbmIdLink.md index 7298b3b564..027680482c 100644 --- a/content/reference/services/SoftLayer_User_Customer/getIbmIdLink.md +++ b/content/reference/services/SoftLayer_User_Customer/getIbmIdLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getIbmIdLink-example) {#getIbmIdLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getIbmIdLink' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getImpersonationToken.md b/content/reference/services/SoftLayer_User_Customer/getImpersonationToken.md index a91b1d3866..eee8e39e88 100644 --- a/content/reference/services/SoftLayer_User_Customer/getImpersonationToken.md +++ b/content/reference/services/SoftLayer_User_Customer/getImpersonationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getImpersonationToken-example) {#getImpersonationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getImpersonationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getLayoutProfiles.md b/content/reference/services/SoftLayer_User_Customer/getLayoutProfiles.md index 66e54e7338..9731a5e2d5 100644 --- a/content/reference/services/SoftLayer_User_Customer/getLayoutProfiles.md +++ b/content/reference/services/SoftLayer_User_Customer/getLayoutProfiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getLayoutProfiles-example) {#getLayoutProfiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getLayoutProfiles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getLocale.md b/content/reference/services/SoftLayer_User_Customer/getLocale.md index 634446d9b3..c8e661cb99 100644 --- a/content/reference/services/SoftLayer_User_Customer/getLocale.md +++ b/content/reference/services/SoftLayer_User_Customer/getLocale.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getLocale-example) {#getLocale-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getLocale' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getLoginAttempts.md b/content/reference/services/SoftLayer_User_Customer/getLoginAttempts.md index fd9ad3d8a9..f1f7b3d839 100644 --- a/content/reference/services/SoftLayer_User_Customer/getLoginAttempts.md +++ b/content/reference/services/SoftLayer_User_Customer/getLoginAttempts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getLoginAttempts-example) {#getLoginAttempts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getLoginAttempts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getLoginToken.md b/content/reference/services/SoftLayer_User_Customer/getLoginToken.md index df8b34f4ba..d9645965f7 100644 --- a/content/reference/services/SoftLayer_User_Customer/getLoginToken.md +++ b/content/reference/services/SoftLayer_User_Customer/getLoginToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getLoginToken-example) {#getLoginToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Authentication_Request_Contract]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Authentication_Request_Contract]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/getLoginToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getMappedAccounts.md b/content/reference/services/SoftLayer_User_Customer/getMappedAccounts.md index 832eb0a401..fa67861cc4 100644 --- a/content/reference/services/SoftLayer_User_Customer/getMappedAccounts.md +++ b/content/reference/services/SoftLayer_User_Customer/getMappedAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getMappedAccounts-example) {#getMappedAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getMappedAccounts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getNotificationSubscribers.md b/content/reference/services/SoftLayer_User_Customer/getNotificationSubscribers.md index dbe83f0fdc..14d7450848 100644 --- a/content/reference/services/SoftLayer_User_Customer/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_User_Customer/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getObject.md b/content/reference/services/SoftLayer_User_Customer/getObject.md index 0e14357d2f..271c68273e 100644 --- a/content/reference/services/SoftLayer_User_Customer/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getOpenIdConnectMigrationState.md b/content/reference/services/SoftLayer_User_Customer/getOpenIdConnectMigrationState.md index 24efa2d04d..aeb20cc5d5 100644 --- a/content/reference/services/SoftLayer_User_Customer/getOpenIdConnectMigrationState.md +++ b/content/reference/services/SoftLayer_User_Customer/getOpenIdConnectMigrationState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getOpenIdConnectMigrationState-example) {#getOpenIdConnectMigrationState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getOpenIdConnectMigrationState' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getOpenTickets.md b/content/reference/services/SoftLayer_User_Customer/getOpenTickets.md index a3b56da3a9..a4a4fb1802 100644 --- a/content/reference/services/SoftLayer_User_Customer/getOpenTickets.md +++ b/content/reference/services/SoftLayer_User_Customer/getOpenTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getOpenTickets-example) {#getOpenTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getOpenTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getOverrides.md b/content/reference/services/SoftLayer_User_Customer/getOverrides.md index a34cfded28..cd63197d55 100644 --- a/content/reference/services/SoftLayer_User_Customer/getOverrides.md +++ b/content/reference/services/SoftLayer_User_Customer/getOverrides.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getOverrides-example) {#getOverrides-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getOverrides' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getParent.md b/content/reference/services/SoftLayer_User_Customer/getParent.md index 5c3acbd416..89f9b32477 100644 --- a/content/reference/services/SoftLayer_User_Customer/getParent.md +++ b/content/reference/services/SoftLayer_User_Customer/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getPasswordRequirements.md b/content/reference/services/SoftLayer_User_Customer/getPasswordRequirements.md index 2a2deaa12d..777ea753d6 100644 --- a/content/reference/services/SoftLayer_User_Customer/getPasswordRequirements.md +++ b/content/reference/services/SoftLayer_User_Customer/getPasswordRequirements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getPasswordRequirements-example) {#getPasswordRequirements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/getPasswordRequirements' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getPermissions.md b/content/reference/services/SoftLayer_User_Customer/getPermissions.md index e40adc6057..557ec94359 100644 --- a/content/reference/services/SoftLayer_User_Customer/getPermissions.md +++ b/content/reference/services/SoftLayer_User_Customer/getPermissions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getPermissions-example) {#getPermissions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getPermissions' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getPortalLoginToken.md b/content/reference/services/SoftLayer_User_Customer/getPortalLoginToken.md index 56e82c9570..cda007b442 100644 --- a/content/reference/services/SoftLayer_User_Customer/getPortalLoginToken.md +++ b/content/reference/services/SoftLayer_User_Customer/getPortalLoginToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getPortalLoginToken-example) {#getPortalLoginToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/getPortalLoginToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getPreference.md b/content/reference/services/SoftLayer_User_Customer/getPreference.md index e63976fa25..e9b0f33041 100644 --- a/content/reference/services/SoftLayer_User_Customer/getPreference.md +++ b/content/reference/services/SoftLayer_User_Customer/getPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getPreference-example) {#getPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getPreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getPreferenceTypes.md b/content/reference/services/SoftLayer_User_Customer/getPreferenceTypes.md index 02483b54f5..e4e1c009f3 100644 --- a/content/reference/services/SoftLayer_User_Customer/getPreferenceTypes.md +++ b/content/reference/services/SoftLayer_User_Customer/getPreferenceTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getPreferenceTypes-example) {#getPreferenceTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getPreferenceTypes' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getPreferences.md b/content/reference/services/SoftLayer_User_Customer/getPreferences.md index 5ee320a1c0..2c2dc4a09c 100644 --- a/content/reference/services/SoftLayer_User_Customer/getPreferences.md +++ b/content/reference/services/SoftLayer_User_Customer/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getRequirementsForPasswordSet.md b/content/reference/services/SoftLayer_User_Customer/getRequirementsForPasswordSet.md index 8fe8ce0ce2..02e14c1cd5 100644 --- a/content/reference/services/SoftLayer_User_Customer/getRequirementsForPasswordSet.md +++ b/content/reference/services/SoftLayer_User_Customer/getRequirementsForPasswordSet.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getRequirementsForPasswordSet-example) {#getRequirementsForPasswordSet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getRequirementsForPasswordSet' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getRoles.md b/content/reference/services/SoftLayer_User_Customer/getRoles.md index 4aca52944e..f48bbe34dc 100644 --- a/content/reference/services/SoftLayer_User_Customer/getRoles.md +++ b/content/reference/services/SoftLayer_User_Customer/getRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getRoles-example) {#getRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer/getSecurityAnswers.md index 36341a168c..3cb129b76e 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer/getSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSecurityAnswers-example) {#getSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSubscribers.md b/content/reference/services/SoftLayer_User_Customer/getSubscribers.md index b7e411d67a..d2e678c99c 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSubscribers.md +++ b/content/reference/services/SoftLayer_User_Customer/getSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSubscribers-example) {#getSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSubscribers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSuccessfulLogins.md b/content/reference/services/SoftLayer_User_Customer/getSuccessfulLogins.md index d51c181410..8b7a4a2487 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSuccessfulLogins.md +++ b/content/reference/services/SoftLayer_User_Customer/getSuccessfulLogins.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSuccessfulLogins-example) {#getSuccessfulLogins-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSuccessfulLogins' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSupportPolicyAcknowledgementRequiredFlag.md b/content/reference/services/SoftLayer_User_Customer/getSupportPolicyAcknowledgementRequiredFlag.md index a0160d8618..7c01d997ec 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSupportPolicyAcknowledgementRequiredFlag.md +++ b/content/reference/services/SoftLayer_User_Customer/getSupportPolicyAcknowledgementRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSupportPolicyAcknowledgementRequiredFlag-example) {#getSupportPolicyAcknowledgementRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSupportPolicyAcknowledgementRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSupportPolicyDocument.md b/content/reference/services/SoftLayer_User_Customer/getSupportPolicyDocument.md index 7f77905299..8c77ca2466 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSupportPolicyDocument.md +++ b/content/reference/services/SoftLayer_User_Customer/getSupportPolicyDocument.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSupportPolicyDocument-example) {#getSupportPolicyDocument-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSupportPolicyDocument' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSupportPolicyName.md b/content/reference/services/SoftLayer_User_Customer/getSupportPolicyName.md index a21b1e3760..37233e1162 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSupportPolicyName.md +++ b/content/reference/services/SoftLayer_User_Customer/getSupportPolicyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSupportPolicyName-example) {#getSupportPolicyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSupportPolicyName' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSupportedLocales.md b/content/reference/services/SoftLayer_User_Customer/getSupportedLocales.md index 8411974244..9f64163bdd 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSupportedLocales.md +++ b/content/reference/services/SoftLayer_User_Customer/getSupportedLocales.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSupportedLocales-example) {#getSupportedLocales-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSupportedLocales' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSurveyRequiredFlag.md b/content/reference/services/SoftLayer_User_Customer/getSurveyRequiredFlag.md index 79cc989cbf..ea96c7ecfa 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSurveyRequiredFlag.md +++ b/content/reference/services/SoftLayer_User_Customer/getSurveyRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSurveyRequiredFlag-example) {#getSurveyRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSurveyRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getSurveys.md b/content/reference/services/SoftLayer_User_Customer/getSurveys.md index 9a1a138136..36fb4660ea 100644 --- a/content/reference/services/SoftLayer_User_Customer/getSurveys.md +++ b/content/reference/services/SoftLayer_User_Customer/getSurveys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getSurveys-example) {#getSurveys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getSurveys' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getTickets.md b/content/reference/services/SoftLayer_User_Customer/getTickets.md index 7fba49c33f..18170b6b88 100644 --- a/content/reference/services/SoftLayer_User_Customer/getTickets.md +++ b/content/reference/services/SoftLayer_User_Customer/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getTimezone.md b/content/reference/services/SoftLayer_User_Customer/getTimezone.md index 356c25657e..f8e6e99c41 100644 --- a/content/reference/services/SoftLayer_User_Customer/getTimezone.md +++ b/content/reference/services/SoftLayer_User_Customer/getTimezone.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getTimezone-example) {#getTimezone-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getTimezone' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getUnsuccessfulLogins.md b/content/reference/services/SoftLayer_User_Customer/getUnsuccessfulLogins.md index 09d6e683d8..253092ffa4 100644 --- a/content/reference/services/SoftLayer_User_Customer/getUnsuccessfulLogins.md +++ b/content/reference/services/SoftLayer_User_Customer/getUnsuccessfulLogins.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getUnsuccessfulLogins-example) {#getUnsuccessfulLogins-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getUnsuccessfulLogins' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getUserIdForPasswordSet.md b/content/reference/services/SoftLayer_User_Customer/getUserIdForPasswordSet.md index b698201a8e..2bb731ac8f 100644 --- a/content/reference/services/SoftLayer_User_Customer/getUserIdForPasswordSet.md +++ b/content/reference/services/SoftLayer_User_Customer/getUserIdForPasswordSet.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getUserIdForPasswordSet-example) {#getUserIdForPasswordSet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/getUserIdForPasswordSet' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getUserLinks.md b/content/reference/services/SoftLayer_User_Customer/getUserLinks.md index 6b4736787e..9dcff6b86f 100644 --- a/content/reference/services/SoftLayer_User_Customer/getUserLinks.md +++ b/content/reference/services/SoftLayer_User_Customer/getUserLinks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getUserLinks-example) {#getUserLinks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getUserLinks' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getUserPreferences.md b/content/reference/services/SoftLayer_User_Customer/getUserPreferences.md index a652c50f87..a55695bd40 100644 --- a/content/reference/services/SoftLayer_User_Customer/getUserPreferences.md +++ b/content/reference/services/SoftLayer_User_Customer/getUserPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getUserPreferences-example) {#getUserPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getUserPreferences' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getUserStatus.md b/content/reference/services/SoftLayer_User_Customer/getUserStatus.md index 5be9a77c1e..77767a38d4 100644 --- a/content/reference/services/SoftLayer_User_Customer/getUserStatus.md +++ b/content/reference/services/SoftLayer_User_Customer/getUserStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getUserStatus-example) {#getUserStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getUserStatus' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getVirtualGuestCount.md b/content/reference/services/SoftLayer_User_Customer/getVirtualGuestCount.md index acd9f78fda..1e9df5fff9 100644 --- a/content/reference/services/SoftLayer_User_Customer/getVirtualGuestCount.md +++ b/content/reference/services/SoftLayer_User_Customer/getVirtualGuestCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getVirtualGuestCount-example) {#getVirtualGuestCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getVirtualGuestCount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/getVirtualGuests.md b/content/reference/services/SoftLayer_User_Customer/getVirtualGuests.md index 1c990a64ea..cf55ae4c29 100644 --- a/content/reference/services/SoftLayer_User_Customer/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_User_Customer/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/inTerminalStatus.md b/content/reference/services/SoftLayer_User_Customer/inTerminalStatus.md index e19653798f..a51e829914 100644 --- a/content/reference/services/SoftLayer_User_Customer/inTerminalStatus.md +++ b/content/reference/services/SoftLayer_User_Customer/inTerminalStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#inTerminalStatus-example) {#inTerminalStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/inTerminalStatus' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChange.md b/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChange.md index c4eb813254..9cad29a598 100644 --- a/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChange.md +++ b/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChange.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#initiatePortalPasswordChange-example) {#initiatePortalPasswordChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/initiatePortalPasswordChange' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChangeByBrandAgent.md b/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChangeByBrandAgent.md index d3dfdd2ff2..1403fd0f6b 100644 --- a/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChangeByBrandAgent.md +++ b/content/reference/services/SoftLayer_User_Customer/initiatePortalPasswordChangeByBrandAgent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#initiatePortalPasswordChangeByBrandAgent-example) {#initiatePortalPasswordChangeByBrandAgent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/initiatePortalPasswordChangeByBrandAgent' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/inviteUserToLinkOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer/inviteUserToLinkOpenIdConnect.md index 3168851be0..8315a8e6b8 100644 --- a/content/reference/services/SoftLayer_User_Customer/inviteUserToLinkOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer/inviteUserToLinkOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#inviteUserToLinkOpenIdConnect-example) {#inviteUserToLinkOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/inviteUserToLinkOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/isMasterUser.md b/content/reference/services/SoftLayer_User_Customer/isMasterUser.md index b322dcdabf..11072275be 100644 --- a/content/reference/services/SoftLayer_User_Customer/isMasterUser.md +++ b/content/reference/services/SoftLayer_User_Customer/isMasterUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#isMasterUser-example) {#isMasterUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/isMasterUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/isValidPortalPassword.md b/content/reference/services/SoftLayer_User_Customer/isValidPortalPassword.md index a6502594dd..ece4f84863 100644 --- a/content/reference/services/SoftLayer_User_Customer/isValidPortalPassword.md +++ b/content/reference/services/SoftLayer_User_Customer/isValidPortalPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#isValidPortalPassword-example) {#isValidPortalPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/isValidPortalPassword' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/performExternalAuthentication.md b/content/reference/services/SoftLayer_User_Customer/performExternalAuthentication.md index 2f2c98728c..b912682db3 100644 --- a/content/reference/services/SoftLayer_User_Customer/performExternalAuthentication.md +++ b/content/reference/services/SoftLayer_User_Customer/performExternalAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#performExternalAuthentication-example) {#performExternalAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/performExternalAuthentication' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/processPasswordSetRequest.md b/content/reference/services/SoftLayer_User_Customer/processPasswordSetRequest.md index 292bfd5be8..2953e7de24 100644 --- a/content/reference/services/SoftLayer_User_Customer/processPasswordSetRequest.md +++ b/content/reference/services/SoftLayer_User_Customer/processPasswordSetRequest.md @@ -24,8 +24,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#processPasswordSetRequest-example) {#processPasswordSetRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet, SoftLayer_Container_User_Customer_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet, SoftLayer_Container_User_Customer_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/processPasswordSetRequest' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeAllDedicatedHostAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer/removeAllDedicatedHostAccessForThisUser.md index 290017eca9..da222dedfd 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeAllDedicatedHostAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer/removeAllDedicatedHostAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeAllDedicatedHostAccessForThisUser-example) {#removeAllDedicatedHostAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeAllDedicatedHostAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeAllHardwareAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer/removeAllHardwareAccessForThisUser.md index 7e13e48ac8..6ec8fce80d 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeAllHardwareAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer/removeAllHardwareAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeAllHardwareAccessForThisUser-example) {#removeAllHardwareAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeAllHardwareAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeAllVirtualAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer/removeAllVirtualAccessForThisUser.md index 4df88016c2..119811ce13 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeAllVirtualAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer/removeAllVirtualAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeAllVirtualAccessForThisUser-example) {#removeAllVirtualAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeAllVirtualAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeApiAuthenticationKey.md b/content/reference/services/SoftLayer_User_Customer/removeApiAuthenticationKey.md index 8b2ca95733..0a3398e2e0 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeApiAuthenticationKey.md +++ b/content/reference/services/SoftLayer_User_Customer/removeApiAuthenticationKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeApiAuthenticationKey-example) {#removeApiAuthenticationKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/removeApiAuthenticationKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeBulkDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer/removeBulkDedicatedHostAccess.md index 75aeeb2240..a0add1485b 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeBulkDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/removeBulkDedicatedHostAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeBulkDedicatedHostAccess-example) {#removeBulkDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeBulkDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeBulkHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer/removeBulkHardwareAccess.md index 84faa4280d..a6a0f99aca 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeBulkHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/removeBulkHardwareAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeBulkHardwareAccess-example) {#removeBulkHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeBulkHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeBulkPortalPermission.md b/content/reference/services/SoftLayer_User_Customer/removeBulkPortalPermission.md index f47dad0b61..da67b42173 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeBulkPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer/removeBulkPortalPermission.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeBulkPortalPermission-example) {#removeBulkPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeBulkPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeBulkRoles.md b/content/reference/services/SoftLayer_User_Customer/removeBulkRoles.md index 1076213e49..10f8b96bd9 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeBulkRoles.md +++ b/content/reference/services/SoftLayer_User_Customer/removeBulkRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeBulkRoles-example) {#removeBulkRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeBulkRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeBulkVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer/removeBulkVirtualGuestAccess.md index ffa8cde083..0b8f3e1ef8 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeBulkVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/removeBulkVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeBulkVirtualGuestAccess-example) {#removeBulkVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeBulkVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer/removeDedicatedHostAccess.md index fffb8df960..32277b031f 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/removeDedicatedHostAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeDedicatedHostAccess-example) {#removeDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeExternalBinding.md b/content/reference/services/SoftLayer_User_Customer/removeExternalBinding.md index 639a2baca7..227f44cb84 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeExternalBinding.md +++ b/content/reference/services/SoftLayer_User_Customer/removeExternalBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeExternalBinding-example) {#removeExternalBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeExternalBinding' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer/removeHardwareAccess.md index a29d5f8170..db0dc7427b 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/removeHardwareAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeHardwareAccess-example) {#removeHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removePortalPermission.md b/content/reference/services/SoftLayer_User_Customer/removePortalPermission.md index 9a7a4164e1..3753d8e8ff 100644 --- a/content/reference/services/SoftLayer_User_Customer/removePortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer/removePortalPermission.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removePortalPermission-example) {#removePortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removePortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeRole.md b/content/reference/services/SoftLayer_User_Customer/removeRole.md index bae1b1f6ad..1b2c3218bb 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeRole.md +++ b/content/reference/services/SoftLayer_User_Customer/removeRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeRole-example) {#removeRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeRole' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer/removeSecurityAnswers.md index 0a47fa02cf..db8d08f2c3 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer/removeSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeSecurityAnswers-example) {#removeSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/removeVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer/removeVirtualGuestAccess.md index f61689f8ca..afe4de20db 100644 --- a/content/reference/services/SoftLayer_User_Customer/removeVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer/removeVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#removeVirtualGuestAccess-example) {#removeVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/removeVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLink.md b/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLink.md index 77ccbf1bf4..94b4d65368 100644 --- a/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLink.md +++ b/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#resetOpenIdConnectLink-example) {#resetOpenIdConnectLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/resetOpenIdConnectLink' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLinkUnifiedUserManagementMode.md b/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLinkUnifiedUserManagementMode.md index e8f88a73a3..4c9f9bb48f 100644 --- a/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLinkUnifiedUserManagementMode.md +++ b/content/reference/services/SoftLayer_User_Customer/resetOpenIdConnectLinkUnifiedUserManagementMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#resetOpenIdConnectLinkUnifiedUserManagementMode-example) {#resetOpenIdConnectLinkUnifiedUserManagementMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/resetOpenIdConnectLinkUnifiedUserManagementMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/samlAuthenticate.md b/content/reference/services/SoftLayer_User_Customer/samlAuthenticate.md index 0711f824ac..acf99fe8e4 100644 --- a/content/reference/services/SoftLayer_User_Customer/samlAuthenticate.md +++ b/content/reference/services/SoftLayer_User_Customer/samlAuthenticate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#samlAuthenticate-example) {#samlAuthenticate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/samlAuthenticate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/samlBeginAuthentication.md b/content/reference/services/SoftLayer_User_Customer/samlBeginAuthentication.md index c474ec0357..c059bed93d 100644 --- a/content/reference/services/SoftLayer_User_Customer/samlBeginAuthentication.md +++ b/content/reference/services/SoftLayer_User_Customer/samlBeginAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#samlBeginAuthentication-example) {#samlBeginAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/samlBeginAuthentication' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/samlBeginLogout.md b/content/reference/services/SoftLayer_User_Customer/samlBeginLogout.md index 5a865072e2..11580972f8 100644 --- a/content/reference/services/SoftLayer_User_Customer/samlBeginLogout.md +++ b/content/reference/services/SoftLayer_User_Customer/samlBeginLogout.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#samlBeginLogout-example) {#samlBeginLogout-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/samlBeginLogout' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/samlLogout.md b/content/reference/services/SoftLayer_User_Customer/samlLogout.md index 9b1b216ac3..714ebbadd4 100644 --- a/content/reference/services/SoftLayer_User_Customer/samlLogout.md +++ b/content/reference/services/SoftLayer_User_Customer/samlLogout.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#samlLogout-example) {#samlLogout-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/samlLogout' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/selfPasswordChange.md b/content/reference/services/SoftLayer_User_Customer/selfPasswordChange.md index b429a82719..7f5faa57ca 100644 --- a/content/reference/services/SoftLayer_User_Customer/selfPasswordChange.md +++ b/content/reference/services/SoftLayer_User_Customer/selfPasswordChange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#selfPasswordChange-example) {#selfPasswordChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/selfPasswordChange' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/setDefaultAccount.md b/content/reference/services/SoftLayer_User_Customer/setDefaultAccount.md index 5449be9580..7d11bb833f 100644 --- a/content/reference/services/SoftLayer_User_Customer/setDefaultAccount.md +++ b/content/reference/services/SoftLayer_User_Customer/setDefaultAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#setDefaultAccount-example) {#setDefaultAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/setDefaultAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/silentlyMigrateUserOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer/silentlyMigrateUserOpenIdConnect.md index c999a4fc02..70915740e2 100644 --- a/content/reference/services/SoftLayer_User_Customer/silentlyMigrateUserOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer/silentlyMigrateUserOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#silentlyMigrateUserOpenIdConnect-example) {#silentlyMigrateUserOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/silentlyMigrateUserOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/turnOffMasterUserPermissionCheckMode.md b/content/reference/services/SoftLayer_User_Customer/turnOffMasterUserPermissionCheckMode.md index 5153317b16..ca5b8cab14 100644 --- a/content/reference/services/SoftLayer_User_Customer/turnOffMasterUserPermissionCheckMode.md +++ b/content/reference/services/SoftLayer_User_Customer/turnOffMasterUserPermissionCheckMode.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#turnOffMasterUserPermissionCheckMode-example) {#turnOffMasterUserPermissionCheckMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/turnOffMasterUserPermissionCheckMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/turnOnMasterUserPermissionCheckMode.md b/content/reference/services/SoftLayer_User_Customer/turnOnMasterUserPermissionCheckMode.md index 318f49ced0..6b10c67655 100644 --- a/content/reference/services/SoftLayer_User_Customer/turnOnMasterUserPermissionCheckMode.md +++ b/content/reference/services/SoftLayer_User_Customer/turnOnMasterUserPermissionCheckMode.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#turnOnMasterUserPermissionCheckMode-example) {#turnOnMasterUserPermissionCheckMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/turnOnMasterUserPermissionCheckMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/updateNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer/updateNotificationSubscriber.md index 979f7c903b..1830559a0e 100644 --- a/content/reference/services/SoftLayer_User_Customer/updateNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer/updateNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#updateNotificationSubscriber-example) {#updateNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/updateNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/updateSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer/updateSecurityAnswers.md index a23d495417..40d9b86864 100644 --- a/content/reference/services/SoftLayer_User_Customer/updateSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer/updateSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#updateSecurityAnswers-example) {#updateSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Security_Question, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Security_Question, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/updateSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/updateSubscriberDeliveryMethod.md b/content/reference/services/SoftLayer_User_Customer/updateSubscriberDeliveryMethod.md index 84117b4201..f54937966b 100644 --- a/content/reference/services/SoftLayer_User_Customer/updateSubscriberDeliveryMethod.md +++ b/content/reference/services/SoftLayer_User_Customer/updateSubscriberDeliveryMethod.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#updateSubscriberDeliveryMethod-example) {#updateSubscriberDeliveryMethod-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/updateSubscriberDeliveryMethod' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/updateVpnPassword.md b/content/reference/services/SoftLayer_User_Customer/updateVpnPassword.md index 90a5c41477..9e16df7880 100644 --- a/content/reference/services/SoftLayer_User_Customer/updateVpnPassword.md +++ b/content/reference/services/SoftLayer_User_Customer/updateVpnPassword.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#updateVpnPassword-example) {#updateVpnPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/updateVpnPassword' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/updateVpnUser.md b/content/reference/services/SoftLayer_User_Customer/updateVpnUser.md index 995b02625e..8790553c24 100644 --- a/content/reference/services/SoftLayer_User_Customer/updateVpnUser.md +++ b/content/reference/services/SoftLayer_User_Customer/updateVpnUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#updateVpnUser-example) {#updateVpnUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/{SoftLayer_User_CustomerID}/updateVpnUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer/validateAuthenticationToken.md b/content/reference/services/SoftLayer_User_Customer/validateAuthenticationToken.md index 62a11bc25b..bc7702fb42 100644 --- a/content/reference/services/SoftLayer_User_Customer/validateAuthenticationToken.md +++ b/content/reference/services/SoftLayer_User_Customer/validateAuthenticationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer" --- -### Curl Example +# [REST Example](#validateAuthenticationToken-example) {#validateAuthenticationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer/validateAuthenticationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/editObject.md b/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/editObject.md index d0e7722d65..9200458e91 100644 --- a/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/editObject.md +++ b/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_ApiAuthentication" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_ApiAuthentication]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_ApiAuthentication]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_ApiAuthentication/{SoftLayer_User_Customer_ApiAuthenticationID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getObject.md b/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getObject.md index 308b318213..458991d014 100644 --- a/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_ApiAuthentication" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_ApiAuthentication/{SoftLayer_User_Customer_ApiAuthenticationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getUser.md b/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getUser.md index a44e395092..4ef20a3e6c 100644 --- a/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_ApiAuthentication/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_ApiAuthentication" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_ApiAuthentication/{SoftLayer_User_Customer_ApiAuthenticationID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getAllObjects.md b/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getAllObjects.md index 66228441e3..05fec8c5fa 100644 --- a/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_CustomerPermission_Permission" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_CustomerPermission_Permission/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getObject.md b/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getObject.md index 52a72efcb7..66f67b126f 100644 --- a/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_CustomerPermission_Permission/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_CustomerPermission_Permission" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_CustomerPermission_Permission/{SoftLayer_User_Customer_CustomerPermission_PermissionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/deleteObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/deleteObject.md index d11148683c..c5b35f9cd9 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/deleteObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/disable.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/disable.md index eab6d2bae9..e2ca7a3050 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/disable.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/disable.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#disable-example) {#disable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/disable' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/enable.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/enable.md index f2ab84783f..042da22372 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/enable.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/enable.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#enable-example) {#enable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/enable' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getAttributes.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getAttributes.md index 8aa4010d59..8b40276a06 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getAttributes.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getBillingItem.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getBillingItem.md index 67ff1eda2f..5fd5092661 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getBillingItem.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getNote.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getNote.md index a47baf9446..846862d825 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getNote.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getNote-example) {#getNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getNote' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getObject.md index 7b0c465f67..c3bb8e97d8 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getType.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getType.md index 0d9b57cefd..7b86f60b22 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getType.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getType' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getUser.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getUser.md index fa54050016..177ea3f779 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/getVendor.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/getVendor.md index 96ea10f9b3..8afbc23091 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/getVendor.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/getVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#getVendor-example) {#getVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/getVendor' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding/updateNote.md b/content/reference/services/SoftLayer_User_Customer_External_Binding/updateNote.md index 65a543cc98..c58f9ad0df 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding/updateNote.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding/updateNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding" --- -### Curl Example +# [REST Example](#updateNote-example) {#updateNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding/{SoftLayer_User_Customer_External_BindingID}/updateNote' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/activate.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/activate.md index 1896729f93..bd6d98782b 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/activate.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/activate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#activate-example) {#activate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/activate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deactivate.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deactivate.md index 2f742fe8cf..37e167c348 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deactivate.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deactivate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#deactivate-example) {#deactivate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/deactivate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deleteObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deleteObject.md index dc13fb1ea7..2065770b63 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deleteObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/disable.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/disable.md index f0f6e09b24..721e4c7063 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/disable.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/disable.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#disable-example) {#disable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/disable' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/enable.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/enable.md index 3a083c1296..1f65181571 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/enable.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/enable.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#enable-example) {#enable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/enable' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/generateSecretKey.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/generateSecretKey.md index 29d764a485..ffacbdd981 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/generateSecretKey.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/generateSecretKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#generateSecretKey-example) {#generateSecretKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/generateSecretKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getAttributes.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getAttributes.md index a64dfbc83b..182bc8ad3f 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getAttributes.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getBillingItem.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getBillingItem.md index 39f1ad7bee..b6d00fe80f 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getBillingItem.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getNote.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getNote.md index 39f5da4cb5..170c3ba00c 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getNote.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getNote-example) {#getNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getNote' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getObject.md index 3ca6684ef7..73b4bd59a2 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getType.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getType.md index 897730785d..e7808141e1 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getType.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getType' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getUser.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getUser.md index 2ddc9fe8df..2f18aecb0d 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getVendor.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getVendor.md index 74cd6230c8..37d0c1a79e 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getVendor.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/getVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#getVendor-example) {#getVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/getVendor' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/updateNote.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/updateNote.md index 4e7a524cf2..813875248f 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/updateNote.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Totp/updateNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Totp" --- -### Curl Example +# [REST Example](#updateNote-example) {#updateNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Totp/{SoftLayer_User_Customer_External_Binding_TotpID}/updateNote' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getAllObjects.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getAllObjects.md index ea2631c268..2e6b05fdd3 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Vendor" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Vendor/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getObject.md index e824fa84c1..a75faa9e44 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Vendor/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Vendor" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Vendor/{SoftLayer_User_Customer_External_Binding_VendorID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/deleteObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/deleteObject.md index 5e3638c304..ca8ff630b9 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/deleteObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/deleteObject.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/disable.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/disable.md index 22e37601fa..effab5c565 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/disable.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/disable.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#disable-example) {#disable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/disable' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/enable.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/enable.md index 206eae2a1c..7d28acb692 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/enable.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/enable.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#enable-example) {#enable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/enable' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getActivationCodeForMobileClient.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getActivationCodeForMobileClient.md index 59f8f3f961..67d487be4d 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getActivationCodeForMobileClient.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getActivationCodeForMobileClient.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getActivationCodeForMobileClient-example) {#getActivationCodeForMobileClient-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/getActivationCodeForMobileClient' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getAttributes.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getAttributes.md index 0fba0a70ca..fa191ec84f 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getAttributes.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getBillingItem.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getBillingItem.md index 216d021df9..91bd22f4e1 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getBillingItem.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialExpirationDate.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialExpirationDate.md index 67aed8923f..6a31438795 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialExpirationDate.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialExpirationDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getCredentialExpirationDate-example) {#getCredentialExpirationDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getCredentialExpirationDate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialLastUpdateDate.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialLastUpdateDate.md index fafc6ed44c..a97ac99d10 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialLastUpdateDate.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialLastUpdateDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getCredentialLastUpdateDate-example) {#getCredentialLastUpdateDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getCredentialLastUpdateDate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialState.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialState.md index d2b8d5d394..5deaf5ff3c 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialState.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getCredentialState-example) {#getCredentialState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getCredentialState' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialType.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialType.md index 22645ff3ef..69f831ea1c 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialType.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getCredentialType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getCredentialType-example) {#getCredentialType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getCredentialType' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getNote.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getNote.md index ec639276f9..76cadb6660 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getNote.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getNote-example) {#getNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getNote' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getObject.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getObject.md index 5e73822084..6d073516f4 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getType.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getType.md index 5665612dce..f64775fd79 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getType.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getType' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getUser.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getUser.md index 02ac87cc9c..4ea21cd5b9 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getVendor.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getVendor.md index cb370d0ce4..d7441fe308 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getVendor.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/getVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#getVendor-example) {#getVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/getVendor' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/unlock.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/unlock.md index 552329565c..9c1d307d4d 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/unlock.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/unlock.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#unlock-example) {#unlock-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/unlock' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/updateNote.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/updateNote.md index 5cba0f72f8..4066dfefe6 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/updateNote.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/updateNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#updateNote-example) {#updateNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/{SoftLayer_User_Customer_External_Binding_VerisignID}/updateNote' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/validateCredentialId.md b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/validateCredentialId.md index c3bc6d04c2..fd33367322 100644 --- a/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/validateCredentialId.md +++ b/content/reference/services/SoftLayer_User_Customer_External_Binding_Verisign/validateCredentialId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_External_Binding_Verisign" --- -### Curl Example +# [REST Example](#validateCredentialId-example) {#validateCredentialId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_External_Binding_Verisign/validateCredentialId' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Invitation/getObject.md b/content/reference/services/SoftLayer_User_Customer_Invitation/getObject.md index 5bdbcca651..2d5d778379 100644 --- a/content/reference/services/SoftLayer_User_Customer_Invitation/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Invitation/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Invitation" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Invitation/{SoftLayer_User_Customer_InvitationID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Invitation/getUser.md b/content/reference/services/SoftLayer_User_Customer_Invitation/getUser.md index f82bc15571..8e26cb14f4 100644 --- a/content/reference/services/SoftLayer_User_Customer_Invitation/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_Invitation/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Invitation" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Invitation/{SoftLayer_User_Customer_InvitationID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObject.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObject.md index 79bfa49df6..9961797b7e 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObjects.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObjects.md index 8ee238889f..99087f8b0b 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/createObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/deleteObjects.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/deleteObjects.md index 1a5ba37331..1d98603b74 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/deleteObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Hardware]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Hardware]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/findByHardwareId.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/findByHardwareId.md index b28b47bfe2..cfb93a58fb 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/findByHardwareId.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/findByHardwareId.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#findByHardwareId-example) {#findByHardwareId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/findByHardwareId' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getHardware.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getHardware.md index 642a871f52..2a56f246cb 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getHardware.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/{SoftLayer_User_Customer_Notification_HardwareID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getObject.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getObject.md index 4f0fd97ab0..56d8e7495d 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/{SoftLayer_User_Customer_Notification_HardwareID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getUser.md b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getUser.md index ba8ee9191b..e33720ede3 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Hardware/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Hardware" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Hardware/{SoftLayer_User_Customer_Notification_HardwareID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObject.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObject.md index a42d66fce8..fe39e4fc09 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObjects.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObjects.md index b864a4045d..501119fcef 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/createObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/createObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/deleteObjects.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/deleteObjects.md index 725cad6ffb..19ad287e6f 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/deleteObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/deleteObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#deleteObjects-example) {#deleteObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Notification_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/deleteObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/findByGuestId.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/findByGuestId.md index 3de3b86e5b..fba3d5cf10 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/findByGuestId.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/findByGuestId.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#findByGuestId-example) {#findByGuestId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/findByGuestId' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getGuest.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getGuest.md index c7ac27d8e7..fd99c5a2df 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getGuest.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#getGuest-example) {#getGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/{SoftLayer_User_Customer_Notification_Virtual_GuestID}/getGuest' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getObject.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getObject.md index c90adc56d2..7b66e5fc11 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/{SoftLayer_User_Customer_Notification_Virtual_GuestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getUser.md b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getUser.md index 879aa9fc36..37e283d570 100644 --- a/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_Notification_Virtual_Guest/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Notification_Virtual_Guest" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Notification_Virtual_Guest/{SoftLayer_User_Customer_Notification_Virtual_GuestID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/acknowledgeSupportPolicy.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/acknowledgeSupportPolicy.md index b4e8db2e29..a3d0c3916c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/acknowledgeSupportPolicy.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/acknowledgeSupportPolicy.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#acknowledgeSupportPolicy-example) {#acknowledgeSupportPolicy-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/acknowledgeSupportPolicy' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/activateOpenIdConnectUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/activateOpenIdConnectUser.md index 5a5fcde778..1e288c2d2c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/activateOpenIdConnectUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/activateOpenIdConnectUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#activateOpenIdConnectUser-example) {#activateOpenIdConnectUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/activateOpenIdConnectUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addApiAuthenticationKey.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addApiAuthenticationKey.md index 50b8a53e71..ac906d59ad 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addApiAuthenticationKey.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addApiAuthenticationKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addApiAuthenticationKey-example) {#addApiAuthenticationKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addApiAuthenticationKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkDedicatedHostAccess.md index 2a6c977504..eeb79964fc 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkDedicatedHostAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addBulkDedicatedHostAccess-example) {#addBulkDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addBulkDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkHardwareAccess.md index c996240e14..9be8b5deca 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkHardwareAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addBulkHardwareAccess-example) {#addBulkHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addBulkHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkPortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkPortalPermission.md index cd8e3ac7b2..85b154bfd8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkPortalPermission.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addBulkPortalPermission-example) {#addBulkPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addBulkPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkRoles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkRoles.md index 5397e55737..dbeff0435e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkRoles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addBulkRoles-example) {#addBulkRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addBulkRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkVirtualGuestAccess.md index b4a77ee051..55f70df622 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addBulkVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addBulkVirtualGuestAccess-example) {#addBulkVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addBulkVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addDedicatedHostAccess.md index febf40f3f9..2b94b01548 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addDedicatedHostAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addDedicatedHostAccess-example) {#addDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addExternalBinding.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addExternalBinding.md index d810e74c16..e7639f9be7 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addExternalBinding.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addExternalBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addExternalBinding-example) {#addExternalBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addExternalBinding' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addHardwareAccess.md index 2724e1b103..436d426ae4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addHardwareAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addHardwareAccess-example) {#addHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addNotificationSubscriber.md index 9b2841a8ec..18b508fcb7 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addNotificationSubscriber-example) {#addNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addPortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addPortalPermission.md index 1aac766235..89ce1dc1cd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addPortalPermission.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addPortalPermission-example) {#addPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addRole.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addRole.md index d1a56c1a5a..e7341ee4b6 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addRole.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addRole-example) {#addRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addRole' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addVirtualGuestAccess.md index afb3d09573..f49bb0e9f9 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/addVirtualGuestAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#addVirtualGuestAccess-example) {#addVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/addVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/assignNewParentId.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/assignNewParentId.md index d1abaf0279..20eafc9f98 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/assignNewParentId.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/assignNewParentId.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#assignNewParentId-example) {#assignNewParentId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/assignNewParentId' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/changePreference.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/changePreference.md index 8fea29a117..a9ecef6862 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/changePreference.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/changePreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#changePreference-example) {#changePreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/changePreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/completeInvitationAfterLogin.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/completeInvitationAfterLogin.md index e39a441c91..8f67ca67b9 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/completeInvitationAfterLogin.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/completeInvitationAfterLogin.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#completeInvitationAfterLogin-example) {#completeInvitationAfterLogin-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/completeInvitationAfterLogin' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createNotificationSubscriber.md index 1eaf471b1e..1867382eb7 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#createNotificationSubscriber-example) {#createNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/createNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createObject.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createObject.md index b37aa99e19..5c9671326f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createObject.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createObject.md @@ -35,8 +35,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_OpenIdConnect, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_OpenIdConnect, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createOpenIdConnectUserAndCompleteInvitation.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createOpenIdConnectUserAndCompleteInvitation.md index f308424656..0f4e3d5a16 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createOpenIdConnectUserAndCompleteInvitation.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createOpenIdConnectUserAndCompleteInvitation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#createOpenIdConnectUserAndCompleteInvitation-example) {#createOpenIdConnectUserAndCompleteInvitation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/createOpenIdConnectUserAndCompleteInvitation' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createSubscriberDeliveryMethods.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createSubscriberDeliveryMethods.md index eea443fb27..792e798a65 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createSubscriberDeliveryMethods.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/createSubscriberDeliveryMethods.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#createSubscriberDeliveryMethods-example) {#createSubscriberDeliveryMethods-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/createSubscriberDeliveryMethods' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/deactivateNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/deactivateNotificationSubscriber.md index 11781dacef..fe3449c659 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/deactivateNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/deactivateNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#deactivateNotificationSubscriber-example) {#deactivateNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/deactivateNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/declineInvitation.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/declineInvitation.md index f659e75569..447d0a0ef4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/declineInvitation.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/declineInvitation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#declineInvitation-example) {#declineInvitation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/declineInvitation' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObject.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObject.md index b71a6a9e7b..b2e0826c43 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObject.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObjects.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObjects.md index 52031b8644..355fad64eb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/editObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/findUserPreference.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/findUserPreference.md index d1a4e7b3c6..543fc9b714 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/findUserPreference.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/findUserPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#findUserPreference-example) {#findUserPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/findUserPreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAccount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAccount.md index d9e8862ed1..c85c138d7c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAccount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActions.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActions.md index baec6daab4..275d6e0924 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActions.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getActions-example) {#getActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getActions' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActiveExternalAuthenticationVendors.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActiveExternalAuthenticationVendors.md index b712bff7b8..2daacd91a7 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActiveExternalAuthenticationVendors.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getActiveExternalAuthenticationVendors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getActiveExternalAuthenticationVendors-example) {#getActiveExternalAuthenticationVendors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getActiveExternalAuthenticationVendors' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAdditionalEmails.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAdditionalEmails.md index 1e5a1576c9..8c0a234a26 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAdditionalEmails.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAdditionalEmails-example) {#getAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAgentImpersonationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAgentImpersonationToken.md index f342e6d1cd..13a4c1daac 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAgentImpersonationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAgentImpersonationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAgentImpersonationToken-example) {#getAgentImpersonationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAgentImpersonationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedDedicatedHostIds.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedDedicatedHostIds.md index e2df959a6b..b040fd99aa 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedDedicatedHostIds.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedDedicatedHostIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAllowedDedicatedHostIds-example) {#getAllowedDedicatedHostIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAllowedDedicatedHostIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedHardwareIds.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedHardwareIds.md index fe9b1fe03f..5a8e3ca543 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedHardwareIds.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedHardwareIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAllowedHardwareIds-example) {#getAllowedHardwareIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAllowedHardwareIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedVirtualGuestIds.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedVirtualGuestIds.md index 0893d79c60..1e3853ae15 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedVirtualGuestIds.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAllowedVirtualGuestIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAllowedVirtualGuestIds-example) {#getAllowedVirtualGuestIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAllowedVirtualGuestIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getApiAuthenticationKeys.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getApiAuthenticationKeys.md index 3da007846a..2c2dba3e67 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getApiAuthenticationKeys.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getApiAuthenticationKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getApiAuthenticationKeys-example) {#getApiAuthenticationKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getApiAuthenticationKeys' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAuthenticationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAuthenticationToken.md index de45d2288e..24bec5c545 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAuthenticationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getAuthenticationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getAuthenticationToken-example) {#getAuthenticationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getAuthenticationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getChildUsers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getChildUsers.md index c1d23febbb..25f8dd292a 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getChildUsers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getChildUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getChildUsers-example) {#getChildUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getChildUsers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getClosedTickets.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getClosedTickets.md index f9f8f0a3a2..eb9974c2f1 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getClosedTickets.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getClosedTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getClosedTickets-example) {#getClosedTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getClosedTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDedicatedHosts.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDedicatedHosts.md index 66fb859806..656bad4b82 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDedicatedHosts.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDedicatedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getDedicatedHosts-example) {#getDedicatedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getDedicatedHosts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDefaultAccount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDefaultAccount.md index 51933c6b6f..23023b2f07 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDefaultAccount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getDefaultAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getDefaultAccount-example) {#getDefaultAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getDefaultAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getExternalBindings.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getExternalBindings.md index 218fdf2142..646e1fe16f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getExternalBindings.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getExternalBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getExternalBindings-example) {#getExternalBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getExternalBindings' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardware.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardware.md index a55202a42a..83f8f5bae1 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardware.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareCount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareCount.md index dce631efb6..3647c165c5 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareCount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHardwareCount-example) {#getHardwareCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHardwareCount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareNotifications.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareNotifications.md index 89dff92c52..380850bef8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareNotifications.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHardwareNotifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHardwareNotifications-example) {#getHardwareNotifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHardwareNotifications' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasAcknowledgedSupportPolicyFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasAcknowledgedSupportPolicyFlag.md index 6b26ae7eea..a5cd7ca741 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasAcknowledgedSupportPolicyFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasAcknowledgedSupportPolicyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHasAcknowledgedSupportPolicyFlag-example) {#getHasAcknowledgedSupportPolicyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHasAcknowledgedSupportPolicyFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullDedicatedHostAccessFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullDedicatedHostAccessFlag.md index 77114e31c5..30f6809b78 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullDedicatedHostAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullDedicatedHostAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHasFullDedicatedHostAccessFlag-example) {#getHasFullDedicatedHostAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHasFullDedicatedHostAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullHardwareAccessFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullHardwareAccessFlag.md index 48e9d41ea6..868fee1128 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullHardwareAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullHardwareAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHasFullHardwareAccessFlag-example) {#getHasFullHardwareAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHasFullHardwareAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullVirtualGuestAccessFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullVirtualGuestAccessFlag.md index 4e1f7b561c..a4b1ce7500 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullVirtualGuestAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getHasFullVirtualGuestAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getHasFullVirtualGuestAccessFlag-example) {#getHasFullVirtualGuestAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getHasFullVirtualGuestAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getIbmIdLink.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getIbmIdLink.md index d084ae27fd..b6bdfd303d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getIbmIdLink.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getIbmIdLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getIbmIdLink-example) {#getIbmIdLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getIbmIdLink' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getImpersonationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getImpersonationToken.md index 4b39cdd1a7..054d1e4b79 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getImpersonationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getImpersonationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getImpersonationToken-example) {#getImpersonationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getImpersonationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLayoutProfiles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLayoutProfiles.md index 015f653c67..8f05a26963 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLayoutProfiles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLayoutProfiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getLayoutProfiles-example) {#getLayoutProfiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getLayoutProfiles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLocale.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLocale.md index 51f15d2a55..328466638d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLocale.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLocale.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getLocale-example) {#getLocale-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getLocale' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAccountInfoOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAccountInfoOpenIdConnect.md index 4a04a5efc1..a042cadb41 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAccountInfoOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAccountInfoOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getLoginAccountInfoOpenIdConnect-example) {#getLoginAccountInfoOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getLoginAccountInfoOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAttempts.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAttempts.md index 1ca12ece73..b86fcea14c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAttempts.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginAttempts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getLoginAttempts-example) {#getLoginAttempts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getLoginAttempts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginToken.md index a86b8b7218..8753d811c2 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getLoginToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getLoginToken-example) {#getLoginToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Authentication_Request_Contract]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Authentication_Request_Contract]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getLoginToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getMappedAccounts.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getMappedAccounts.md index cd45d9df3b..c257ab011b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getMappedAccounts.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getMappedAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getMappedAccounts-example) {#getMappedAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getMappedAccounts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getNotificationSubscribers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getNotificationSubscribers.md index bc20528fe6..5a56a09f4e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getObject.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getObject.md index ba971f87a4..737d59fa75 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdConnectMigrationState.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdConnectMigrationState.md index f6644a4cfc..363eba0108 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdConnectMigrationState.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdConnectMigrationState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getOpenIdConnectMigrationState-example) {#getOpenIdConnectMigrationState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getOpenIdConnectMigrationState' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdRegistrationInfoFromCode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdRegistrationInfoFromCode.md index 33bfdf1c73..31b97523fa 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdRegistrationInfoFromCode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenIdRegistrationInfoFromCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getOpenIdRegistrationInfoFromCode-example) {#getOpenIdRegistrationInfoFromCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getOpenIdRegistrationInfoFromCode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenTickets.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenTickets.md index d12a39c5f1..bbe409a958 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenTickets.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOpenTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getOpenTickets-example) {#getOpenTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getOpenTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOverrides.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOverrides.md index 93f4b4a5af..c87d816d47 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOverrides.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getOverrides.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getOverrides-example) {#getOverrides-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getOverrides' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getParent.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getParent.md index 991f8dcd83..f73cc6f8b5 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getParent.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPasswordRequirements.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPasswordRequirements.md index 1233ea6d3a..d3ba0414cb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPasswordRequirements.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPasswordRequirements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPasswordRequirements-example) {#getPasswordRequirements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getPasswordRequirements' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPermissions.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPermissions.md index 9231600fcf..9705e4a1c8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPermissions.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPermissions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPermissions-example) {#getPermissions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getPermissions' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginToken.md index 8ae5a40e23..7f577bcb8d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPortalLoginToken-example) {#getPortalLoginToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginTokenOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginTokenOpenIdConnect.md index 29d853a13d..c9ea2af847 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginTokenOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginTokenOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPortalLoginTokenOpenIdConnect-example) {#getPortalLoginTokenOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getPortalLoginTokenOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreference.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreference.md index 93793876ab..b8f597210d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreference.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPreference-example) {#getPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getPreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferenceTypes.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferenceTypes.md index 03adfb9082..f65579d13e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferenceTypes.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferenceTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPreferenceTypes-example) {#getPreferenceTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getPreferenceTypes' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferences.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferences.md index 20e317846d..f79e25c9cd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferences.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRequirementsForPasswordSet.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRequirementsForPasswordSet.md index a3bf13a86c..c56dd660cc 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRequirementsForPasswordSet.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRequirementsForPasswordSet.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getRequirementsForPasswordSet-example) {#getRequirementsForPasswordSet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getRequirementsForPasswordSet' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRoles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRoles.md index 098b5fbc5f..9c1fd51c00 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRoles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getRoles-example) {#getRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSecurityAnswers.md index 66ac76b387..9c5f4858b0 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSecurityAnswers-example) {#getSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSubscribers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSubscribers.md index 472f83ccee..ad4d8d198b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSubscribers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSubscribers-example) {#getSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSubscribers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSuccessfulLogins.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSuccessfulLogins.md index 0f4ccc9d16..27851072ce 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSuccessfulLogins.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSuccessfulLogins.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSuccessfulLogins-example) {#getSuccessfulLogins-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSuccessfulLogins' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyAcknowledgementRequiredFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyAcknowledgementRequiredFlag.md index f03f4fb813..c3f91617fb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyAcknowledgementRequiredFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyAcknowledgementRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSupportPolicyAcknowledgementRequiredFlag-example) {#getSupportPolicyAcknowledgementRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSupportPolicyAcknowledgementRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyDocument.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyDocument.md index 122be5f720..84606a1bfe 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyDocument.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyDocument.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSupportPolicyDocument-example) {#getSupportPolicyDocument-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSupportPolicyDocument' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyName.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyName.md index 68cfea5164..5d5d34e7ef 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyName.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportPolicyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSupportPolicyName-example) {#getSupportPolicyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSupportPolicyName' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportedLocales.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportedLocales.md index d4c46c2e56..f86c24887d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportedLocales.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSupportedLocales.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSupportedLocales-example) {#getSupportedLocales-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSupportedLocales' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveyRequiredFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveyRequiredFlag.md index 561f9a9a05..ba0c927321 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveyRequiredFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveyRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSurveyRequiredFlag-example) {#getSurveyRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSurveyRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveys.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveys.md index 6c8942d01e..6c506b9e2d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveys.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getSurveys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getSurveys-example) {#getSurveys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getSurveys' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTickets.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTickets.md index cb068c5312..7355b1fdfd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTickets.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTimezone.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTimezone.md index 18e38adc8e..aee8e0a241 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTimezone.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getTimezone.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getTimezone-example) {#getTimezone-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getTimezone' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUnsuccessfulLogins.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUnsuccessfulLogins.md index fa79298911..9ab42302a8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUnsuccessfulLogins.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUnsuccessfulLogins.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getUnsuccessfulLogins-example) {#getUnsuccessfulLogins-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getUnsuccessfulLogins' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserForUnifiedInvitation.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserForUnifiedInvitation.md index ad320ff54f..a1b91485f8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserForUnifiedInvitation.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserForUnifiedInvitation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getUserForUnifiedInvitation-example) {#getUserForUnifiedInvitation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getUserForUnifiedInvitation' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserIdForPasswordSet.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserIdForPasswordSet.md index 1bdf8dd8e6..afd5dcf804 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserIdForPasswordSet.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserIdForPasswordSet.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getUserIdForPasswordSet-example) {#getUserIdForPasswordSet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/getUserIdForPasswordSet' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserLinks.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserLinks.md index 48785ee972..45b8c727da 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserLinks.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserLinks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getUserLinks-example) {#getUserLinks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getUserLinks' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserPreferences.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserPreferences.md index d1ac396232..a8eab2384c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserPreferences.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getUserPreferences-example) {#getUserPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getUserPreferences' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserStatus.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserStatus.md index b1a1a105bb..71afe42bed 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserStatus.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getUserStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getUserStatus-example) {#getUserStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getUserStatus' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuestCount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuestCount.md index 314f200468..0b171b749d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuestCount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuestCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getVirtualGuestCount-example) {#getVirtualGuestCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getVirtualGuestCount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuests.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuests.md index a0f839eb71..3b44b95fed 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inTerminalStatus.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inTerminalStatus.md index dabe1b8bec..7efd571597 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inTerminalStatus.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inTerminalStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#inTerminalStatus-example) {#inTerminalStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/inTerminalStatus' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChange.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChange.md index 69dd670b89..3cba98935c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChange.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChange.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#initiatePortalPasswordChange-example) {#initiatePortalPasswordChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChange' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChangeByBrandAgent.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChangeByBrandAgent.md index 35aa96f4d7..3863a6ec79 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChangeByBrandAgent.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/initiatePortalPasswordChangeByBrandAgent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#initiatePortalPasswordChangeByBrandAgent-example) {#initiatePortalPasswordChangeByBrandAgent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/initiatePortalPasswordChangeByBrandAgent' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inviteUserToLinkOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inviteUserToLinkOpenIdConnect.md index c5dd0cad83..6441a43848 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inviteUserToLinkOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/inviteUserToLinkOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#inviteUserToLinkOpenIdConnect-example) {#inviteUserToLinkOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/inviteUserToLinkOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isMasterUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isMasterUser.md index 7370f383e0..6cbd4dd0fd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isMasterUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isMasterUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#isMasterUser-example) {#isMasterUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/isMasterUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isValidPortalPassword.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isValidPortalPassword.md index 629ae55878..808bad9cfc 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isValidPortalPassword.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/isValidPortalPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#isValidPortalPassword-example) {#isValidPortalPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/isValidPortalPassword' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/performExternalAuthentication.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/performExternalAuthentication.md index e24e74ad88..659110cd12 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/performExternalAuthentication.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/performExternalAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#performExternalAuthentication-example) {#performExternalAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/performExternalAuthentication' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/processPasswordSetRequest.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/processPasswordSetRequest.md index 10592dfa0c..1c602c726d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/processPasswordSetRequest.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/processPasswordSetRequest.md @@ -24,8 +24,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#processPasswordSetRequest-example) {#processPasswordSetRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet, SoftLayer_Container_User_Customer_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet, SoftLayer_Container_User_Customer_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/processPasswordSetRequest' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllDedicatedHostAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllDedicatedHostAccessForThisUser.md index 8a2186d92f..88091f3c23 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllDedicatedHostAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllDedicatedHostAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeAllDedicatedHostAccessForThisUser-example) {#removeAllDedicatedHostAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeAllDedicatedHostAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllHardwareAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllHardwareAccessForThisUser.md index a4ee6d81c8..7e985035e5 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllHardwareAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllHardwareAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeAllHardwareAccessForThisUser-example) {#removeAllHardwareAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeAllHardwareAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllVirtualAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllVirtualAccessForThisUser.md index 17045eee71..00b19a8c83 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllVirtualAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeAllVirtualAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeAllVirtualAccessForThisUser-example) {#removeAllVirtualAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeAllVirtualAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeApiAuthenticationKey.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeApiAuthenticationKey.md index 52f1d428e9..544c402274 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeApiAuthenticationKey.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeApiAuthenticationKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeApiAuthenticationKey-example) {#removeApiAuthenticationKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/removeApiAuthenticationKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkDedicatedHostAccess.md index c7bc7f7f48..cb8de3dafb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkDedicatedHostAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeBulkDedicatedHostAccess-example) {#removeBulkDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeBulkDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkHardwareAccess.md index fefa8cec8c..df1cd9e4c4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkHardwareAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeBulkHardwareAccess-example) {#removeBulkHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeBulkHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkPortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkPortalPermission.md index 8998832948..fdd1984e5b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkPortalPermission.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeBulkPortalPermission-example) {#removeBulkPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeBulkPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkRoles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkRoles.md index 4fa6fb5181..533b47aeb3 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkRoles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeBulkRoles-example) {#removeBulkRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeBulkRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkVirtualGuestAccess.md index b3c9f064a0..0dcd866445 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeBulkVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeBulkVirtualGuestAccess-example) {#removeBulkVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeBulkVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeDedicatedHostAccess.md index 50c878c0ad..da226e37fb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeDedicatedHostAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeDedicatedHostAccess-example) {#removeDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeExternalBinding.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeExternalBinding.md index 84e5544c64..3af70d8205 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeExternalBinding.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeExternalBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeExternalBinding-example) {#removeExternalBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeExternalBinding' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeHardwareAccess.md index 3421909fc3..fc658bff4d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeHardwareAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeHardwareAccess-example) {#removeHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removePortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removePortalPermission.md index f90cbee60a..4fd9ccafbb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removePortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removePortalPermission.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removePortalPermission-example) {#removePortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removePortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeRole.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeRole.md index 4a7b252a45..79aaf797f6 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeRole.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeRole-example) {#removeRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeRole' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeSecurityAnswers.md index a0cba0f29b..ead7211045 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeSecurityAnswers-example) {#removeSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeVirtualGuestAccess.md index 672b6c2af9..d56c0d4569 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/removeVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#removeVirtualGuestAccess-example) {#removeVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/removeVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLink.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLink.md index c4d4d50415..58c766e310 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLink.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#resetOpenIdConnectLink-example) {#resetOpenIdConnectLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/resetOpenIdConnectLink' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLinkUnifiedUserManagementMode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLinkUnifiedUserManagementMode.md index 00fa5a814f..9c5ed5d40e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLinkUnifiedUserManagementMode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/resetOpenIdConnectLinkUnifiedUserManagementMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#resetOpenIdConnectLinkUnifiedUserManagementMode-example) {#resetOpenIdConnectLinkUnifiedUserManagementMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/resetOpenIdConnectLinkUnifiedUserManagementMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlAuthenticate.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlAuthenticate.md index 71f6153275..162a02f677 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlAuthenticate.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlAuthenticate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#samlAuthenticate-example) {#samlAuthenticate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/samlAuthenticate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginAuthentication.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginAuthentication.md index 43319681ff..db31372622 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginAuthentication.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#samlBeginAuthentication-example) {#samlBeginAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/samlBeginAuthentication' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginLogout.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginLogout.md index ac7ba120f9..f2c81dd0ed 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginLogout.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlBeginLogout.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#samlBeginLogout-example) {#samlBeginLogout-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/samlBeginLogout' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlLogout.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlLogout.md index 85e1369002..9b23301e3f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlLogout.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/samlLogout.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#samlLogout-example) {#samlLogout-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/samlLogout' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/selfPasswordChange.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/selfPasswordChange.md index 67bbd1e120..c4466d0238 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/selfPasswordChange.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/selfPasswordChange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#selfPasswordChange-example) {#selfPasswordChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/selfPasswordChange' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/setDefaultAccount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/setDefaultAccount.md index dd59c7960b..f4e8b181fe 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/setDefaultAccount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/setDefaultAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#setDefaultAccount-example) {#setDefaultAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/setDefaultAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/silentlyMigrateUserOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/silentlyMigrateUserOpenIdConnect.md index c282d8aff7..d51cc593b3 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/silentlyMigrateUserOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/silentlyMigrateUserOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#silentlyMigrateUserOpenIdConnect-example) {#silentlyMigrateUserOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/silentlyMigrateUserOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOffMasterUserPermissionCheckMode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOffMasterUserPermissionCheckMode.md index 5db46b0ecf..7f20a43d9b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOffMasterUserPermissionCheckMode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOffMasterUserPermissionCheckMode.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#turnOffMasterUserPermissionCheckMode-example) {#turnOffMasterUserPermissionCheckMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/turnOffMasterUserPermissionCheckMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOnMasterUserPermissionCheckMode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOnMasterUserPermissionCheckMode.md index e4719d6801..27db1f6e6c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOnMasterUserPermissionCheckMode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/turnOnMasterUserPermissionCheckMode.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#turnOnMasterUserPermissionCheckMode-example) {#turnOnMasterUserPermissionCheckMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/turnOnMasterUserPermissionCheckMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateNotificationSubscriber.md index 8ec10a4b15..2a86acc35f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#updateNotificationSubscriber-example) {#updateNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/updateNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSecurityAnswers.md index b95ea940f8..bd5711cd9c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#updateSecurityAnswers-example) {#updateSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Security_Question, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Security_Question, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/updateSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSubscriberDeliveryMethod.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSubscriberDeliveryMethod.md index 03b6ba2217..0a7824f7da 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSubscriberDeliveryMethod.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateSubscriberDeliveryMethod.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#updateSubscriberDeliveryMethod-example) {#updateSubscriberDeliveryMethod-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/updateSubscriberDeliveryMethod' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnPassword.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnPassword.md index abeb07847a..68941f042b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnPassword.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnPassword.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#updateVpnPassword-example) {#updateVpnPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/updateVpnPassword' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnUser.md index c1245aaf7e..c1b9071c02 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/updateVpnUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#updateVpnUser-example) {#updateVpnUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/{SoftLayer_User_Customer_OpenIdConnectID}/updateVpnUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/validateAuthenticationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/validateAuthenticationToken.md index aa149dbc30..579a6a47ec 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/validateAuthenticationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect/validateAuthenticationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect" --- -### Curl Example +# [REST Example](#validateAuthenticationToken-example) {#validateAuthenticationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect/validateAuthenticationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/acknowledgeSupportPolicy.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/acknowledgeSupportPolicy.md index dd2c344034..3823eae21b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/acknowledgeSupportPolicy.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/acknowledgeSupportPolicy.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#acknowledgeSupportPolicy-example) {#acknowledgeSupportPolicy-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/acknowledgeSupportPolicy' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/activateOpenIdConnectUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/activateOpenIdConnectUser.md index ec4690ab22..ef88894c0e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/activateOpenIdConnectUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/activateOpenIdConnectUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#activateOpenIdConnectUser-example) {#activateOpenIdConnectUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/activateOpenIdConnectUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addApiAuthenticationKey.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addApiAuthenticationKey.md index 59d6b3e0ff..1201016a91 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addApiAuthenticationKey.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addApiAuthenticationKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addApiAuthenticationKey-example) {#addApiAuthenticationKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addApiAuthenticationKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkDedicatedHostAccess.md index c68e877c87..71aba8237d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkDedicatedHostAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addBulkDedicatedHostAccess-example) {#addBulkDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addBulkDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkHardwareAccess.md index b7a08c0090..e3f9177359 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkHardwareAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addBulkHardwareAccess-example) {#addBulkHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addBulkHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkPortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkPortalPermission.md index 912331b100..c78f7cf6c6 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkPortalPermission.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addBulkPortalPermission-example) {#addBulkPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addBulkPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkRoles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkRoles.md index 72b7abc7a4..ca68eb9570 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkRoles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addBulkRoles-example) {#addBulkRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addBulkRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkVirtualGuestAccess.md index a44d0444dc..a477bc7c0f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addBulkVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addBulkVirtualGuestAccess-example) {#addBulkVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addBulkVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addDedicatedHostAccess.md index 707b7376af..4918cb4c86 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addDedicatedHostAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addDedicatedHostAccess-example) {#addDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addExternalBinding.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addExternalBinding.md index af1e41905b..aab3ee3709 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addExternalBinding.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addExternalBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addExternalBinding-example) {#addExternalBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addExternalBinding' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addHardwareAccess.md index fe3828638d..322bf73813 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addHardwareAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addHardwareAccess-example) {#addHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addNotificationSubscriber.md index ecd280be38..922068e804 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addNotificationSubscriber-example) {#addNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addPortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addPortalPermission.md index 63c8d7131e..2de8611d28 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addPortalPermission.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addPortalPermission-example) {#addPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addRole.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addRole.md index 03f58c13c7..aa7de18834 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addRole.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addRole-example) {#addRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addRole' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addVirtualGuestAccess.md index 8f933823bb..db37e6e3c4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/addVirtualGuestAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#addVirtualGuestAccess-example) {#addVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/addVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/assignNewParentId.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/assignNewParentId.md index f3dcb5b60f..c2c28cbd00 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/assignNewParentId.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/assignNewParentId.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#assignNewParentId-example) {#assignNewParentId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/assignNewParentId' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/changePreference.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/changePreference.md index 3f7cd35d87..bb61e6bbda 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/changePreference.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/changePreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#changePreference-example) {#changePreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/changePreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/completeInvitationAfterLogin.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/completeInvitationAfterLogin.md index 3cebede146..493e6ae548 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/completeInvitationAfterLogin.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/completeInvitationAfterLogin.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#completeInvitationAfterLogin-example) {#completeInvitationAfterLogin-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/completeInvitationAfterLogin' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createNotificationSubscriber.md index 96a0e5fa45..e2d97aed9c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#createNotificationSubscriber-example) {#createNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/createNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createObject.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createObject.md index 91235bf542..4f23809a2f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createObject.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_OpenIdConnect_TrustedProfile, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_OpenIdConnect_TrustedProfile, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createOpenIdConnectUserAndCompleteInvitation.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createOpenIdConnectUserAndCompleteInvitation.md index 4f30d99766..e901f766e3 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createOpenIdConnectUserAndCompleteInvitation.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createOpenIdConnectUserAndCompleteInvitation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#createOpenIdConnectUserAndCompleteInvitation-example) {#createOpenIdConnectUserAndCompleteInvitation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_User_Customer, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createOpenIdConnectUserAndCompleteInvitation' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createSubscriberDeliveryMethods.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createSubscriberDeliveryMethods.md index a0db37091d..2f97efa08c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createSubscriberDeliveryMethods.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/createSubscriberDeliveryMethods.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#createSubscriberDeliveryMethods-example) {#createSubscriberDeliveryMethods-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/createSubscriberDeliveryMethods' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/deactivateNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/deactivateNotificationSubscriber.md index 01f9f90e0e..90bec2c1eb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/deactivateNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/deactivateNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#deactivateNotificationSubscriber-example) {#deactivateNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/deactivateNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/declineInvitation.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/declineInvitation.md index dde50336fd..9ebab6d2b7 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/declineInvitation.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/declineInvitation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#declineInvitation-example) {#declineInvitation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/declineInvitation' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObject.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObject.md index 365611050f..5c749f283f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObject.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObjects.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObjects.md index a9839096a5..03b4573aa9 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#editObjects-example) {#editObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/editObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/findUserPreference.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/findUserPreference.md index ef1fcaed66..afeb1d2ed0 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/findUserPreference.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/findUserPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#findUserPreference-example) {#findUserPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/findUserPreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAccount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAccount.md index f620fb5151..9729ea2162 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAccount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActions.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActions.md index 8230364e78..3691109125 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActions.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getActions-example) {#getActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getActions' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActiveExternalAuthenticationVendors.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActiveExternalAuthenticationVendors.md index 8860f0cde9..cfcb17eb96 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActiveExternalAuthenticationVendors.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActiveExternalAuthenticationVendors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getActiveExternalAuthenticationVendors-example) {#getActiveExternalAuthenticationVendors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getActiveExternalAuthenticationVendors' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAdditionalEmails.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAdditionalEmails.md index 41bf2962c3..18d2ca0d6c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAdditionalEmails.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAdditionalEmails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAdditionalEmails-example) {#getAdditionalEmails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAdditionalEmails' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAgentImpersonationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAgentImpersonationToken.md index 282d736014..67accdc0c1 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAgentImpersonationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAgentImpersonationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAgentImpersonationToken-example) {#getAgentImpersonationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAgentImpersonationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedDedicatedHostIds.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedDedicatedHostIds.md index 0e73c4f78e..1ba7f9d5cd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedDedicatedHostIds.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedDedicatedHostIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAllowedDedicatedHostIds-example) {#getAllowedDedicatedHostIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAllowedDedicatedHostIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedHardwareIds.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedHardwareIds.md index a6401cee41..4ad3a52544 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedHardwareIds.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedHardwareIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAllowedHardwareIds-example) {#getAllowedHardwareIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAllowedHardwareIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedVirtualGuestIds.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedVirtualGuestIds.md index d38842ad78..56d40bd57f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedVirtualGuestIds.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAllowedVirtualGuestIds.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAllowedVirtualGuestIds-example) {#getAllowedVirtualGuestIds-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAllowedVirtualGuestIds' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getApiAuthenticationKeys.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getApiAuthenticationKeys.md index 3b8eed314b..f26c05cff0 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getApiAuthenticationKeys.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getApiAuthenticationKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getApiAuthenticationKeys-example) {#getApiAuthenticationKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getApiAuthenticationKeys' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAuthenticationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAuthenticationToken.md index 5c28aeb72c..67f9b78421 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAuthenticationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getAuthenticationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getAuthenticationToken-example) {#getAuthenticationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getAuthenticationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getChildUsers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getChildUsers.md index 9d0bf0f9be..dfd1a1310e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getChildUsers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getChildUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getChildUsers-example) {#getChildUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getChildUsers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getClosedTickets.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getClosedTickets.md index 26aba40c98..4ff7b7602c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getClosedTickets.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getClosedTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getClosedTickets-example) {#getClosedTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getClosedTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDedicatedHosts.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDedicatedHosts.md index 129b1fbbdd..c1000e079d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDedicatedHosts.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDedicatedHosts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getDedicatedHosts-example) {#getDedicatedHosts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getDedicatedHosts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDefaultAccount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDefaultAccount.md index 4887c35f93..ae4c9eace3 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDefaultAccount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getDefaultAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getDefaultAccount-example) {#getDefaultAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getDefaultAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getExternalBindings.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getExternalBindings.md index de8a23663b..b97bf49c38 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getExternalBindings.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getExternalBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getExternalBindings-example) {#getExternalBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getExternalBindings' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardware.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardware.md index 2522ccbdcb..eeb9a93e3e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardware.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareCount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareCount.md index 7c60fee7d6..c3b5a0728d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareCount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHardwareCount-example) {#getHardwareCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHardwareCount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareNotifications.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareNotifications.md index bb8cba71ee..e4607fa34b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareNotifications.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHardwareNotifications.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHardwareNotifications-example) {#getHardwareNotifications-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHardwareNotifications' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasAcknowledgedSupportPolicyFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasAcknowledgedSupportPolicyFlag.md index fe1908c38c..4867cd447e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasAcknowledgedSupportPolicyFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasAcknowledgedSupportPolicyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHasAcknowledgedSupportPolicyFlag-example) {#getHasAcknowledgedSupportPolicyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHasAcknowledgedSupportPolicyFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullDedicatedHostAccessFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullDedicatedHostAccessFlag.md index 430c9b7c9c..3518a73e47 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullDedicatedHostAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullDedicatedHostAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHasFullDedicatedHostAccessFlag-example) {#getHasFullDedicatedHostAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHasFullDedicatedHostAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullHardwareAccessFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullHardwareAccessFlag.md index 5057d65183..b22122861a 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullHardwareAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullHardwareAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHasFullHardwareAccessFlag-example) {#getHasFullHardwareAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHasFullHardwareAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullVirtualGuestAccessFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullVirtualGuestAccessFlag.md index 406300a7bf..b81de2c1b4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullVirtualGuestAccessFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getHasFullVirtualGuestAccessFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getHasFullVirtualGuestAccessFlag-example) {#getHasFullVirtualGuestAccessFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getHasFullVirtualGuestAccessFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getIbmIdLink.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getIbmIdLink.md index ff2d870bb4..933a6de374 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getIbmIdLink.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getIbmIdLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getIbmIdLink-example) {#getIbmIdLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getIbmIdLink' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getImpersonationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getImpersonationToken.md index 4b5a8c1813..0199880f11 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getImpersonationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getImpersonationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getImpersonationToken-example) {#getImpersonationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getImpersonationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLayoutProfiles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLayoutProfiles.md index 56ba53ae9a..5e35f12317 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLayoutProfiles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLayoutProfiles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getLayoutProfiles-example) {#getLayoutProfiles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getLayoutProfiles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLocale.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLocale.md index c616854dd6..aebee5e5fe 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLocale.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLocale.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getLocale-example) {#getLocale-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getLocale' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAccountInfoOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAccountInfoOpenIdConnect.md index e2816cba05..f1b0e7beb1 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAccountInfoOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAccountInfoOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getLoginAccountInfoOpenIdConnect-example) {#getLoginAccountInfoOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAccountInfoOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAttempts.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAttempts.md index 5981b4b6f3..08043d95b8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAttempts.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginAttempts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getLoginAttempts-example) {#getLoginAttempts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getLoginAttempts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginToken.md index ff19c9e401..c729316de1 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getLoginToken-example) {#getLoginToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Authentication_Request_Contract]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Authentication_Request_Contract]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getLoginToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getMappedAccounts.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getMappedAccounts.md index e207ffe4bc..fa3b4271ec 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getMappedAccounts.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getMappedAccounts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getMappedAccounts-example) {#getMappedAccounts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getMappedAccounts' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getNotificationSubscribers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getNotificationSubscribers.md index b672d0318c..98f1ffc220 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getNotificationSubscribers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getNotificationSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getNotificationSubscribers-example) {#getNotificationSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getNotificationSubscribers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getObject.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getObject.md index c2785b47c0..62fe2fa7cd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdConnectMigrationState.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdConnectMigrationState.md index 4a47a5c089..51fd959455 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdConnectMigrationState.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdConnectMigrationState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getOpenIdConnectMigrationState-example) {#getOpenIdConnectMigrationState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getOpenIdConnectMigrationState' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdRegistrationInfoFromCode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdRegistrationInfoFromCode.md index df00eb8c4d..c0977cd9be 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdRegistrationInfoFromCode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdRegistrationInfoFromCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getOpenIdRegistrationInfoFromCode-example) {#getOpenIdRegistrationInfoFromCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenIdRegistrationInfoFromCode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenTickets.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenTickets.md index 91b5d13dca..7c4a6a2e25 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenTickets.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOpenTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getOpenTickets-example) {#getOpenTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getOpenTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOverrides.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOverrides.md index 2daea55e89..0a6236adbb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOverrides.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getOverrides.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getOverrides-example) {#getOverrides-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getOverrides' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getParent.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getParent.md index c13b953583..650a5ead03 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getParent.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPasswordRequirements.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPasswordRequirements.md index b0dae7ec96..c518c8913f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPasswordRequirements.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPasswordRequirements.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPasswordRequirements-example) {#getPasswordRequirements-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPasswordRequirements' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPermissions.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPermissions.md index 0b8160948b..29f56eead8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPermissions.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPermissions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPermissions-example) {#getPermissions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getPermissions' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginToken.md index b7b016dc30..b40c5b0221 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPortalLoginToken-example) {#getPortalLoginToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginTokenOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginTokenOpenIdConnect.md index 9d5a78f1d6..942eae57dd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginTokenOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginTokenOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPortalLoginTokenOpenIdConnect-example) {#getPortalLoginTokenOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, int, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int, int, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPortalLoginTokenOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreference.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreference.md index 527e0013a4..eb6c9bd9bc 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreference.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreference.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPreference-example) {#getPreference-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getPreference' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferenceTypes.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferenceTypes.md index 5695a599b8..0a8b116508 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferenceTypes.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferenceTypes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPreferenceTypes-example) {#getPreferenceTypes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getPreferenceTypes' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferences.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferences.md index 53bbaa1d09..910eadf90e 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferences.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getPreferences-example) {#getPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getPreferences' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRequirementsForPasswordSet.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRequirementsForPasswordSet.md index 5971336ad5..2ea18b1706 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRequirementsForPasswordSet.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRequirementsForPasswordSet.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getRequirementsForPasswordSet-example) {#getRequirementsForPasswordSet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getRequirementsForPasswordSet' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRoles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRoles.md index 3468dc7f93..430c542653 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRoles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getRoles-example) {#getRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSecurityAnswers.md index 663df83cba..13e4872ee5 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSecurityAnswers-example) {#getSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSubscribers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSubscribers.md index 2d8a943467..5acc10f576 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSubscribers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSubscribers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSubscribers-example) {#getSubscribers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSubscribers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSuccessfulLogins.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSuccessfulLogins.md index 54683475bb..830a4e9921 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSuccessfulLogins.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSuccessfulLogins.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSuccessfulLogins-example) {#getSuccessfulLogins-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSuccessfulLogins' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyAcknowledgementRequiredFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyAcknowledgementRequiredFlag.md index 8a653f15d8..ab505d1d9a 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyAcknowledgementRequiredFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyAcknowledgementRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSupportPolicyAcknowledgementRequiredFlag-example) {#getSupportPolicyAcknowledgementRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSupportPolicyAcknowledgementRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyDocument.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyDocument.md index 6612a08646..627f336cbe 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyDocument.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyDocument.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSupportPolicyDocument-example) {#getSupportPolicyDocument-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSupportPolicyDocument' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyName.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyName.md index ea4a302881..5fc606be7d 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyName.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportPolicyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSupportPolicyName-example) {#getSupportPolicyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSupportPolicyName' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportedLocales.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportedLocales.md index caca25f7af..46acb4752a 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportedLocales.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSupportedLocales.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSupportedLocales-example) {#getSupportedLocales-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSupportedLocales' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveyRequiredFlag.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveyRequiredFlag.md index 0e0d4a65cf..6a01fd4266 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveyRequiredFlag.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveyRequiredFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSurveyRequiredFlag-example) {#getSurveyRequiredFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSurveyRequiredFlag' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveys.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveys.md index e951b6784d..bbab13b6ba 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveys.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getSurveys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getSurveys-example) {#getSurveys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getSurveys' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTickets.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTickets.md index adc6619dd5..356484d488 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTickets.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getTickets-example) {#getTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getTickets' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTimezone.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTimezone.md index 902e72b118..96c389f6b4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTimezone.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getTimezone.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getTimezone-example) {#getTimezone-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getTimezone' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUnsuccessfulLogins.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUnsuccessfulLogins.md index e19ea6d6fe..6c0f429917 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUnsuccessfulLogins.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUnsuccessfulLogins.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getUnsuccessfulLogins-example) {#getUnsuccessfulLogins-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getUnsuccessfulLogins' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserForUnifiedInvitation.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserForUnifiedInvitation.md index 198725fee5..97b0f3e080 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserForUnifiedInvitation.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserForUnifiedInvitation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getUserForUnifiedInvitation-example) {#getUserForUnifiedInvitation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserForUnifiedInvitation' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserIdForPasswordSet.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserIdForPasswordSet.md index 230bf5a586..3026e9a0bd 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserIdForPasswordSet.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserIdForPasswordSet.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getUserIdForPasswordSet-example) {#getUserIdForPasswordSet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserIdForPasswordSet' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserLinks.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserLinks.md index 7168df9743..d1ae98e952 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserLinks.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserLinks.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getUserLinks-example) {#getUserLinks-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getUserLinks' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserPreferences.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserPreferences.md index 398df813dc..f4676d36cf 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserPreferences.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserPreferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getUserPreferences-example) {#getUserPreferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getUserPreferences' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserStatus.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserStatus.md index a50e294bdb..363b0d9371 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserStatus.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getUserStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getUserStatus-example) {#getUserStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getUserStatus' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuestCount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuestCount.md index 5c654d71ed..bb63d29fff 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuestCount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuestCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getVirtualGuestCount-example) {#getVirtualGuestCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getVirtualGuestCount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuests.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuests.md index e3d954baef..cca4136499 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuests.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/getVirtualGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#getVirtualGuests-example) {#getVirtualGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/getVirtualGuests' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inTerminalStatus.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inTerminalStatus.md index 4726e2a545..fd2e6afd63 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inTerminalStatus.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inTerminalStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#inTerminalStatus-example) {#inTerminalStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/inTerminalStatus' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChange.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChange.md index fca9dc389d..2615b64080 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChange.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChange.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#initiatePortalPasswordChange-example) {#initiatePortalPasswordChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChange' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChangeByBrandAgent.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChangeByBrandAgent.md index 5d1591e451..b5406b891f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChangeByBrandAgent.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/initiatePortalPasswordChangeByBrandAgent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#initiatePortalPasswordChangeByBrandAgent-example) {#initiatePortalPasswordChangeByBrandAgent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/initiatePortalPasswordChangeByBrandAgent' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inviteUserToLinkOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inviteUserToLinkOpenIdConnect.md index 2185a013d0..73f8ab2902 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inviteUserToLinkOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/inviteUserToLinkOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#inviteUserToLinkOpenIdConnect-example) {#inviteUserToLinkOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/inviteUserToLinkOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isMasterUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isMasterUser.md index 4021a831a8..5a970e7317 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isMasterUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isMasterUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#isMasterUser-example) {#isMasterUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/isMasterUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isValidPortalPassword.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isValidPortalPassword.md index 28fced9c4a..1f7a98e7eb 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isValidPortalPassword.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/isValidPortalPassword.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#isValidPortalPassword-example) {#isValidPortalPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/isValidPortalPassword' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/performExternalAuthentication.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/performExternalAuthentication.md index d4ca6b61f7..ead525fe58 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/performExternalAuthentication.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/performExternalAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#performExternalAuthentication-example) {#performExternalAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/performExternalAuthentication' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/processPasswordSetRequest.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/processPasswordSetRequest.md index 4f32d89bb8..ab2e4d0c4b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/processPasswordSetRequest.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/processPasswordSetRequest.md @@ -24,8 +24,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#processPasswordSetRequest-example) {#processPasswordSetRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet, SoftLayer_Container_User_Customer_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_PasswordSet, SoftLayer_Container_User_Customer_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/processPasswordSetRequest' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllDedicatedHostAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllDedicatedHostAccessForThisUser.md index bad6351a28..b315f58160 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllDedicatedHostAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllDedicatedHostAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeAllDedicatedHostAccessForThisUser-example) {#removeAllDedicatedHostAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeAllDedicatedHostAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllHardwareAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllHardwareAccessForThisUser.md index 21deaa7a22..672c6b8b21 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllHardwareAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllHardwareAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeAllHardwareAccessForThisUser-example) {#removeAllHardwareAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeAllHardwareAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllVirtualAccessForThisUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllVirtualAccessForThisUser.md index 29c8a7a54e..ba3f7309d4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllVirtualAccessForThisUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeAllVirtualAccessForThisUser.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeAllVirtualAccessForThisUser-example) {#removeAllVirtualAccessForThisUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeAllVirtualAccessForThisUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeApiAuthenticationKey.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeApiAuthenticationKey.md index 1aa779901e..a1a0379e05 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeApiAuthenticationKey.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeApiAuthenticationKey.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeApiAuthenticationKey-example) {#removeApiAuthenticationKey-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeApiAuthenticationKey' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkDedicatedHostAccess.md index 96cba6c09c..de0f8c16b1 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkDedicatedHostAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeBulkDedicatedHostAccess-example) {#removeBulkDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeBulkDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkHardwareAccess.md index 1df87006c0..8245f7a924 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkHardwareAccess.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeBulkHardwareAccess-example) {#removeBulkHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeBulkHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkPortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkPortalPermission.md index 77d92e8516..b1d423db0f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkPortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkPortalPermission.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeBulkPortalPermission-example) {#removeBulkPortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeBulkPortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkRoles.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkRoles.md index a8da9daec6..1ce2f11bf3 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkRoles.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeBulkRoles-example) {#removeBulkRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeBulkRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkVirtualGuestAccess.md index 9ad6de853a..145fd3888b 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeBulkVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeBulkVirtualGuestAccess-example) {#removeBulkVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeBulkVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeDedicatedHostAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeDedicatedHostAccess.md index 095120f5b7..00c14f88a0 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeDedicatedHostAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeDedicatedHostAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeDedicatedHostAccess-example) {#removeDedicatedHostAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeDedicatedHostAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeExternalBinding.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeExternalBinding.md index 8827057ba3..6b7dee9519 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeExternalBinding.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeExternalBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeExternalBinding-example) {#removeExternalBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_External_Binding]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeExternalBinding' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeHardwareAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeHardwareAccess.md index b73015c07c..b1f5431058 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeHardwareAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeHardwareAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeHardwareAccess-example) {#removeHardwareAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeHardwareAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removePortalPermission.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removePortalPermission.md index 45f3104936..ec1ecb2c8f 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removePortalPermission.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removePortalPermission.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removePortalPermission-example) {#removePortalPermission-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_CustomerPermission_Permission, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removePortalPermission' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeRole.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeRole.md index 3f38046fb4..85518a08f5 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeRole.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeRole-example) {#removeRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeRole' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeSecurityAnswers.md index 664fe0aab9..f4c44bc293 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeSecurityAnswers-example) {#removeSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeVirtualGuestAccess.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeVirtualGuestAccess.md index 3814ff379c..e6e54aaaf7 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeVirtualGuestAccess.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/removeVirtualGuestAccess.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#removeVirtualGuestAccess-example) {#removeVirtualGuestAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/removeVirtualGuestAccess' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLink.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLink.md index ccbf8ba87a..dfe8cd09b2 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLink.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLink.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#resetOpenIdConnectLink-example) {#resetOpenIdConnectLink-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/resetOpenIdConnectLink' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLinkUnifiedUserManagementMode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLinkUnifiedUserManagementMode.md index d39282f1d5..47527cac03 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLinkUnifiedUserManagementMode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/resetOpenIdConnectLinkUnifiedUserManagementMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#resetOpenIdConnectLinkUnifiedUserManagementMode-example) {#resetOpenIdConnectLinkUnifiedUserManagementMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/resetOpenIdConnectLinkUnifiedUserManagementMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlAuthenticate.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlAuthenticate.md index 2b8c2158a4..ae271a2575 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlAuthenticate.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlAuthenticate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#samlAuthenticate-example) {#samlAuthenticate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlAuthenticate' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginAuthentication.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginAuthentication.md index d4d74ce2f4..c2b22fd049 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginAuthentication.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginAuthentication.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#samlBeginAuthentication-example) {#samlBeginAuthentication-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginAuthentication' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginLogout.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginLogout.md index 050e983e4d..36e86c9acc 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginLogout.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlBeginLogout.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#samlBeginLogout-example) {#samlBeginLogout-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/samlBeginLogout' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlLogout.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlLogout.md index b08d407930..df366508c4 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlLogout.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/samlLogout.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#samlLogout-example) {#samlLogout-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/samlLogout' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/selfPasswordChange.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/selfPasswordChange.md index 3b3ee9a984..04e1389e6c 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/selfPasswordChange.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/selfPasswordChange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#selfPasswordChange-example) {#selfPasswordChange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/selfPasswordChange' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/setDefaultAccount.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/setDefaultAccount.md index d09953e4d9..9767023aef 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/setDefaultAccount.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/setDefaultAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#setDefaultAccount-example) {#setDefaultAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/setDefaultAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/silentlyMigrateUserOpenIdConnect.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/silentlyMigrateUserOpenIdConnect.md index b59db15123..38e4eecde8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/silentlyMigrateUserOpenIdConnect.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/silentlyMigrateUserOpenIdConnect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#silentlyMigrateUserOpenIdConnect-example) {#silentlyMigrateUserOpenIdConnect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/silentlyMigrateUserOpenIdConnect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOffMasterUserPermissionCheckMode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOffMasterUserPermissionCheckMode.md index 81e1a20a9e..90c9ab2955 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOffMasterUserPermissionCheckMode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOffMasterUserPermissionCheckMode.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#turnOffMasterUserPermissionCheckMode-example) {#turnOffMasterUserPermissionCheckMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/turnOffMasterUserPermissionCheckMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOnMasterUserPermissionCheckMode.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOnMasterUserPermissionCheckMode.md index 20824af088..fddb882ab2 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOnMasterUserPermissionCheckMode.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/turnOnMasterUserPermissionCheckMode.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#turnOnMasterUserPermissionCheckMode-example) {#turnOnMasterUserPermissionCheckMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/turnOnMasterUserPermissionCheckMode' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateNotificationSubscriber.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateNotificationSubscriber.md index f6ffa853ce..d0c77791a8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateNotificationSubscriber.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateNotificationSubscriber.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#updateNotificationSubscriber-example) {#updateNotificationSubscriber-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/updateNotificationSubscriber' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSecurityAnswers.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSecurityAnswers.md index 6a8b4e82be..ae1282e021 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSecurityAnswers.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSecurityAnswers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#updateSecurityAnswers-example) {#updateSecurityAnswers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Security_Question, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Security_Question, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/updateSecurityAnswers' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSubscriberDeliveryMethod.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSubscriberDeliveryMethod.md index a138e1fc9e..952dbb46d8 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSubscriberDeliveryMethod.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateSubscriberDeliveryMethod.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#updateSubscriberDeliveryMethod-example) {#updateSubscriberDeliveryMethod-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/updateSubscriberDeliveryMethod' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnPassword.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnPassword.md index ef8d57cf30..3759fc692a 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnPassword.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnPassword.md @@ -21,8 +21,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#updateVpnPassword-example) {#updateVpnPassword-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/updateVpnPassword' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnUser.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnUser.md index 6b31946187..fd74151463 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnUser.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/updateVpnUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#updateVpnUser-example) {#updateVpnUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/{SoftLayer_User_Customer_OpenIdConnect_TrustedProfileID}/updateVpnUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/validateAuthenticationToken.md b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/validateAuthenticationToken.md index 792257bb88..25b5ce2f04 100644 --- a/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/validateAuthenticationToken.md +++ b/content/reference/services/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/validateAuthenticationToken.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_OpenIdConnect_TrustedProfile" --- -### Curl Example +# [REST Example](#validateAuthenticationToken-example) {#validateAuthenticationToken-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Authentication_Token]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_OpenIdConnect_TrustedProfile/validateAuthenticationToken' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Profile_Event_HyperWarp/receiveEventDirect.md b/content/reference/services/SoftLayer_User_Customer_Profile_Event_HyperWarp/receiveEventDirect.md index 340f053717..f9e4a696f1 100644 --- a/content/reference/services/SoftLayer_User_Customer_Profile_Event_HyperWarp/receiveEventDirect.md +++ b/content/reference/services/SoftLayer_User_Customer_Profile_Event_HyperWarp/receiveEventDirect.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Profile_Event_HyperWarp" --- -### Curl Example +# [REST Example](#receiveEventDirect-example) {#receiveEventDirect-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_Profile_Event_HyperWarp_ProfileChange]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_User_Customer_Profile_Event_HyperWarp_ProfileChange]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Profile_Event_HyperWarp/receiveEventDirect' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/enroll.md b/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/enroll.md index 9890921ec1..c01d81eec9 100644 --- a/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/enroll.md +++ b/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/enroll.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest" --- -### Curl Example +# [REST Example](#enroll-example) {#enroll-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/enroll' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getCompanyType.md b/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getCompanyType.md index f34e0d28ce..5520895fa6 100644 --- a/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getCompanyType.md +++ b/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getCompanyType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest" --- -### Curl Example +# [REST Example](#getCompanyType-example) {#getCompanyType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/{SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequestID}/getCompanyType' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getObject.md b/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getObject.md index 35c51e18e2..f3180b0f07 100644 --- a/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequest/{SoftLayer_User_Customer_Prospect_ServiceProvider_EnrollRequestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Security_Answer/getObject.md b/content/reference/services/SoftLayer_User_Customer_Security_Answer/getObject.md index 0852c48478..7c25614343 100644 --- a/content/reference/services/SoftLayer_User_Customer_Security_Answer/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Security_Answer/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Security_Answer" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Security_Answer/{SoftLayer_User_Customer_Security_AnswerID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Security_Answer/getQuestion.md b/content/reference/services/SoftLayer_User_Customer_Security_Answer/getQuestion.md index a57bd2cf2c..5271e8d43a 100644 --- a/content/reference/services/SoftLayer_User_Customer_Security_Answer/getQuestion.md +++ b/content/reference/services/SoftLayer_User_Customer_Security_Answer/getQuestion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Security_Answer" --- -### Curl Example +# [REST Example](#getQuestion-example) {#getQuestion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Security_Answer/{SoftLayer_User_Customer_Security_AnswerID}/getQuestion' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Security_Answer/getUser.md b/content/reference/services/SoftLayer_User_Customer_Security_Answer/getUser.md index 8618867d7e..2323f1fa3b 100644 --- a/content/reference/services/SoftLayer_User_Customer_Security_Answer/getUser.md +++ b/content/reference/services/SoftLayer_User_Customer_Security_Answer/getUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Security_Answer" --- -### Curl Example +# [REST Example](#getUser-example) {#getUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Security_Answer/{SoftLayer_User_Customer_Security_AnswerID}/getUser' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Status/getAllObjects.md b/content/reference/services/SoftLayer_User_Customer_Status/getAllObjects.md index 3889a68c0f..493e4aedaa 100644 --- a/content/reference/services/SoftLayer_User_Customer_Status/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_Customer_Status/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Status" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Status/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Customer_Status/getObject.md b/content/reference/services/SoftLayer_User_Customer_Status/getObject.md index ca701eeb72..b0d799a034 100644 --- a/content/reference/services/SoftLayer_User_Customer_Status/getObject.md +++ b/content/reference/services/SoftLayer_User_Customer_Status/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Customer_Status" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Customer_Status/{SoftLayer_User_Customer_StatusID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/deleteObject.md b/content/reference/services/SoftLayer_User_External_Binding/deleteObject.md index 69f0309116..2c44aa20a5 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/deleteObject.md +++ b/content/reference/services/SoftLayer_User_External_Binding/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/getAttributes.md b/content/reference/services/SoftLayer_User_External_Binding/getAttributes.md index f3082cbc9c..9086db5328 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/getAttributes.md +++ b/content/reference/services/SoftLayer_User_External_Binding/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/getBillingItem.md b/content/reference/services/SoftLayer_User_External_Binding/getBillingItem.md index 52bd3c8dd9..0c8011783a 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/getBillingItem.md +++ b/content/reference/services/SoftLayer_User_External_Binding/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/getNote.md b/content/reference/services/SoftLayer_User_External_Binding/getNote.md index e0f4e86783..67241bda94 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/getNote.md +++ b/content/reference/services/SoftLayer_User_External_Binding/getNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#getNote-example) {#getNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/getNote' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/getObject.md b/content/reference/services/SoftLayer_User_External_Binding/getObject.md index 614e62c2ce..251d37ffde 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/getObject.md +++ b/content/reference/services/SoftLayer_User_External_Binding/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/getType.md b/content/reference/services/SoftLayer_User_External_Binding/getType.md index 82060d7353..907f5a51fe 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/getType.md +++ b/content/reference/services/SoftLayer_User_External_Binding/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/getType' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/getVendor.md b/content/reference/services/SoftLayer_User_External_Binding/getVendor.md index adad2fbaca..2947e088c0 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/getVendor.md +++ b/content/reference/services/SoftLayer_User_External_Binding/getVendor.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#getVendor-example) {#getVendor-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/getVendor' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding/updateNote.md b/content/reference/services/SoftLayer_User_External_Binding/updateNote.md index 909dae5e17..65348223ff 100644 --- a/content/reference/services/SoftLayer_User_External_Binding/updateNote.md +++ b/content/reference/services/SoftLayer_User_External_Binding/updateNote.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding" --- -### Curl Example +# [REST Example](#updateNote-example) {#updateNote-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding/{SoftLayer_User_External_BindingID}/updateNote' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding_Vendor/getAllObjects.md b/content/reference/services/SoftLayer_User_External_Binding_Vendor/getAllObjects.md index 9aa654f805..d2a0f368fd 100644 --- a/content/reference/services/SoftLayer_User_External_Binding_Vendor/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_External_Binding_Vendor/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding_Vendor" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding_Vendor/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_External_Binding_Vendor/getObject.md b/content/reference/services/SoftLayer_User_External_Binding_Vendor/getObject.md index 740cbe1160..6b3c79922d 100644 --- a/content/reference/services/SoftLayer_User_External_Binding_Vendor/getObject.md +++ b/content/reference/services/SoftLayer_User_External_Binding_Vendor/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_External_Binding_Vendor" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_External_Binding_Vendor/{SoftLayer_User_External_Binding_VendorID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Action/getAllObjects.md b/content/reference/services/SoftLayer_User_Permission_Action/getAllObjects.md index 05374324c9..a821fd6398 100644 --- a/content/reference/services/SoftLayer_User_Permission_Action/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_Permission_Action/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Action" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Action/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Action/getObject.md b/content/reference/services/SoftLayer_User_Permission_Action/getObject.md index 5371cb578b..284b953e68 100644 --- a/content/reference/services/SoftLayer_User_Permission_Action/getObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Action/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Action" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Action/{SoftLayer_User_Permission_ActionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/addAction.md b/content/reference/services/SoftLayer_User_Permission_Group/addAction.md index 814dfd828e..204bfa6d9a 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/addAction.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/addAction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#addAction-example) {#addAction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/addAction' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/addBulkActions.md b/content/reference/services/SoftLayer_User_Permission_Group/addBulkActions.md index f5e032f4cc..70193eb912 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/addBulkActions.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/addBulkActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#addBulkActions-example) {#addBulkActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/addBulkActions' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/addBulkResourceObjects.md b/content/reference/services/SoftLayer_User_Permission_Group/addBulkResourceObjects.md index 69bba09e68..521be249e5 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/addBulkResourceObjects.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/addBulkResourceObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#addBulkResourceObjects-example) {#addBulkResourceObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/addBulkResourceObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/addResourceObject.md b/content/reference/services/SoftLayer_User_Permission_Group/addResourceObject.md index e7cc993c19..724acd46db 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/addResourceObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/addResourceObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#addResourceObject-example) {#addResourceObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/addResourceObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/createObject.md b/content/reference/services/SoftLayer_User_Permission_Group/createObject.md index 508dd06f33..29a3448119 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/createObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/deleteObject.md b/content/reference/services/SoftLayer_User_Permission_Group/deleteObject.md index bdc5d1941e..909d0c74eb 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/deleteObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/editObject.md b/content/reference/services/SoftLayer_User_Permission_Group/editObject.md index 40a891038a..037eb4815f 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/editObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/getAccount.md b/content/reference/services/SoftLayer_User_Permission_Group/getAccount.md index 48b074599f..49e926191b 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/getAccount.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/getActions.md b/content/reference/services/SoftLayer_User_Permission_Group/getActions.md index 2221589e1f..e5e0d4e8c8 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/getActions.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/getActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#getActions-example) {#getActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/getActions' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/getObject.md b/content/reference/services/SoftLayer_User_Permission_Group/getObject.md index 75f061d0a1..5a4f3a461d 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/getObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/getRoles.md b/content/reference/services/SoftLayer_User_Permission_Group/getRoles.md index 83bac6e12a..f402c81a90 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/getRoles.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/getRoles.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#getRoles-example) {#getRoles-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/getRoles' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/getType.md b/content/reference/services/SoftLayer_User_Permission_Group/getType.md index 5ac3eea321..a6a2cd0571 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/getType.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/getType' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/linkRole.md b/content/reference/services/SoftLayer_User_Permission_Group/linkRole.md index 267c400b56..40c8688b4a 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/linkRole.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/linkRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#linkRole-example) {#linkRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/linkRole' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/removeAction.md b/content/reference/services/SoftLayer_User_Permission_Group/removeAction.md index c55c01ab11..65b5fe243a 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/removeAction.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/removeAction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#removeAction-example) {#removeAction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/removeAction' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/removeBulkActions.md b/content/reference/services/SoftLayer_User_Permission_Group/removeBulkActions.md index 74327b7051..35c86e0b3e 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/removeBulkActions.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/removeBulkActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#removeBulkActions-example) {#removeBulkActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Action]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/removeBulkActions' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/removeBulkResourceObjects.md b/content/reference/services/SoftLayer_User_Permission_Group/removeBulkResourceObjects.md index 0ee7abe45d..02a061008b 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/removeBulkResourceObjects.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/removeBulkResourceObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#removeBulkResourceObjects-example) {#removeBulkResourceObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/removeBulkResourceObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/removeResourceObject.md b/content/reference/services/SoftLayer_User_Permission_Group/removeResourceObject.md index 24643093d1..5c6260d1b6 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/removeResourceObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/removeResourceObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#removeResourceObject-example) {#removeResourceObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Entity, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/removeResourceObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group/unlinkRole.md b/content/reference/services/SoftLayer_User_Permission_Group/unlinkRole.md index 9e470a7c0a..3eb4a89a83 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group/unlinkRole.md +++ b/content/reference/services/SoftLayer_User_Permission_Group/unlinkRole.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group" --- -### Curl Example +# [REST Example](#unlinkRole-example) {#unlinkRole-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group/{SoftLayer_User_Permission_GroupID}/unlinkRole' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group_Type/getGroups.md b/content/reference/services/SoftLayer_User_Permission_Group_Type/getGroups.md index 768abf21a1..5755206312 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group_Type/getGroups.md +++ b/content/reference/services/SoftLayer_User_Permission_Group_Type/getGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group_Type" --- -### Curl Example +# [REST Example](#getGroups-example) {#getGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group_Type/{SoftLayer_User_Permission_Group_TypeID}/getGroups' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Group_Type/getObject.md b/content/reference/services/SoftLayer_User_Permission_Group_Type/getObject.md index 627af0e7d9..f3ef85ccd3 100644 --- a/content/reference/services/SoftLayer_User_Permission_Group_Type/getObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Group_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Group_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Group_Type/{SoftLayer_User_Permission_Group_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Resource_Type/getAllObjects.md b/content/reference/services/SoftLayer_User_Permission_Resource_Type/getAllObjects.md index f21bae2416..1df7876c6d 100644 --- a/content/reference/services/SoftLayer_User_Permission_Resource_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_Permission_Resource_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Resource_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Resource_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Resource_Type/getObject.md b/content/reference/services/SoftLayer_User_Permission_Resource_Type/getObject.md index 210476fc69..4b3584b075 100644 --- a/content/reference/services/SoftLayer_User_Permission_Resource_Type/getObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Resource_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Resource_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Resource_Type/{SoftLayer_User_Permission_Resource_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/addUser.md b/content/reference/services/SoftLayer_User_Permission_Role/addUser.md index 2678aed050..c292688bc1 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/addUser.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/addUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#addUser-example) {#addUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/addUser' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/createObject.md b/content/reference/services/SoftLayer_User_Permission_Role/createObject.md index 364b75292c..e152d854e5 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/createObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/createObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/deleteObject.md b/content/reference/services/SoftLayer_User_Permission_Role/deleteObject.md index 6aa39c91d3..cafc09455a 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/deleteObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/editObject.md b/content/reference/services/SoftLayer_User_Permission_Role/editObject.md index 6d3eaccce8..14deb68abe 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/editObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Role]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/getAccount.md b/content/reference/services/SoftLayer_User_Permission_Role/getAccount.md index 1ec6514628..a983ea063d 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/getAccount.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/getActions.md b/content/reference/services/SoftLayer_User_Permission_Role/getActions.md index 27523dc641..f9921796cf 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/getActions.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/getActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#getActions-example) {#getActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/getActions' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/getGroups.md b/content/reference/services/SoftLayer_User_Permission_Role/getGroups.md index cf4769625e..68ee67cb97 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/getGroups.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/getGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#getGroups-example) {#getGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/getGroups' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/getObject.md b/content/reference/services/SoftLayer_User_Permission_Role/getObject.md index 84ec6422c0..091d2b04c0 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/getObject.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/getUsers.md b/content/reference/services/SoftLayer_User_Permission_Role/getUsers.md index 4a280ff478..35c339de16 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/getUsers.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/linkGroup.md b/content/reference/services/SoftLayer_User_Permission_Role/linkGroup.md index e09e3ceaea..2f0e1235fe 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/linkGroup.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/linkGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#linkGroup-example) {#linkGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/linkGroup' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/removeUser.md b/content/reference/services/SoftLayer_User_Permission_Role/removeUser.md index fd29dd0ebf..20ccf2e526 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/removeUser.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/removeUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#removeUser-example) {#removeUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Customer]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/removeUser' ``` diff --git a/content/reference/services/SoftLayer_User_Permission_Role/unlinkGroup.md b/content/reference/services/SoftLayer_User_Permission_Role/unlinkGroup.md index 1064020e3d..319c7aa175 100644 --- a/content/reference/services/SoftLayer_User_Permission_Role/unlinkGroup.md +++ b/content/reference/services/SoftLayer_User_Permission_Role/unlinkGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Permission_Role" --- -### Curl Example +# [REST Example](#unlinkGroup-example) {#unlinkGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_User_Permission_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Permission_Role/{SoftLayer_User_Permission_RoleID}/unlinkGroup' ``` diff --git a/content/reference/services/SoftLayer_User_Security_Question/getAllObjects.md b/content/reference/services/SoftLayer_User_Security_Question/getAllObjects.md index 9b2e0d2b06..40d5d8cbe6 100644 --- a/content/reference/services/SoftLayer_User_Security_Question/getAllObjects.md +++ b/content/reference/services/SoftLayer_User_Security_Question/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Security_Question" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Security_Question/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_User_Security_Question/getObject.md b/content/reference/services/SoftLayer_User_Security_Question/getObject.md index 534e76697b..18c1304248 100644 --- a/content/reference/services/SoftLayer_User_Security_Question/getObject.md +++ b/content/reference/services/SoftLayer_User_Security_Question/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_User_Security_Question" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_User_Security_Question/{SoftLayer_User_Security_QuestionID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Utility_Network/nsLookup.md b/content/reference/services/SoftLayer_Utility_Network/nsLookup.md index 3b6fdbb8cc..7b13cfb0ec 100644 --- a/content/reference/services/SoftLayer_Utility_Network/nsLookup.md +++ b/content/reference/services/SoftLayer_Utility_Network/nsLookup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Utility_Network" --- -### Curl Example +# [REST Example](#nsLookup-example) {#nsLookup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Utility_Network/nsLookup' ``` diff --git a/content/reference/services/SoftLayer_Utility_Network/whois.md b/content/reference/services/SoftLayer_Utility_Network/whois.md index 00f71d4f16..7524e655d9 100644 --- a/content/reference/services/SoftLayer_Utility_Network/whois.md +++ b/content/reference/services/SoftLayer_Utility_Network/whois.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Utility_Network" --- -### Curl Example +# [REST Example](#whois-example) {#whois-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Utility_Network/whois' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpObj/createObject.md b/content/reference/services/SoftLayer_Verify_Api_HttpObj/createObject.md index f87375f93e..78bd7e70f7 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpObj/createObject.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpObj/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpObj" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Verify_Api_HttpObj]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Verify_Api_HttpObj]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpObj/createObject' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpObj/deleteObject.md b/content/reference/services/SoftLayer_Verify_Api_HttpObj/deleteObject.md index 807361728a..8a7471621f 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpObj/deleteObject.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpObj/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpObj" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpObj/{SoftLayer_Verify_Api_HttpObjID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpObj/getAllObjects.md b/content/reference/services/SoftLayer_Verify_Api_HttpObj/getAllObjects.md index aa2fda4150..cd8ec0ccbc 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpObj/getAllObjects.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpObj/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpObj" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpObj/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpObj/getObject.md b/content/reference/services/SoftLayer_Verify_Api_HttpObj/getObject.md index 49289d61c9..4f7978e232 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpObj/getObject.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpObj/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpObj" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpObj/{SoftLayer_Verify_Api_HttpObjID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/createObject.md b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/createObject.md index c666ed521f..a9b661f9a7 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/createObject.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpsObj" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Verify_Api_HttpsObj]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Verify_Api_HttpsObj]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpsObj/createObject' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/deleteObject.md b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/deleteObject.md index 0e34ad1b74..9c3288d648 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/deleteObject.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpsObj" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpsObj/{SoftLayer_Verify_Api_HttpsObjID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getAllObjects.md b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getAllObjects.md index 1c3b7ab017..d45844f7be 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getAllObjects.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpsObj" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpsObj/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getObject.md b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getObject.md index df0fa71f2f..578d601495 100644 --- a/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getObject.md +++ b/content/reference/services/SoftLayer_Verify_Api_HttpsObj/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Verify_Api_HttpsObj" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Verify_Api_HttpsObj/{SoftLayer_Verify_Api_HttpsObjID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/deleteObject.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/deleteObject.md index 007ed2e797..e2c99606a5 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/deleteObject.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/editObject.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/editObject.md index cb30517bab..1faa8d9450 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_DedicatedHost]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_DedicatedHost]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAccount.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAccount.md index 61c7273aad..1f0ff984ef 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAllocationStatus.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAllocationStatus.md index 41116ccc46..e0299142ca 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAllocationStatus.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAllocationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAllocationStatus-example) {#getAllocationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getAllocationStatus' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAvailableRouters.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAvailableRouters.md index c6eb12eadd..888bc1035b 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAvailableRouters.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getAvailableRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getAvailableRouters-example) {#getAvailableRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_DedicatedHost]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_DedicatedHost]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/getAvailableRouters' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBackendRouter.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBackendRouter.md index e921f0dd15..0d42cf0e4f 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBackendRouter.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBackendRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getBackendRouter-example) {#getBackendRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getBackendRouter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBillingItem.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBillingItem.md index dfa9dc5538..6951b53bce 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBillingItem.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getDatacenter.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getDatacenter.md index 6654d00ea3..a7abfa7155 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getDatacenter.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getGuests.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getGuests.md index a90c2213f7..5586256724 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getGuests.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getGuests-example) {#getGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getGuests' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getInternalTagReferences.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getInternalTagReferences.md index 88232f5601..519330304b 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getInternalTagReferences.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getInternalTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getInternalTagReferences-example) {#getInternalTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getInternalTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getObject.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getObject.md index e4ab296516..5adcc72778 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDeviceAllocationStatus.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDeviceAllocationStatus.md index e1eaf9ace0..f3157d8b13 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDeviceAllocationStatus.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDeviceAllocationStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getPciDeviceAllocationStatus-example) {#getPciDeviceAllocationStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getPciDeviceAllocationStatus' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDevices.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDevices.md index e351f10468..fa07faaee1 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDevices.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getPciDevices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getPciDevices-example) {#getPciDevices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getPciDevices' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getTagReferences.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getTagReferences.md index 0af689c577..c11be1eb7e 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/getTagReferences.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_DedicatedHost/setTags.md b/content/reference/services/SoftLayer_Virtual_DedicatedHost/setTags.md index 30d86ebc8f..a1800132fd 100644 --- a/content/reference/services/SoftLayer_Virtual_DedicatedHost/setTags.md +++ b/content/reference/services/SoftLayer_Virtual_DedicatedHost/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_DedicatedHost" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_DedicatedHost/{SoftLayer_Virtual_DedicatedHostID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/editObject.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/editObject.md index 8971f507be..cf353e1fb8 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Disk_Image]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Disk_Image]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getAvailableBootModes.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getAvailableBootModes.md index 5cec0b76e5..ff586f4433 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getAvailableBootModes.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getAvailableBootModes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getAvailableBootModes-example) {#getAvailableBootModes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/getAvailableBootModes' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getBillingItem.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getBillingItem.md index 4002eeb7e3..73709e46b5 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getBillingItem.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getBlockDevices.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getBlockDevices.md index 21ede0cd9c..ce94cfa6f0 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getBlockDevices.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getBlockDevices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getBlockDevices-example) {#getBlockDevices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getBlockDevices' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getBootableVolumeFlag.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getBootableVolumeFlag.md index dc349af4da..e895c696a3 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getBootableVolumeFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getBootableVolumeFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getBootableVolumeFlag-example) {#getBootableVolumeFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getBootableVolumeFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getCloudInitFlag.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getCloudInitFlag.md index 1585c34a7c..d55a6d94a3 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getCloudInitFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getCloudInitFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getCloudInitFlag-example) {#getCloudInitFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getCloudInitFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getCoalescedDiskImages.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getCoalescedDiskImages.md index 4e9eb6a2f6..339d176f7a 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getCoalescedDiskImages.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getCoalescedDiskImages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getCoalescedDiskImages-example) {#getCoalescedDiskImages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getCoalescedDiskImages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getCopyOnWriteFlag.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getCopyOnWriteFlag.md index 20be413ea8..5b70604235 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getCopyOnWriteFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getCopyOnWriteFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getCopyOnWriteFlag-example) {#getCopyOnWriteFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getCopyOnWriteFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskFileExtension.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskFileExtension.md index 49a3000f8c..9cb0d317ec 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskFileExtension.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskFileExtension.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getDiskFileExtension-example) {#getDiskFileExtension-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getDiskFileExtension' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskImageStorageGroup.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskImageStorageGroup.md index 725b20601c..3365ccc17c 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskImageStorageGroup.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getDiskImageStorageGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getDiskImageStorageGroup-example) {#getDiskImageStorageGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getDiskImageStorageGroup' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getImportedDiskType.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getImportedDiskType.md index b0687563da..3d09f76c2d 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getImportedDiskType.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getImportedDiskType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getImportedDiskType-example) {#getImportedDiskType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getImportedDiskType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getIsEncrypted.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getIsEncrypted.md index 4d7d528a38..41b46b9ec5 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getIsEncrypted.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getIsEncrypted.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getIsEncrypted-example) {#getIsEncrypted-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getIsEncrypted' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getLocalDiskFlag.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getLocalDiskFlag.md index 3cb69995a1..c6fba810d8 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getLocalDiskFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getLocalDiskFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getLocalDiskFlag-example) {#getLocalDiskFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getLocalDiskFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getMetadataFlag.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getMetadataFlag.md index 87f32bb796..d48a3aadfb 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getMetadataFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getMetadataFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getMetadataFlag-example) {#getMetadataFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getMetadataFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getObject.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getObject.md index c2f025da64..095f24eb21 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getPublicIsoImages.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getPublicIsoImages.md index 312e8527c6..07ef890f6c 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getPublicIsoImages.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getPublicIsoImages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getPublicIsoImages-example) {#getPublicIsoImages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/getPublicIsoImages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getSoftwareReferences.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getSoftwareReferences.md index 5434b25f05..ce479000e6 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getSoftwareReferences.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getSoftwareReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getSoftwareReferences-example) {#getSoftwareReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getSoftwareReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getSourceDiskImage.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getSourceDiskImage.md index 840808371e..3f5398e58c 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getSourceDiskImage.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getSourceDiskImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getSourceDiskImage-example) {#getSourceDiskImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getSourceDiskImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroupDetails.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroupDetails.md index f604df86a1..76d769b130 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroupDetails.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroupDetails.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getStorageGroupDetails-example) {#getStorageGroupDetails-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getStorageGroupDetails' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroups.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroups.md index 38a9cbd026..67027bcdfe 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroups.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getStorageGroups-example) {#getStorageGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getStorageGroups' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepository.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepository.md index 0a5e92d992..f20a3226d3 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepository.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepository.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getStorageRepository-example) {#getStorageRepository-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getStorageRepository' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepositoryType.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepositoryType.md index 3bc919b639..6b98771261 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepositoryType.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getStorageRepositoryType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getStorageRepositoryType-example) {#getStorageRepositoryType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getStorageRepositoryType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getSupportedHardware.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getSupportedHardware.md index ca375bb5f4..b9afa56d54 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getSupportedHardware.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getSupportedHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getSupportedHardware-example) {#getSupportedHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getSupportedHardware' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getTemplateBlockDevice.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getTemplateBlockDevice.md index c0ed7ba671..563db3814b 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getTemplateBlockDevice.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getTemplateBlockDevice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getTemplateBlockDevice-example) {#getTemplateBlockDevice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getTemplateBlockDevice' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Disk_Image/getType.md b/content/reference/services/SoftLayer_Virtual_Disk_Image/getType.md index 068fb7e290..1ad6c91eae 100644 --- a/content/reference/services/SoftLayer_Virtual_Disk_Image/getType.md +++ b/content/reference/services/SoftLayer_Virtual_Disk_Image/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Disk_Image" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Disk_Image/{SoftLayer_Virtual_Disk_ImageID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/activatePrivatePort.md b/content/reference/services/SoftLayer_Virtual_Guest/activatePrivatePort.md index d8cac86189..157957d5c8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/activatePrivatePort.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/activatePrivatePort.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#activatePrivatePort-example) {#activatePrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/activatePrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/activatePublicPort.md b/content/reference/services/SoftLayer_Virtual_Guest/activatePublicPort.md index 5cfdaf0325..6490dc8807 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/activatePublicPort.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/activatePublicPort.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#activatePublicPort-example) {#activatePublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/activatePublicPort' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorage.md index 6949a21766..e0e57fae55 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorage-example) {#allowAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/allowAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorageList.md index 7a99a28922..acbed3edf4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/allowAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#allowAccessToNetworkStorageList-example) {#allowAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/allowAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/attachDiskImage.md b/content/reference/services/SoftLayer_Virtual_Guest/attachDiskImage.md index e1acd3510a..6d5b85d2d8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/attachDiskImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/attachDiskImage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#attachDiskImage-example) {#attachDiskImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/attachDiskImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/cancelIsolationForDestructiveAction.md b/content/reference/services/SoftLayer_Virtual_Guest/cancelIsolationForDestructiveAction.md index a93f2597d0..c94c615d19 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/cancelIsolationForDestructiveAction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/cancelIsolationForDestructiveAction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#cancelIsolationForDestructiveAction-example) {#cancelIsolationForDestructiveAction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/cancelIsolationForDestructiveAction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/captureImage.md b/content/reference/services/SoftLayer_Virtual_Guest/captureImage.md index 03f4e2f421..8b8c61245e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/captureImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/captureImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#captureImage-example) {#captureImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Disk_Image_Capture_Template]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/captureImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/checkHostDiskAvailability.md b/content/reference/services/SoftLayer_Virtual_Guest/checkHostDiskAvailability.md index 66ed2c5a4e..f68d5a96cd 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/checkHostDiskAvailability.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/checkHostDiskAvailability.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#checkHostDiskAvailability-example) {#checkHostDiskAvailability-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/checkHostDiskAvailability' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/configureMetadataDisk.md b/content/reference/services/SoftLayer_Virtual_Guest/configureMetadataDisk.md index 22d52e0f64..6b68c87243 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/configureMetadataDisk.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/configureMetadataDisk.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#configureMetadataDisk-example) {#configureMetadataDisk-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/configureMetadataDisk' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTemplate.md b/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTemplate.md index b8abd87196..849301aaa1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTemplate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#createArchiveTemplate-example) {#createArchiveTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Virtual_Guest_Block_Device, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Virtual_Guest_Block_Device, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/createArchiveTemplate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTransaction.md b/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTransaction.md index 2c4acfd804..f7779ae5a3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTransaction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/createArchiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#createArchiveTransaction-example) {#createArchiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Virtual_Guest_Block_Device, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Virtual_Guest_Block_Device, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/createArchiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/createObject.md b/content/reference/services/SoftLayer_Virtual_Guest/createObject.md index ae998a17a2..121f116895 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/createObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/createObject.md @@ -188,8 +188,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/createObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/createObjects.md b/content/reference/services/SoftLayer_Virtual_Guest/createObjects.md index 0594fc3a3c..6791c29127 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/createObjects.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/createObjects.md @@ -97,8 +97,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#createObjects-example) {#createObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/createObjects' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/createPostSoftwareInstallTransaction.md b/content/reference/services/SoftLayer_Virtual_Guest/createPostSoftwareInstallTransaction.md index 6bbedc9ddb..5d5ef0ce38 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/createPostSoftwareInstallTransaction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/createPostSoftwareInstallTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#createPostSoftwareInstallTransaction-example) {#createPostSoftwareInstallTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/createPostSoftwareInstallTransaction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/deleteObject.md b/content/reference/services/SoftLayer_Virtual_Guest/deleteObject.md index 0864abb326..341d9925b3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/deleteObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/deleteObject.md @@ -14,8 +14,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/deleteTag.md b/content/reference/services/SoftLayer_Virtual_Guest/deleteTag.md index 5a7bd560a5..437fbd34b3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/deleteTag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/deleteTag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#deleteTag-example) {#deleteTag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/deleteTag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/deleteTransientWebhook.md b/content/reference/services/SoftLayer_Virtual_Guest/deleteTransientWebhook.md index 7042641de7..98868050f5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/deleteTransientWebhook.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/deleteTransientWebhook.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#deleteTransientWebhook-example) {#deleteTransientWebhook-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/deleteTransientWebhook' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/detachDiskImage.md b/content/reference/services/SoftLayer_Virtual_Guest/detachDiskImage.md index b63d54cdee..6a38b7a9b3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/detachDiskImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/detachDiskImage.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#detachDiskImage-example) {#detachDiskImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/detachDiskImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/editObject.md b/content/reference/services/SoftLayer_Virtual_Guest/editObject.md index 22807daff6..0b9c61b720 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/executeIderaBareMetalRestore.md b/content/reference/services/SoftLayer_Virtual_Guest/executeIderaBareMetalRestore.md index 2e1c230880..f3184439ef 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/executeIderaBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/executeIderaBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#executeIderaBareMetalRestore-example) {#executeIderaBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/executeIderaBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/executeR1SoftBareMetalRestore.md b/content/reference/services/SoftLayer_Virtual_Guest/executeR1SoftBareMetalRestore.md index bb57374aec..ac09f2894d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/executeR1SoftBareMetalRestore.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/executeR1SoftBareMetalRestore.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#executeR1SoftBareMetalRestore-example) {#executeR1SoftBareMetalRestore-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/executeR1SoftBareMetalRestore' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/executeRemoteScript.md b/content/reference/services/SoftLayer_Virtual_Guest/executeRemoteScript.md index 3644d4c3ff..80446b745a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/executeRemoteScript.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/executeRemoteScript.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#executeRemoteScript-example) {#executeRemoteScript-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/executeRemoteScript' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/executeRescueLayer.md b/content/reference/services/SoftLayer_Virtual_Guest/executeRescueLayer.md index bef0faa823..62e2ff9b15 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/executeRescueLayer.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/executeRescueLayer.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#executeRescueLayer-example) {#executeRescueLayer-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/executeRescueLayer' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/findByHostname.md b/content/reference/services/SoftLayer_Virtual_Guest/findByHostname.md index cc250f0d6a..f4a065a708 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/findByHostname.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/findByHostname.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#findByHostname-example) {#findByHostname-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/findByHostname' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/findByIpAddress.md b/content/reference/services/SoftLayer_Virtual_Guest/findByIpAddress.md index 221eb34f3d..f07b27e9a6 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/findByIpAddress.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/findByIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#findByIpAddress-example) {#findByIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/findByIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/generateOrderTemplate.md b/content/reference/services/SoftLayer_Virtual_Guest/generateOrderTemplate.md index 4dd02a7a90..bbb994342a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/generateOrderTemplate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/generateOrderTemplate.md @@ -20,8 +20,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#generateOrderTemplate-example) {#generateOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/generateOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAccount.md b/content/reference/services/SoftLayer_Virtual_Guest/getAccount.md index 51e1882e1b..0a40d34feb 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAccountOwnedPoolFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getAccountOwnedPoolFlag.md index bde7b0ce3a..51417e3782 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAccountOwnedPoolFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAccountOwnedPoolFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAccountOwnedPoolFlag-example) {#getAccountOwnedPoolFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAccountOwnedPoolFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getActiveNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Virtual_Guest/getActiveNetworkMonitorIncident.md index aca2c06292..0fae77714c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getActiveNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getActiveNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getActiveNetworkMonitorIncident-example) {#getActiveNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getActiveNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getActiveTickets.md b/content/reference/services/SoftLayer_Virtual_Guest/getActiveTickets.md index e85bbaa888..07013a7d7e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getActiveTickets.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getActiveTickets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getActiveTickets-example) {#getActiveTickets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getActiveTickets' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransaction.md b/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransaction.md index 210c60854e..4be59cc98e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransaction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getActiveTransaction-example) {#getActiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getActiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransactions.md b/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransactions.md index e2ddd08e1f..df4d824fee 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransactions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getActiveTransactions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getActiveTransactions-example) {#getActiveTransactions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getActiveTransactions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAdditionalRequiredPricesForOsReload.md b/content/reference/services/SoftLayer_Virtual_Guest/getAdditionalRequiredPricesForOsReload.md index 5c1cb74728..2716443f7a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAdditionalRequiredPricesForOsReload.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAdditionalRequiredPricesForOsReload.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAdditionalRequiredPricesForOsReload-example) {#getAdditionalRequiredPricesForOsReload-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAdditionalRequiredPricesForOsReload' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAllowedHost.md b/content/reference/services/SoftLayer_Virtual_Guest/getAllowedHost.md index 34ac39598f..d474a41f64 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAllowedHost.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAllowedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAllowedHost-example) {#getAllowedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAllowedHost' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorage.md b/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorage.md index 3f99e9acbd..c54b7ca210 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorage-example) {#getAllowedNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAllowedNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorageReplicas.md b/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorageReplicas.md index 543a7d3f11..7e0edcf55f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorageReplicas.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAllowedNetworkStorageReplicas.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAllowedNetworkStorageReplicas-example) {#getAllowedNetworkStorageReplicas-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAllowedNetworkStorageReplicas' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAntivirusSpywareSoftwareComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getAntivirusSpywareSoftwareComponent.md index 8fe2884aee..f58dc24b5a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAntivirusSpywareSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAntivirusSpywareSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAntivirusSpywareSoftwareComponent-example) {#getAntivirusSpywareSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAntivirusSpywareSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getApplicationDeliveryController.md b/content/reference/services/SoftLayer_Virtual_Guest/getApplicationDeliveryController.md index 9dd98e9e5b..8972d17abe 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getApplicationDeliveryController.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getApplicationDeliveryController.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getApplicationDeliveryController-example) {#getApplicationDeliveryController-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getApplicationDeliveryController' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAttachedNetworkStorages.md b/content/reference/services/SoftLayer_Virtual_Guest/getAttachedNetworkStorages.md index 17b2f7827a..cb0668c2c6 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAttachedNetworkStorages.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAttachedNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAttachedNetworkStorages-example) {#getAttachedNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAttachedNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAttributes.md b/content/reference/services/SoftLayer_Virtual_Guest/getAttributes.md index 49c4679737..164da0ca75 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAttributes.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAttributes-example) {#getAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAttributes' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAvailableBlockDevicePositions.md b/content/reference/services/SoftLayer_Virtual_Guest/getAvailableBlockDevicePositions.md index 9f37a24984..af275cc9ff 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAvailableBlockDevicePositions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAvailableBlockDevicePositions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAvailableBlockDevicePositions-example) {#getAvailableBlockDevicePositions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAvailableBlockDevicePositions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAvailableMonitoring.md b/content/reference/services/SoftLayer_Virtual_Guest/getAvailableMonitoring.md index 2c0b500a41..3228d1a8e4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAvailableMonitoring.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAvailableMonitoring.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAvailableMonitoring-example) {#getAvailableMonitoring-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAvailableMonitoring' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAvailableNetworkStorages.md b/content/reference/services/SoftLayer_Virtual_Guest/getAvailableNetworkStorages.md index 6fd1b4be78..f855f95cc8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAvailableNetworkStorages.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAvailableNetworkStorages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAvailableNetworkStorages-example) {#getAvailableNetworkStorages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAvailableNetworkStorages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPrivateBandwidthUsage.md index 58fc49be61..78a7ec17ec 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAverageDailyPrivateBandwidthUsage-example) {#getAverageDailyPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAverageDailyPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPublicBandwidthUsage.md index 845807c9aa..7b221435b5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getAverageDailyPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getAverageDailyPublicBandwidthUsage-example) {#getAverageDailyPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getAverageDailyPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBackendNetworkComponents.md b/content/reference/services/SoftLayer_Virtual_Guest/getBackendNetworkComponents.md index 234886eee2..402ab719ac 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBackendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBackendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBackendNetworkComponents-example) {#getBackendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBackendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBackendRouters.md b/content/reference/services/SoftLayer_Virtual_Guest/getBackendRouters.md index e76ea934fa..6c58a6f56a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBackendRouters.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBackendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBackendRouters-example) {#getBackendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBackendRouters' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllocation.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllocation.md index 75934e7747..30438abe33 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllocation.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthAllocation-example) {#getBandwidthAllocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthAllocation' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllotmentDetail.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllotmentDetail.md index bf73f9e7df..251ef18e9a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllotmentDetail.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthAllotmentDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthAllotmentDetail-example) {#getBandwidthAllotmentDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthAllotmentDetail' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthDataByDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthDataByDate.md index ac8a9bdb5e..1b4abc51b5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthDataByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthDataByDate-example) {#getBandwidthDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthForDateRange.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthForDateRange.md index 3a7ffdb4c3..5df3b64157 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthForDateRange.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthForDateRange.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthForDateRange-example) {#getBandwidthForDateRange-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthForDateRange' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImage.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImage.md index ffc20a337c..07ba751b8f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthImage-example) {#getBandwidthImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, enum, dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImageByDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImageByDate.md index 35b0f68a5f..bf35edba6f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImageByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthImageByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthImageByDate-example) {#getBandwidthImageByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthImageByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthTotal.md b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthTotal.md index c8d6547029..7f5ba1f422 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthTotal.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBandwidthTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBandwidthTotal-example) {#getBandwidthTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBandwidthTotal' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBillingCycleBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getBillingCycleBandwidthUsage.md index d8f8148f74..01e9c1839c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBillingCycleBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBillingCycleBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBillingCycleBandwidthUsage-example) {#getBillingCycleBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBillingCycleBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePrivateBandwidthUsage.md index dc6b6e8c03..7b71dd661b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBillingCyclePrivateBandwidthUsage-example) {#getBillingCyclePrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBillingCyclePrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePublicBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePublicBandwidthUsage.md index 3e2f7fdb9b..6fe74635d0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBillingCyclePublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBillingCyclePublicBandwidthUsage-example) {#getBillingCyclePublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBillingCyclePublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBillingItem.md b/content/reference/services/SoftLayer_Virtual_Guest/getBillingItem.md index 71c7c489f0..e966c35aaf 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBillingItem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBlockCancelBecauseDisconnectedFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getBlockCancelBecauseDisconnectedFlag.md index 34282ad7ba..910fc7f3b8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBlockCancelBecauseDisconnectedFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBlockCancelBecauseDisconnectedFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBlockCancelBecauseDisconnectedFlag-example) {#getBlockCancelBecauseDisconnectedFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBlockCancelBecauseDisconnectedFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBlockDeviceTemplateGroup.md b/content/reference/services/SoftLayer_Virtual_Guest/getBlockDeviceTemplateGroup.md index ed5e55482e..a57f443c7b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBlockDeviceTemplateGroup.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBlockDeviceTemplateGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBlockDeviceTemplateGroup-example) {#getBlockDeviceTemplateGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBlockDeviceTemplateGroup' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBlockDevices.md b/content/reference/services/SoftLayer_Virtual_Guest/getBlockDevices.md index 798f1d58ee..4191970c59 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBlockDevices.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBlockDevices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBlockDevices-example) {#getBlockDevices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBlockDevices' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBootMode.md b/content/reference/services/SoftLayer_Virtual_Guest/getBootMode.md index fee83187bc..20c809979c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBootMode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBootMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBootMode-example) {#getBootMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBootMode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBootOrder.md b/content/reference/services/SoftLayer_Virtual_Guest/getBootOrder.md index 2be4b62765..e80d9422bc 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBootOrder.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBootOrder.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBootOrder-example) {#getBootOrder-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBootOrder' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getBrowserConsoleAccessLogs.md b/content/reference/services/SoftLayer_Virtual_Guest/getBrowserConsoleAccessLogs.md index 5c61ff72ea..6cc53da39c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getBrowserConsoleAccessLogs.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getBrowserConsoleAccessLogs.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getBrowserConsoleAccessLogs-example) {#getBrowserConsoleAccessLogs-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getBrowserConsoleAccessLogs' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleAccessLog.md b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleAccessLog.md index 495ee294cc..fedb306500 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleAccessLog.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleAccessLog.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getConsoleAccessLog-example) {#getConsoleAccessLog-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getConsoleAccessLog' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleData.md b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleData.md index b1dced9847..036f53c2e6 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleData.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getConsoleData-example) {#getConsoleData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getConsoleData' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressFlag.md index d2d37cf270..6d81cfd75b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getConsoleIpAddressFlag-example) {#getConsoleIpAddressFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getConsoleIpAddressFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressRecord.md b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressRecord.md index bcd47f648d..e4ac002e3e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressRecord.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getConsoleIpAddressRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getConsoleIpAddressRecord-example) {#getConsoleIpAddressRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getConsoleIpAddressRecord' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getContinuousDataProtectionSoftwareComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getContinuousDataProtectionSoftwareComponent.md index 356d3603db..289aea93a3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getContinuousDataProtectionSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getContinuousDataProtectionSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getContinuousDataProtectionSoftwareComponent-example) {#getContinuousDataProtectionSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getContinuousDataProtectionSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getControlPanel.md b/content/reference/services/SoftLayer_Virtual_Guest/getControlPanel.md index e37738b43e..12884fc702 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getControlPanel.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getControlPanel.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getControlPanel-example) {#getControlPanel-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getControlPanel' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCoreRestrictedOperatingSystemPrice.md b/content/reference/services/SoftLayer_Virtual_Guest/getCoreRestrictedOperatingSystemPrice.md index 136229bd4d..e6b620694a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCoreRestrictedOperatingSystemPrice.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCoreRestrictedOperatingSystemPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCoreRestrictedOperatingSystemPrice-example) {#getCoreRestrictedOperatingSystemPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCoreRestrictedOperatingSystemPrice' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricDataByDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricDataByDate.md index 6268059b95..1e1ed001f9 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricDataByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCpuMetricDataByDate-example) {#getCpuMetricDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCpuMetricDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImage.md b/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImage.md index 5845424244..83f858d02e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCpuMetricImage-example) {#getCpuMetricImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCpuMetricImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImageByDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImageByDate.md index 8571bdf6e4..5e3d1e2f2a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImageByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCpuMetricImageByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCpuMetricImageByDate-example) {#getCpuMetricImageByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime, int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCpuMetricImageByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCreateObjectOptions.md b/content/reference/services/SoftLayer_Virtual_Guest/getCreateObjectOptions.md index bb357111a9..f9633541a7 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCreateObjectOptions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCreateObjectOptions.md @@ -17,8 +17,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCreateObjectOptions-example) {#getCreateObjectOptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/getCreateObjectOptions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBandwidthSummary.md b/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBandwidthSummary.md index 65278c179b..4a221187a1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBandwidthSummary.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBandwidthSummary.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCurrentBandwidthSummary-example) {#getCurrentBandwidthSummary-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCurrentBandwidthSummary' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingDetail.md b/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingDetail.md index b8870bac47..42e8acc9d0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingDetail.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingDetail.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCurrentBillingDetail-example) {#getCurrentBillingDetail-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCurrentBillingDetail' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingTotal.md b/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingTotal.md index 41a57fd850..c647c6083c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingTotal.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getCurrentBillingTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getCurrentBillingTotal-example) {#getCurrentBillingTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getCurrentBillingTotal' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getDatacenter.md b/content/reference/services/SoftLayer_Virtual_Guest/getDatacenter.md index 5c5ba7bc93..cc2f55f965 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getDatacenter.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getDedicatedHost.md b/content/reference/services/SoftLayer_Virtual_Guest/getDedicatedHost.md index f943799557..121464defd 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getDedicatedHost.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getDedicatedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getDedicatedHost-example) {#getDedicatedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getDedicatedHost' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getDeviceStatus.md b/content/reference/services/SoftLayer_Virtual_Guest/getDeviceStatus.md index 9c0bc048df..9df838d77c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getDeviceStatus.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getDeviceStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getDeviceStatus-example) {#getDeviceStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getDeviceStatus' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getDriveRetentionItemPrice.md b/content/reference/services/SoftLayer_Virtual_Guest/getDriveRetentionItemPrice.md index 55539afa06..08f456bace 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getDriveRetentionItemPrice.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getDriveRetentionItemPrice.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getDriveRetentionItemPrice-example) {#getDriveRetentionItemPrice-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getDriveRetentionItemPrice' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getEvaultNetworkStorage.md b/content/reference/services/SoftLayer_Virtual_Guest/getEvaultNetworkStorage.md index 3a70ac1487..73d3ae9918 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getEvaultNetworkStorage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getEvaultNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getEvaultNetworkStorage-example) {#getEvaultNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getEvaultNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getFirewallProtectableSubnets.md b/content/reference/services/SoftLayer_Virtual_Guest/getFirewallProtectableSubnets.md index 58fee98561..34a1ad4f6e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getFirewallProtectableSubnets.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getFirewallProtectableSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getFirewallProtectableSubnets-example) {#getFirewallProtectableSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getFirewallProtectableSubnets' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getFirewallServiceComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getFirewallServiceComponent.md index 92304a32e1..015e88400f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getFirewallServiceComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getFirewallServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getFirewallServiceComponent-example) {#getFirewallServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getFirewallServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getFirstAvailableBlockDevicePosition.md b/content/reference/services/SoftLayer_Virtual_Guest/getFirstAvailableBlockDevicePosition.md index 58ff097880..c47fd6ed0c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getFirstAvailableBlockDevicePosition.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getFirstAvailableBlockDevicePosition.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getFirstAvailableBlockDevicePosition-example) {#getFirstAvailableBlockDevicePosition-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getFirstAvailableBlockDevicePosition' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getFrontendNetworkComponents.md b/content/reference/services/SoftLayer_Virtual_Guest/getFrontendNetworkComponents.md index 25597d778b..ebfa0a74c5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getFrontendNetworkComponents.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getFrontendNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getFrontendNetworkComponents-example) {#getFrontendNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getFrontendNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getFrontendRouters.md b/content/reference/services/SoftLayer_Virtual_Guest/getFrontendRouters.md index 3b1952bb24..22706b6a8d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getFrontendRouters.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getFrontendRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getFrontendRouters-example) {#getFrontendRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getFrontendRouters' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Virtual_Guest/getGlobalIdentifier.md index ba0d8a0cfb..cc81d336be 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getGpuCount.md b/content/reference/services/SoftLayer_Virtual_Guest/getGpuCount.md index 886336cbcb..567656de1f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getGpuCount.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getGpuCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getGpuCount-example) {#getGpuCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getGpuCount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getGpuType.md b/content/reference/services/SoftLayer_Virtual_Guest/getGpuType.md index 7b49aff2a8..76b9faaaba 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getGpuType.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getGpuType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getGpuType-example) {#getGpuType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getGpuType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getGuestBootParameter.md b/content/reference/services/SoftLayer_Virtual_Guest/getGuestBootParameter.md index 807983baca..c0fd3cf2bf 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getGuestBootParameter.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getGuestBootParameter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getGuestBootParameter-example) {#getGuestBootParameter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getGuestBootParameter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getHardwareFunctionDescription.md b/content/reference/services/SoftLayer_Virtual_Guest/getHardwareFunctionDescription.md index 74b7f528a4..f2eec022c1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getHardwareFunctionDescription.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getHardwareFunctionDescription.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getHardwareFunctionDescription-example) {#getHardwareFunctionDescription-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getHardwareFunctionDescription' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getHost.md b/content/reference/services/SoftLayer_Virtual_Guest/getHost.md index b66eac930c..a256e324ac 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getHost.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getHost-example) {#getHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getHost' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getHostIpsSoftwareComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getHostIpsSoftwareComponent.md index d564b5c903..6a1a47a261 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getHostIpsSoftwareComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getHostIpsSoftwareComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getHostIpsSoftwareComponent-example) {#getHostIpsSoftwareComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getHostIpsSoftwareComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getHourlyBillingFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getHourlyBillingFlag.md index 5c134f6efe..1727b3b6a3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getHourlyBillingFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getHourlyBillingFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getHourlyBillingFlag-example) {#getHourlyBillingFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getHourlyBillingFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getInboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getInboundPrivateBandwidthUsage.md index 1242cc92eb..3252f6ce2b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getInboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getInboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getInboundPrivateBandwidthUsage-example) {#getInboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getInboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getInboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getInboundPublicBandwidthUsage.md index 3a0a6bbb3d..d7a537768f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getInboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getInboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getInboundPublicBandwidthUsage-example) {#getInboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getInboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getInternalTagReferences.md b/content/reference/services/SoftLayer_Virtual_Guest/getInternalTagReferences.md index 1df5cef90e..09cdf32dcf 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getInternalTagReferences.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getInternalTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getInternalTagReferences-example) {#getInternalTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getInternalTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getIsoBootImage.md b/content/reference/services/SoftLayer_Virtual_Guest/getIsoBootImage.md index 769b0b4f28..5ba9ddc2a0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getIsoBootImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getIsoBootImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getIsoBootImage-example) {#getIsoBootImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getIsoBootImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getItemPricesFromSoftwareDescriptions.md b/content/reference/services/SoftLayer_Virtual_Guest/getItemPricesFromSoftwareDescriptions.md index 7be1c996ea..e47071a8ae 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getItemPricesFromSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getItemPricesFromSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getItemPricesFromSoftwareDescriptions-example) {#getItemPricesFromSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Software_Description, boolean, boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getItemPricesFromSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getLastKnownPowerState.md b/content/reference/services/SoftLayer_Virtual_Guest/getLastKnownPowerState.md index e4b812b915..5100926d08 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getLastKnownPowerState.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getLastKnownPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getLastKnownPowerState-example) {#getLastKnownPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getLastKnownPowerState' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getLastOperatingSystemReload.md b/content/reference/services/SoftLayer_Virtual_Guest/getLastOperatingSystemReload.md index 1a80c580e8..7b93ef3fc3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getLastOperatingSystemReload.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getLastOperatingSystemReload.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getLastOperatingSystemReload-example) {#getLastOperatingSystemReload-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getLastOperatingSystemReload' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getLastTransaction.md b/content/reference/services/SoftLayer_Virtual_Guest/getLastTransaction.md index d8c1e4c741..560f74da6e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getLastTransaction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getLastTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getLastTransaction-example) {#getLastTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getLastTransaction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getLatestNetworkMonitorIncident.md b/content/reference/services/SoftLayer_Virtual_Guest/getLatestNetworkMonitorIncident.md index 9e82ac3ad2..c06075a673 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getLatestNetworkMonitorIncident.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getLatestNetworkMonitorIncident.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getLatestNetworkMonitorIncident-example) {#getLatestNetworkMonitorIncident-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getLatestNetworkMonitorIncident' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getLocalDiskFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getLocalDiskFlag.md index 0c4aa23b1c..e49663c632 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getLocalDiskFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getLocalDiskFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getLocalDiskFlag-example) {#getLocalDiskFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getLocalDiskFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getLocation.md b/content/reference/services/SoftLayer_Virtual_Guest/getLocation.md index 0938b1ce90..ec92705524 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getLocation.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getLocation.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getLocation-example) {#getLocation-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getLocation' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getManagedResourceFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getManagedResourceFlag.md index 48c6b270ed..1966c5036f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getManagedResourceFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getManagedResourceFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getManagedResourceFlag-example) {#getManagedResourceFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getManagedResourceFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricDataByDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricDataByDate.md index 4a0e0c5aec..064bc98e99 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricDataByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMemoryMetricDataByDate-example) {#getMemoryMetricDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMemoryMetricDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImage.md b/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImage.md index 1cfc81820f..3c9fe7f276 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMemoryMetricImage-example) {#getMemoryMetricImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMemoryMetricImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImageByDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImageByDate.md index d36eb619fa..af22a74b80 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImageByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMemoryMetricImageByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMemoryMetricImageByDate-example) {#getMemoryMetricImageByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMemoryMetricImageByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObject.md index 0750d8fd2a..a6afca4ac1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObjectId.md b/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObjectId.md index a5816e9862..73fa99f3cb 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObjectId.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMetricTrackingObjectId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMetricTrackingObjectId-example) {#getMetricTrackingObjectId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMetricTrackingObjectId' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringRobot.md b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringRobot.md index 5c7944eb86..d59aa696de 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringRobot.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringRobot.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMonitoringRobot-example) {#getMonitoringRobot-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMonitoringRobot' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceComponent.md index a93103f99c..39fee317fe 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMonitoringServiceComponent-example) {#getMonitoringServiceComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMonitoringServiceComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceEligibilityFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceEligibilityFlag.md index 87f4084fcf..57d42b1438 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceEligibilityFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringServiceEligibilityFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMonitoringServiceEligibilityFlag-example) {#getMonitoringServiceEligibilityFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMonitoringServiceEligibilityFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringUserNotification.md b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringUserNotification.md index 26d360d81c..585be25293 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringUserNotification.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getMonitoringUserNotification.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getMonitoringUserNotification-example) {#getMonitoringUserNotification-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getMonitoringUserNotification' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponentFirewallProtectableIpAddresses.md b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponentFirewallProtectableIpAddresses.md index dce27d8008..bd1df941c5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponentFirewallProtectableIpAddresses.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponentFirewallProtectableIpAddresses.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewallProtectableIpAddresses-example) {#getNetworkComponentFirewallProtectableIpAddresses-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getNetworkComponentFirewallProtectableIpAddresses' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponents.md b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponents.md index b4836592ac..70d3123544 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponents.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getNetworkComponents-example) {#getNetworkComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getNetworkComponents' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitorIncidents.md b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitorIncidents.md index 25e1036b6d..0a2040abe6 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitorIncidents.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitorIncidents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getNetworkMonitorIncidents-example) {#getNetworkMonitorIncidents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getNetworkMonitorIncidents' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitors.md b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitors.md index 9f8f4f0878..c051b77645 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitors.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkMonitors.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getNetworkMonitors-example) {#getNetworkMonitors-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getNetworkMonitors' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkStorage.md b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkStorage.md index 115049c074..c9be013049 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkStorage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getNetworkStorage-example) {#getNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkVlans.md b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkVlans.md index e4c94d7085..757094735c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getNetworkVlans.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getNetworkVlans.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getNetworkVlans-example) {#getNetworkVlans-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getNetworkVlans' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getObject.md b/content/reference/services/SoftLayer_Virtual_Guest/getObject.md index 2e6596a578..744ba53708 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOpenCancellationTicket.md b/content/reference/services/SoftLayer_Virtual_Guest/getOpenCancellationTicket.md index 6491c2e0c7..4fea73bb5c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOpenCancellationTicket.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOpenCancellationTicket.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOpenCancellationTicket-example) {#getOpenCancellationTicket-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOpenCancellationTicket' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystem.md b/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystem.md index e824e16fee..4877a5fc2f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOperatingSystem-example) {#getOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystemReferenceCode.md b/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystemReferenceCode.md index b703f143f7..2b0c940804 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystemReferenceCode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOperatingSystemReferenceCode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOperatingSystemReferenceCode-example) {#getOperatingSystemReferenceCode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOperatingSystemReferenceCode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOrderTemplate.md b/content/reference/services/SoftLayer_Virtual_Guest/getOrderTemplate.md index af3134c9a3..20a1880f2a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOrderTemplate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOrderTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOrderTemplate-example) {#getOrderTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, SoftLayer_Product_Item_Price]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [enum, SoftLayer_Product_Item_Price]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOrderTemplate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOrderedPackageId.md b/content/reference/services/SoftLayer_Virtual_Guest/getOrderedPackageId.md index 28cc326411..eed590f7ea 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOrderedPackageId.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOrderedPackageId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOrderedPackageId-example) {#getOrderedPackageId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOrderedPackageId' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPrivateBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPrivateBandwidthUsage.md index da08ec0d52..737250536c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPrivateBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPrivateBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOutboundPrivateBandwidthUsage-example) {#getOutboundPrivateBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOutboundPrivateBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPublicBandwidthUsage.md index ef3a4ed0f2..bcbb88eac0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOutboundPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOutboundPublicBandwidthUsage-example) {#getOutboundPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOutboundPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getOverBandwidthAllocationFlag.md index 96676d9970..fe5248f1fe 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getOverBandwidthAllocationFlag-example) {#getOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPendingMaintenanceActions.md b/content/reference/services/SoftLayer_Virtual_Guest/getPendingMaintenanceActions.md index fad84aa33d..7731c58f30 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPendingMaintenanceActions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPendingMaintenanceActions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPendingMaintenanceActions-example) {#getPendingMaintenanceActions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPendingMaintenanceActions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPendingMigrationFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getPendingMigrationFlag.md index 2d1a0941a0..1e706dfb0d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPendingMigrationFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPendingMigrationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPendingMigrationFlag-example) {#getPendingMigrationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPendingMigrationFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPlacementGroup.md b/content/reference/services/SoftLayer_Virtual_Guest/getPlacementGroup.md index fc252b1da5..ef23447c4e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPlacementGroup.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPlacementGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPlacementGroup-example) {#getPlacementGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPlacementGroup' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPowerState.md b/content/reference/services/SoftLayer_Virtual_Guest/getPowerState.md index 80bbb12899..9b2876d23d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPowerState.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPowerState.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPowerState-example) {#getPowerState-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPowerState' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendIpAddress.md b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendIpAddress.md index 3c9f8a60a5..3dc473225c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendIpAddress.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPrimaryBackendIpAddress-example) {#getPrimaryBackendIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPrimaryBackendIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendNetworkComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendNetworkComponent.md index c0a14ea4f7..8e753b4f8f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendNetworkComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryBackendNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPrimaryBackendNetworkComponent-example) {#getPrimaryBackendNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPrimaryBackendNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryIpAddress.md index 934345adb1..7e7d47b0b3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryNetworkComponent.md b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryNetworkComponent.md index 1a3442c95d..d623e1c37f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryNetworkComponent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPrimaryNetworkComponent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPrimaryNetworkComponent-example) {#getPrimaryNetworkComponent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPrimaryNetworkComponent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getPrivateNetworkOnlyFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getPrivateNetworkOnlyFlag.md index 96c09a5513..3219c00e73 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getPrivateNetworkOnlyFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getPrivateNetworkOnlyFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getPrivateNetworkOnlyFlag-example) {#getPrivateNetworkOnlyFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getPrivateNetworkOnlyFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getProjectedOverBandwidthAllocationFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getProjectedOverBandwidthAllocationFlag.md index c6df3147f7..3b192a420b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getProjectedOverBandwidthAllocationFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getProjectedOverBandwidthAllocationFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getProjectedOverBandwidthAllocationFlag-example) {#getProjectedOverBandwidthAllocationFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getProjectedOverBandwidthAllocationFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getProjectedPublicBandwidthUsage.md b/content/reference/services/SoftLayer_Virtual_Guest/getProjectedPublicBandwidthUsage.md index 2ef0b4feda..ce1ebf5510 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getProjectedPublicBandwidthUsage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getProjectedPublicBandwidthUsage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getProjectedPublicBandwidthUsage-example) {#getProjectedPublicBandwidthUsage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getProjectedPublicBandwidthUsage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getProvisionDate.md b/content/reference/services/SoftLayer_Virtual_Guest/getProvisionDate.md index 7e1ebb865b..e22349fc38 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getProvisionDate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getProvisionDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getProvisionDate-example) {#getProvisionDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getProvisionDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getRecentEvents.md b/content/reference/services/SoftLayer_Virtual_Guest/getRecentEvents.md index ff3cb66dcf..7e56e49090 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getRecentEvents.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getRecentEvents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getRecentEvents-example) {#getRecentEvents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getRecentEvents' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getRecentMetricData.md b/content/reference/services/SoftLayer_Virtual_Guest/getRecentMetricData.md index 361f369296..642b07f809 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getRecentMetricData.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getRecentMetricData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getRecentMetricData-example) {#getRecentMetricData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [unsignedInt]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [unsignedInt]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getRecentMetricData' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getRegionalGroup.md b/content/reference/services/SoftLayer_Virtual_Guest/getRegionalGroup.md index cac8357676..8823615ac1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getRegionalGroup.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getRegionalGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getRegionalGroup-example) {#getRegionalGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getRegionalGroup' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getRegionalInternetRegistry.md b/content/reference/services/SoftLayer_Virtual_Guest/getRegionalInternetRegistry.md index eabdb03b73..3b5a1059e2 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getRegionalInternetRegistry.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getRegionalInternetRegistry.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getRegionalInternetRegistry-example) {#getRegionalInternetRegistry-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getRegionalInternetRegistry' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroup.md b/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroup.md index 57e427406d..a63af5f51a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroup.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getReservedCapacityGroup-example) {#getReservedCapacityGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getReservedCapacityGroup' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupFlag.md index a72a9d7453..0964081499 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getReservedCapacityGroupFlag-example) {#getReservedCapacityGroupFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getReservedCapacityGroupFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupInstance.md b/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupInstance.md index a92d0594dd..10c7cbcae2 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupInstance.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getReservedCapacityGroupInstance.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getReservedCapacityGroupInstance-example) {#getReservedCapacityGroupInstance-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getReservedCapacityGroupInstance' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getReverseDomainRecords.md b/content/reference/services/SoftLayer_Virtual_Guest/getReverseDomainRecords.md index d8d60b0c2d..2c15c592c1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getReverseDomainRecords.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getReverseDomainRecords.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getReverseDomainRecords-example) {#getReverseDomainRecords-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getReverseDomainRecords' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getSecurityScanRequests.md b/content/reference/services/SoftLayer_Virtual_Guest/getSecurityScanRequests.md index 67c00da012..67107f321e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getSecurityScanRequests.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getSecurityScanRequests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getSecurityScanRequests-example) {#getSecurityScanRequests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getSecurityScanRequests' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getServerRoom.md b/content/reference/services/SoftLayer_Virtual_Guest/getServerRoom.md index 1d57e888e7..e8335b94c0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getServerRoom.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getServerRoom.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getServerRoom-example) {#getServerRoom-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getServerRoom' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getSoftwareComponents.md b/content/reference/services/SoftLayer_Virtual_Guest/getSoftwareComponents.md index 530e82716a..efca04d962 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getSoftwareComponents.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getSoftwareComponents.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getSoftwareComponents-example) {#getSoftwareComponents-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getSoftwareComponents' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getSshKeys.md b/content/reference/services/SoftLayer_Virtual_Guest/getSshKeys.md index a4bbb5a1bf..1f8d172206 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getSshKeys.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getStatus.md b/content/reference/services/SoftLayer_Virtual_Guest/getStatus.md index bb1641c606..14910b6561 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getStatus.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getTagReferences.md b/content/reference/services/SoftLayer_Virtual_Guest/getTagReferences.md index 6f431bb90e..cf106311a7 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getTagReferences.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getTransientGuestFlag.md b/content/reference/services/SoftLayer_Virtual_Guest/getTransientGuestFlag.md index aeb0311807..26e09599b3 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getTransientGuestFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getTransientGuestFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getTransientGuestFlag-example) {#getTransientGuestFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getTransientGuestFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getTransientWebhookURI.md b/content/reference/services/SoftLayer_Virtual_Guest/getTransientWebhookURI.md index fca5afb7c5..ad8aa56863 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getTransientWebhookURI.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getTransientWebhookURI.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getTransientWebhookURI-example) {#getTransientWebhookURI-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getTransientWebhookURI' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getType.md b/content/reference/services/SoftLayer_Virtual_Guest/getType.md index 4741cf754d..5c1d854570 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getType.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeItemPrices.md b/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeItemPrices.md index 4f3e895546..406c9dcbb8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeItemPrices.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeItemPrices.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getUpgradeItemPrices-example) {#getUpgradeItemPrices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [boolean]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getUpgradeItemPrices' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeRequest.md b/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeRequest.md index ed0b7ede43..2f79bac632 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeRequest.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getUpgradeRequest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getUpgradeRequest-example) {#getUpgradeRequest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getUpgradeRequest' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getUserData.md b/content/reference/services/SoftLayer_Virtual_Guest/getUserData.md index c500285141..4c1c77d5bf 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getUserData.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getUserData.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getUserData-example) {#getUserData-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getUserData' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getUsers.md b/content/reference/services/SoftLayer_Virtual_Guest/getUsers.md index e67481c72b..373a22d44f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getUsers.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getUsers.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getUsers-example) {#getUsers-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getUsers' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getValidBlockDeviceTemplateGroups.md b/content/reference/services/SoftLayer_Virtual_Guest/getValidBlockDeviceTemplateGroups.md index f7522810b4..49f23852a1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getValidBlockDeviceTemplateGroups.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getValidBlockDeviceTemplateGroups.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getValidBlockDeviceTemplateGroups-example) {#getValidBlockDeviceTemplateGroups-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getValidBlockDeviceTemplateGroups' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRack.md b/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRack.md index 170a8eb3f7..640fb14e85 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRack.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRack.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getVirtualRack-example) {#getVirtualRack-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getVirtualRack' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackId.md b/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackId.md index 94d134d953..3f99339f96 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackId.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackId.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getVirtualRackId-example) {#getVirtualRackId-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getVirtualRackId' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackName.md b/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackName.md index 71510f4fdb..541b7f806c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackName.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/getVirtualRackName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#getVirtualRackName-example) {#getVirtualRackName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/getVirtualRackName' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/isBackendPingable.md b/content/reference/services/SoftLayer_Virtual_Guest/isBackendPingable.md index 69e068e277..bb7410c854 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/isBackendPingable.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/isBackendPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#isBackendPingable-example) {#isBackendPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/isBackendPingable' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/isCloudInit.md b/content/reference/services/SoftLayer_Virtual_Guest/isCloudInit.md index 31630f22e9..a862ef8e70 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/isCloudInit.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/isCloudInit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#isCloudInit-example) {#isCloudInit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/isCloudInit' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/isPingable.md b/content/reference/services/SoftLayer_Virtual_Guest/isPingable.md index 685eb40b6e..0ff5d0e580 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/isPingable.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/isolateInstanceForDestructiveAction.md b/content/reference/services/SoftLayer_Virtual_Guest/isolateInstanceForDestructiveAction.md index 3ceb683385..cdf511bf5d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/isolateInstanceForDestructiveAction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/isolateInstanceForDestructiveAction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#isolateInstanceForDestructiveAction-example) {#isolateInstanceForDestructiveAction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/isolateInstanceForDestructiveAction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/migrate.md b/content/reference/services/SoftLayer_Virtual_Guest/migrate.md index 03e842af58..5f9f6cc072 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/migrate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/migrate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#migrate-example) {#migrate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/migrate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/migrateDedicatedHost.md b/content/reference/services/SoftLayer_Virtual_Guest/migrateDedicatedHost.md index 85c32a5dea..790bbffd90 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/migrateDedicatedHost.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/migrateDedicatedHost.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#migrateDedicatedHost-example) {#migrateDedicatedHost-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/migrateDedicatedHost' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/mountIsoImage.md b/content/reference/services/SoftLayer_Virtual_Guest/mountIsoImage.md index c18a814435..01353a807a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/mountIsoImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/mountIsoImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#mountIsoImage-example) {#mountIsoImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/mountIsoImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/pause.md b/content/reference/services/SoftLayer_Virtual_Guest/pause.md index 1a6306de96..325499e5f5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/pause.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/pause.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#pause-example) {#pause-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/pause' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/powerCycle.md b/content/reference/services/SoftLayer_Virtual_Guest/powerCycle.md index 2d9820807a..b273923abd 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/powerCycle.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/powerCycle.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#powerCycle-example) {#powerCycle-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/powerCycle' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/powerOff.md b/content/reference/services/SoftLayer_Virtual_Guest/powerOff.md index 704d34f1f0..5185cd2516 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/powerOff.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/powerOff.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#powerOff-example) {#powerOff-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/powerOff' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/powerOffSoft.md b/content/reference/services/SoftLayer_Virtual_Guest/powerOffSoft.md index 82f207dfd0..95aea97866 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/powerOffSoft.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/powerOffSoft.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#powerOffSoft-example) {#powerOffSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/powerOffSoft' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/powerOn.md b/content/reference/services/SoftLayer_Virtual_Guest/powerOn.md index 946a6067c2..1cbf1f15d5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/powerOn.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/powerOn.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#powerOn-example) {#powerOn-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/powerOn' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/rebootDefault.md b/content/reference/services/SoftLayer_Virtual_Guest/rebootDefault.md index ac6a5648f3..d982fbb051 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/rebootDefault.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/rebootDefault.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#rebootDefault-example) {#rebootDefault-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/rebootDefault' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/rebootHard.md b/content/reference/services/SoftLayer_Virtual_Guest/rebootHard.md index d37b59729b..793283c49f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/rebootHard.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/rebootHard.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#rebootHard-example) {#rebootHard-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/rebootHard' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/rebootSoft.md b/content/reference/services/SoftLayer_Virtual_Guest/rebootSoft.md index a572a6ec3b..cf994fe5ac 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/rebootSoft.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/rebootSoft.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#rebootSoft-example) {#rebootSoft-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/rebootSoft' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/reloadCurrentOperatingSystemConfiguration.md b/content/reference/services/SoftLayer_Virtual_Guest/reloadCurrentOperatingSystemConfiguration.md index 6a704ccdf8..34722d4eb2 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/reloadCurrentOperatingSystemConfiguration.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/reloadCurrentOperatingSystemConfiguration.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#reloadCurrentOperatingSystemConfiguration-example) {#reloadCurrentOperatingSystemConfiguration-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/reloadCurrentOperatingSystemConfiguration' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/reloadOperatingSystem.md b/content/reference/services/SoftLayer_Virtual_Guest/reloadOperatingSystem.md index 6749cc637c..5c03d1e3ba 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/reloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/reloadOperatingSystem.md @@ -19,8 +19,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#reloadOperatingSystem-example) {#reloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/reloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorage.md b/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorage.md index f5071faed9..86eedbee6e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorage-example) {#removeAccessToNetworkStorage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/removeAccessToNetworkStorage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorageList.md b/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorageList.md index f49ada69d6..366656336d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorageList.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/removeAccessToNetworkStorageList.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#removeAccessToNetworkStorageList-example) {#removeAccessToNetworkStorageList-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Network_Storage]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/removeAccessToNetworkStorageList' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/removeTags.md b/content/reference/services/SoftLayer_Virtual_Guest/removeTags.md index bce696d00e..2f7ae7a624 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/removeTags.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/removeTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#removeTags-example) {#removeTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/removeTags' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/resume.md b/content/reference/services/SoftLayer_Virtual_Guest/resume.md index c5d68f71e2..159a9903ed 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/resume.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/resume.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#resume-example) {#resume-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/resume' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/sendTestReclaimScheduledAlert.md b/content/reference/services/SoftLayer_Virtual_Guest/sendTestReclaimScheduledAlert.md index 6b5205750f..7e3337b5c4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/sendTestReclaimScheduledAlert.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/sendTestReclaimScheduledAlert.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#sendTestReclaimScheduledAlert-example) {#sendTestReclaimScheduledAlert-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/sendTestReclaimScheduledAlert' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/setPrivateNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Virtual_Guest/setPrivateNetworkInterfaceSpeed.md index 490f155d97..955ea6a9a2 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/setPrivateNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/setPrivateNetworkInterfaceSpeed.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#setPrivateNetworkInterfaceSpeed-example) {#setPrivateNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/setPrivateNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/setPublicNetworkInterfaceSpeed.md b/content/reference/services/SoftLayer_Virtual_Guest/setPublicNetworkInterfaceSpeed.md index af140c27bd..35ab2ba5f0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/setPublicNetworkInterfaceSpeed.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/setPublicNetworkInterfaceSpeed.md @@ -15,8 +15,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#setPublicNetworkInterfaceSpeed-example) {#setPublicNetworkInterfaceSpeed-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/setPublicNetworkInterfaceSpeed' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/setTags.md b/content/reference/services/SoftLayer_Virtual_Guest/setTags.md index 30f7cf4b36..10c24d1ec8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/setTags.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/setTransientWebhook.md b/content/reference/services/SoftLayer_Virtual_Guest/setTransientWebhook.md index 25b0707877..7dd8db795e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/setTransientWebhook.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/setTransientWebhook.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#setTransientWebhook-example) {#setTransientWebhook-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/setTransientWebhook' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/setUserMetadata.md b/content/reference/services/SoftLayer_Virtual_Guest/setUserMetadata.md index f8a2a895f0..5237002ed4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/setUserMetadata.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/setUserMetadata.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#setUserMetadata-example) {#setUserMetadata-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/setUserMetadata' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/shutdownPrivatePort.md b/content/reference/services/SoftLayer_Virtual_Guest/shutdownPrivatePort.md index eb3cdc2fcc..cf3b255b96 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/shutdownPrivatePort.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/shutdownPrivatePort.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#shutdownPrivatePort-example) {#shutdownPrivatePort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/shutdownPrivatePort' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/shutdownPublicPort.md b/content/reference/services/SoftLayer_Virtual_Guest/shutdownPublicPort.md index 7dc8a3ed42..619e71832a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/shutdownPublicPort.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/shutdownPublicPort.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#shutdownPublicPort-example) {#shutdownPublicPort-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/shutdownPublicPort' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/unmountIsoImage.md b/content/reference/services/SoftLayer_Virtual_Guest/unmountIsoImage.md index 69b831f919..435090f2fb 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/unmountIsoImage.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/unmountIsoImage.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#unmountIsoImage-example) {#unmountIsoImage-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/unmountIsoImage' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/validateImageTemplate.md b/content/reference/services/SoftLayer_Virtual_Guest/validateImageTemplate.md index c80e6eaa52..65176ab426 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/validateImageTemplate.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/validateImageTemplate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#validateImageTemplate-example) {#validateImageTemplate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/validateImageTemplate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest/verifyReloadOperatingSystem.md b/content/reference/services/SoftLayer_Virtual_Guest/verifyReloadOperatingSystem.md index 4775e2c670..4e07875695 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest/verifyReloadOperatingSystem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest/verifyReloadOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest" --- -### Curl Example +# [REST Example](#verifyReloadOperatingSystem-example) {#verifyReloadOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Hardware_Server_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Hardware_Server_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest/{SoftLayer_Virtual_GuestID}/verifyReloadOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addByolAttribute.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addByolAttribute.md index 38fea50aaf..bb8d272036 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addByolAttribute.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addByolAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#addByolAttribute-example) {#addByolAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/addByolAttribute' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addCloudInitAttribute.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addCloudInitAttribute.md index 4a09e141fb..d429952704 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addCloudInitAttribute.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addCloudInitAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#addCloudInitAttribute-example) {#addCloudInitAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/addCloudInitAttribute' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addLocations.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addLocations.md index 43cfc277d7..bc11a55b07 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addLocations.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#addLocations-example) {#addLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/addLocations' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addSupportedBootMode.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addSupportedBootMode.md index ba8bdf5643..757981f237 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addSupportedBootMode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/addSupportedBootMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#addSupportedBootMode-example) {#addSupportedBootMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/addSupportedBootMode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToExternalSource.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToExternalSource.md index ec0de7c94d..484c9dab9f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToExternalSource.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToExternalSource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#copyToExternalSource-example) {#copyToExternalSource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/copyToExternalSource' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToIcos.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToIcos.md index 5ea11b96f3..4c81352981 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToIcos.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/copyToIcos.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#copyToIcos-example) {#copyToIcos-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/copyToIcos' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource.md index 57bcccc3fb..f68cfb40d7 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#createFromExternalSource-example) {#createFromExternalSource-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromExternalSource' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromIcos.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromIcos.md index eb93c20308..a912c3208a 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromIcos.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromIcos.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#createFromIcos-example) {#createFromIcos-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Container_Virtual_Guest_Block_Device_Template_Configuration]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createFromIcos' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createPublicArchiveTransaction.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createPublicArchiveTransaction.md index fcf41b9df1..c1e10badf4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createPublicArchiveTransaction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/createPublicArchiveTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#createPublicArchiveTransaction-example) {#createPublicArchiveTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, SoftLayer_Location]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string, string, SoftLayer_Location]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/createPublicArchiveTransaction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteByolAttribute.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteByolAttribute.md index 9831806f73..aeac1b90df 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteByolAttribute.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteByolAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#deleteByolAttribute-example) {#deleteByolAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/deleteByolAttribute' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteCloudInitAttribute.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteCloudInitAttribute.md index 6382fbb0a2..c05893f06c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteCloudInitAttribute.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteCloudInitAttribute.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#deleteCloudInitAttribute-example) {#deleteCloudInitAttribute-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/deleteCloudInitAttribute' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteObject.md index f133074041..4c0e1ccef4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/denySharingAccess.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/denySharingAccess.md index 8284a3c6f2..16615560cf 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/denySharingAccess.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/denySharingAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#denySharingAccess-example) {#denySharingAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/denySharingAccess' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/editObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/editObject.md index 1822b2d0fb..1c7cca34fa 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Block_Device_Template_Group]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Block_Device_Template_Group]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/findGcImagesByCurrentUser.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/findGcImagesByCurrentUser.md index 2fb312177f..91331cbcba 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/findGcImagesByCurrentUser.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/findGcImagesByCurrentUser.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#findGcImagesByCurrentUser-example) {#findGcImagesByCurrentUser-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string, string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/findGcImagesByCurrentUser' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccount.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccount.md index 06ea79ae94..6ed83837e4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountContacts.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountContacts.md index e0db6a96c7..6f808184e9 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountContacts.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountContacts.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getAccountContacts-example) {#getAccountContacts-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getAccountContacts' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountReferences.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountReferences.md index cff3f6c4ed..ac2d8d3aa4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountReferences.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAccountReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getAccountReferences-example) {#getAccountReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getAccountReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAllAvailableCompatiblePlatformNames.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAllAvailableCompatiblePlatformNames.md index e7972b45f2..4478447a49 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAllAvailableCompatiblePlatformNames.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAllAvailableCompatiblePlatformNames.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getAllAvailableCompatiblePlatformNames-example) {#getAllAvailableCompatiblePlatformNames-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getAllAvailableCompatiblePlatformNames' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevices.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevices.md index b139e4e28d..5d189dcbf4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevices.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getBlockDevices-example) {#getBlockDevices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getBlockDevices' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevicesDiskSpaceTotal.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevicesDiskSpaceTotal.md index ea5f435dc2..838b6bc84d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevicesDiskSpaceTotal.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBlockDevicesDiskSpaceTotal.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getBlockDevicesDiskSpaceTotal-example) {#getBlockDevicesDiskSpaceTotal-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getBlockDevicesDiskSpaceTotal' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBootMode.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBootMode.md index a0e56874ac..30ffe29ebf 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBootMode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getBootMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getBootMode-example) {#getBootMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getBootMode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getByolFlag.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getByolFlag.md index 2663da6566..90a7feb534 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getByolFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getByolFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getByolFlag-example) {#getByolFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getByolFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getChildren.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getChildren.md index 797c642357..816bf48f50 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getChildren.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getChildren.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getChildren-example) {#getChildren-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getChildren' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getCurrentCompatiblePlatformNames.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getCurrentCompatiblePlatformNames.md index c2f6e27dc4..14d3124c93 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getCurrentCompatiblePlatformNames.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getCurrentCompatiblePlatformNames.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getCurrentCompatiblePlatformNames-example) {#getCurrentCompatiblePlatformNames-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getCurrentCompatiblePlatformNames' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenter.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenter.md index 0b76dbc6c3..6b3e60bef8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenter.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenters.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenters.md index 9f569bc837..a6a1697f06 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenters.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDatacenters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getDatacenters-example) {#getDatacenters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getDatacenters' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDefaultBootMode.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDefaultBootMode.md index 133bf11500..88dee5e359 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDefaultBootMode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getDefaultBootMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getDefaultBootMode-example) {#getDefaultBootMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getDefaultBootMode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getEncryptionAttributes.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getEncryptionAttributes.md index a8e76302ce..20439bc0fd 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getEncryptionAttributes.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getEncryptionAttributes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getEncryptionAttributes-example) {#getEncryptionAttributes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getEncryptionAttributes' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFirstChild.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFirstChild.md index 4943d4c2c5..9f8ed19cc7 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFirstChild.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFirstChild.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getFirstChild-example) {#getFirstChild-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getFirstChild' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFlexImageFlag.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFlexImageFlag.md index ae0042573c..66372027e4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFlexImageFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getFlexImageFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getFlexImageFlag-example) {#getFlexImageFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getFlexImageFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getGlobalIdentifier.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getGlobalIdentifier.md index b51abc9127..c9f8117056 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getGlobalIdentifier.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getGlobalIdentifier.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getGlobalIdentifier-example) {#getGlobalIdentifier-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getGlobalIdentifier' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageType.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageType.md index 95069c3317..80687f07ee 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageType.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getImageType-example) {#getImageType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getImageType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageTypeKeyName.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageTypeKeyName.md index a5a09597df..51d114abcd 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageTypeKeyName.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getImageTypeKeyName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getImageTypeKeyName-example) {#getImageTypeKeyName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getImageTypeKeyName' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getNextGenFlag.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getNextGenFlag.md index adfbe5d210..90d7270e6b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getNextGenFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getNextGenFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getNextGenFlag-example) {#getNextGenFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getNextGenFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getObject.md index 06192d146d..56136fd43c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getParent.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getParent.md index f931871449..2b9e292d7c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getParent.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getParent.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getParent-example) {#getParent-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getParent' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicCustomerOwnedImages.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicCustomerOwnedImages.md index 2d7cefedd9..c605e3eb26 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicCustomerOwnedImages.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicCustomerOwnedImages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getPublicCustomerOwnedImages-example) {#getPublicCustomerOwnedImages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicCustomerOwnedImages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicImages.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicImages.md index d8ce9cea2c..6285da6f32 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicImages.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicImages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getPublicImages-example) {#getPublicImages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicImages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegion.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegion.md index 44380affc1..21e778ff46 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegion.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegion.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getRegion-example) {#getRegion-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getRegion' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegions.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegions.md index a4ae78e35e..1845b4e273 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRegions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getRegions-example) {#getRegions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getRegions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRiasAccount.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRiasAccount.md index fe1eb27532..0b1cc1997c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRiasAccount.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRiasAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getRiasAccount-example) {#getRiasAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getRiasAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSshKeys.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSshKeys.md index 2466521f4c..57bc887ffd 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSshKeys.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSshKeys.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getSshKeys-example) {#getSshKeys-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getSshKeys' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStatus.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStatus.md index 3b5743dc7b..850310930f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStatus.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStatus.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getStatus-example) {#getStatus-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getStatus' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageLocations.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageLocations.md index a1b5d4f9cb..979606b004 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageLocations.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getStorageLocations-example) {#getStorageLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getStorageLocations' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageRepository.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageRepository.md index 37163b73ad..c91b5c0fd1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageRepository.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getStorageRepository.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getStorageRepository-example) {#getStorageRepository-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getStorageRepository' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSupportedBootModes.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSupportedBootModes.md index c01a846636..30c6f0de82 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSupportedBootModes.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getSupportedBootModes.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getSupportedBootModes-example) {#getSupportedBootModes-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getSupportedBootModes' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTagReferences.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTagReferences.md index 83d38798a4..27f9fe0e6d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTagReferences.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTagReferences.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getTagReferences-example) {#getTagReferences-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getTagReferences' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTemplateDataCenterName.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTemplateDataCenterName.md index 2d12ddfb65..5b1d6e9151 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTemplateDataCenterName.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTemplateDataCenterName.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getTemplateDataCenterName-example) {#getTemplateDataCenterName-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getTemplateDataCenterName' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTransaction.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTransaction.md index 038e96cede..83f608d7c2 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTransaction.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getTransaction.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getTransaction-example) {#getTransaction-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/getTransaction' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getVhdImportSoftwareDescriptions.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getVhdImportSoftwareDescriptions.md index 6e370236aa..9a5a4bfa99 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getVhdImportSoftwareDescriptions.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getVhdImportSoftwareDescriptions.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#getVhdImportSoftwareDescriptions-example) {#getVhdImportSoftwareDescriptions-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/getVhdImportSoftwareDescriptions' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByol.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByol.md index a405e8b2ac..b0b633b209 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByol.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByol.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#isByol-example) {#isByol-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/isByol' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolCapableOperatingSystem.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolCapableOperatingSystem.md index 5e73ff9679..1016d3868f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolCapableOperatingSystem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolCapableOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#isByolCapableOperatingSystem-example) {#isByolCapableOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/isByolCapableOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolOnlyOperatingSystem.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolOnlyOperatingSystem.md index 0da08984fb..6f76d24845 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolOnlyOperatingSystem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isByolOnlyOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#isByolOnlyOperatingSystem-example) {#isByolOnlyOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/isByolOnlyOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInit.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInit.md index 22f432f3c2..885c9cf60e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInit.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInit.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#isCloudInit-example) {#isCloudInit-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/isCloudInit' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInitOnlyOperatingSystem.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInitOnlyOperatingSystem.md index 99722d074c..3bb0ec4c9e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInitOnlyOperatingSystem.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isCloudInitOnlyOperatingSystem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#isCloudInitOnlyOperatingSystem-example) {#isCloudInitOnlyOperatingSystem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/isCloudInitOnlyOperatingSystem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isEncrypted.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isEncrypted.md index a51c47fe39..1008f16674 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isEncrypted.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/isEncrypted.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#isEncrypted-example) {#isEncrypted-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/isEncrypted' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/permitSharingAccess.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/permitSharingAccess.md index ffd98c0cf8..247c802270 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/permitSharingAccess.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/permitSharingAccess.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#permitSharingAccess-example) {#permitSharingAccess-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/permitSharingAccess' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeCompatiblePlatforms.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeCompatiblePlatforms.md index 7907044df5..fd01e503a9 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeCompatiblePlatforms.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeCompatiblePlatforms.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#removeCompatiblePlatforms-example) {#removeCompatiblePlatforms-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/removeCompatiblePlatforms' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeLocations.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeLocations.md index 1a11270f11..70e2b5fa6d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeLocations.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#removeLocations-example) {#removeLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/removeLocations' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeSupportedBootMode.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeSupportedBootMode.md index 714befe679..3d50b723d9 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeSupportedBootMode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/removeSupportedBootMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#removeSupportedBootMode-example) {#removeSupportedBootMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/removeSupportedBootMode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setAvailableLocations.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setAvailableLocations.md index 190fddfebe..8fa2cb361d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setAvailableLocations.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setAvailableLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#setAvailableLocations-example) {#setAvailableLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Location]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/setAvailableLocations' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setBootMode.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setBootMode.md index 82db1bdcf3..9b4d2376ba 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setBootMode.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setBootMode.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#setBootMode-example) {#setBootMode-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/setBootMode' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setCompatiblePlatforms.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setCompatiblePlatforms.md index b1979628ed..9e0925f8b0 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setCompatiblePlatforms.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setCompatiblePlatforms.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#setCompatiblePlatforms-example) {#setCompatiblePlatforms-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/setCompatiblePlatforms' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setTags.md b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setTags.md index d3216e32ba..e4a3775b91 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setTags.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Block_Device_Template_Group/setTags.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Block_Device_Template_Group" --- -### Curl Example +# [REST Example](#setTags-example) {#setTags-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [string]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Block_Device_Template_Group/{SoftLayer_Virtual_Guest_Block_Device_Template_GroupID}/setTags' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/createObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/createObject.md index eab582cbd6..7a8f360119 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/createObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Boot_Parameter]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Boot_Parameter]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter/createObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/deleteObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/deleteObject.md index 3f7e23cb7d..eac5760cce 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/deleteObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter/{SoftLayer_Virtual_Guest_Boot_ParameterID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/editObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/editObject.md index 59167eac25..e914d4db65 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Boot_Parameter]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_Guest_Boot_Parameter]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter/{SoftLayer_Virtual_Guest_Boot_ParameterID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuest.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuest.md index 44733eb89d..a6533cdd35 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuest.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter" --- -### Curl Example +# [REST Example](#getGuest-example) {#getGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter/{SoftLayer_Virtual_Guest_Boot_ParameterID}/getGuest' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuestBootParameterType.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuestBootParameterType.md index 4353f2b7a0..196c3b57e5 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuestBootParameterType.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getGuestBootParameterType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter" --- -### Curl Example +# [REST Example](#getGuestBootParameterType-example) {#getGuestBootParameterType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter/{SoftLayer_Virtual_Guest_Boot_ParameterID}/getGuestBootParameterType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getObject.md index 980fecc6e9..6253d43fa8 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter/{SoftLayer_Virtual_Guest_Boot_ParameterID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getAllObjects.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getAllObjects.md index 880462aa7b..0a8e84fafa 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getAllObjects.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter_Type" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getObject.md index 17ace6b19f..5cba3024aa 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Boot_Parameter_Type/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Boot_Parameter_Type" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Boot_Parameter_Type/{SoftLayer_Virtual_Guest_Boot_Parameter_TypeID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/disable.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/disable.md index 4288d1e995..ac8881fe3e 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/disable.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/disable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#disable-example) {#disable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/disable' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/enable.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/enable.md index 88766a1b9a..0ad94f0ac4 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/enable.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/enable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#enable-example) {#enable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/enable' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getGuest.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getGuest.md index 112bc0a1e6..48dc5a50e1 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getGuest.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getGuest-example) {#getGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getGuest' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getHighAvailabilityFirewallFlag.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getHighAvailabilityFirewallFlag.md index 14f5f998b5..44c6cf2cdb 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getHighAvailabilityFirewallFlag.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getHighAvailabilityFirewallFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getHighAvailabilityFirewallFlag-example) {#getHighAvailabilityFirewallFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getHighAvailabilityFirewallFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIcpBinding.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIcpBinding.md index 120028ce03..a14f34a4ed 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIcpBinding.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIcpBinding.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getIcpBinding-example) {#getIcpBinding-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getIcpBinding' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIpAddressBindings.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIpAddressBindings.md index 31ebc4f3dd..939625890b 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIpAddressBindings.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getIpAddressBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getIpAddressBindings-example) {#getIpAddressBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getIpAddressBindings' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkComponentFirewall.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkComponentFirewall.md index 95606a0b11..46ce3bbbee 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkComponentFirewall.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkComponentFirewall.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkComponentFirewall-example) {#getNetworkComponentFirewall-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getNetworkComponentFirewall' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkVlan.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkVlan.md index 2ee25b8097..7e5e6d69ba 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkVlan.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getNetworkVlan.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getNetworkVlan-example) {#getNetworkVlan-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getNetworkVlan' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getObject.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getObject.md index 26d37420d8..19c21e8e91 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddress.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddress.md index 9e220ae102..ec3e9d4ebe 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddress.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddress.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getPrimaryIpAddress-example) {#getPrimaryIpAddress-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getPrimaryIpAddress' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddressRecord.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddressRecord.md index e3b1ca1a30..97954b084f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddressRecord.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryIpAddressRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getPrimaryIpAddressRecord-example) {#getPrimaryIpAddressRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getPrimaryIpAddressRecord' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimarySubnet.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimarySubnet.md index 42a641a308..846e7f35cc 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimarySubnet.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimarySubnet.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getPrimarySubnet-example) {#getPrimarySubnet-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getPrimarySubnet' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryVersion6IpAddressRecord.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryVersion6IpAddressRecord.md index e4d2186832..742947607d 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryVersion6IpAddressRecord.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getPrimaryVersion6IpAddressRecord.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getPrimaryVersion6IpAddressRecord-example) {#getPrimaryVersion6IpAddressRecord-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getPrimaryVersion6IpAddressRecord' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getRouter.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getRouter.md index 29ff80537f..af10485f6c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getRouter.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getRouter-example) {#getRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getRouter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSecurityGroupBindings.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSecurityGroupBindings.md index e9c2fc2946..0aae97ac76 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSecurityGroupBindings.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSecurityGroupBindings.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getSecurityGroupBindings-example) {#getSecurityGroupBindings-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getSecurityGroupBindings' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSubnets.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSubnets.md index c865f275cc..2df27c078f 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSubnets.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/getSubnets.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#getSubnets-example) {#getSubnets-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/getSubnets' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/isPingable.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/isPingable.md index f8ba5df15f..0a0d8dc55c 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/isPingable.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/isPingable.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#isPingable-example) {#isPingable-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/isPingable' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/securityGroupsReady.md b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/securityGroupsReady.md index b807dd76d4..e48d1b7418 100644 --- a/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/securityGroupsReady.md +++ b/content/reference/services/SoftLayer_Virtual_Guest_Network_Component/securityGroupsReady.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Guest_Network_Component" --- -### Curl Example +# [REST Example](#securityGroupsReady-example) {#securityGroupsReady-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Guest_Network_Component/{SoftLayer_Virtual_Guest_Network_ComponentID}/securityGroupsReady' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Host/getAccount.md b/content/reference/services/SoftLayer_Virtual_Host/getAccount.md index af70e4d7f4..44e84c5325 100644 --- a/content/reference/services/SoftLayer_Virtual_Host/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_Host/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Host" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Host/{SoftLayer_Virtual_HostID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Host/getHardware.md b/content/reference/services/SoftLayer_Virtual_Host/getHardware.md index 16174a6386..7e740c8995 100644 --- a/content/reference/services/SoftLayer_Virtual_Host/getHardware.md +++ b/content/reference/services/SoftLayer_Virtual_Host/getHardware.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Host" --- -### Curl Example +# [REST Example](#getHardware-example) {#getHardware-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Host/{SoftLayer_Virtual_HostID}/getHardware' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Host/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Virtual_Host/getMetricTrackingObject.md index ba842cf8f2..b0275dcebe 100644 --- a/content/reference/services/SoftLayer_Virtual_Host/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Virtual_Host/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Host" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Host/{SoftLayer_Virtual_HostID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Host/getObject.md b/content/reference/services/SoftLayer_Virtual_Host/getObject.md index 6ee5364891..e6dd190ab8 100644 --- a/content/reference/services/SoftLayer_Virtual_Host/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Host/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Host" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Host/{SoftLayer_Virtual_HostID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Host/getPciDevices.md b/content/reference/services/SoftLayer_Virtual_Host/getPciDevices.md index 80452d3ef1..289ffc3920 100644 --- a/content/reference/services/SoftLayer_Virtual_Host/getPciDevices.md +++ b/content/reference/services/SoftLayer_Virtual_Host/getPciDevices.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Host" --- -### Curl Example +# [REST Example](#getPciDevices-example) {#getPciDevices-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Host/{SoftLayer_Virtual_HostID}/getPciDevices' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/createObject.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/createObject.md index 8bfa285a7d..515693758f 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/createObject.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/createObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#createObject-example) {#createObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_PlacementGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_PlacementGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/createObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/deleteObject.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/deleteObject.md index 163431c4cc..64844a05a7 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/deleteObject.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/deleteObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#deleteObject-example) {#deleteObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/deleteObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/editObject.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/editObject.md index 5a7d9dd8ef..0872173be5 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_PlacementGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_PlacementGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAccount.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAccount.md index 44070062c4..3809da3d69 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAvailableRouters.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAvailableRouters.md index 66b134f872..d85ec10943 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAvailableRouters.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getAvailableRouters.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#getAvailableRouters-example) {#getAvailableRouters-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [int]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/getAvailableRouters' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getBackendRouter.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getBackendRouter.md index fa4dfd6321..c63f6c6e4f 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getBackendRouter.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getBackendRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#getBackendRouter-example) {#getBackendRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/getBackendRouter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getGuests.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getGuests.md index eab9492027..12ffb4c42d 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getGuests.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#getGuests-example) {#getGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/getGuests' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getObject.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getObject.md index 5e80e06e3f..3eb7fcf9bb 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getRule.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getRule.md index e733dacb80..9e78438d73 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup/getRule.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup/getRule.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup" --- -### Curl Example +# [REST Example](#getRule-example) {#getRule-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup/{SoftLayer_Virtual_PlacementGroupID}/getRule' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getAllObjects.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getAllObjects.md index 8e13f17eb9..a6c1593da8 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getAllObjects.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getAllObjects.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup_Rule" --- -### Curl Example +# [REST Example](#getAllObjects-example) {#getAllObjects-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup_Rule/getAllObjects' ``` diff --git a/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getObject.md b/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getObject.md index 0e6c8c207a..9e0f44aecd 100644 --- a/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_PlacementGroup_Rule/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_PlacementGroup_Rule" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_PlacementGroup_Rule/{SoftLayer_Virtual_PlacementGroup_RuleID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/editObject.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/editObject.md index debea748c7..b10e52a436 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/editObject.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/editObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#editObject-example) {#editObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_ReservedCapacityGroup]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [SoftLayer_Virtual_ReservedCapacityGroup]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/editObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAccount.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAccount.md index 3342c94dc7..fb9559a18e 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAvailableInstances.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAvailableInstances.md index 661e0a8e1c..2379428ea8 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAvailableInstances.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getAvailableInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getAvailableInstances-example) {#getAvailableInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getAvailableInstances' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getBackendRouter.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getBackendRouter.md index ee85c7e074..0ecb854426 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getBackendRouter.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getBackendRouter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getBackendRouter-example) {#getBackendRouter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getBackendRouter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstances.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstances.md index 29773d7e12..45e17d2247 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstances.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getInstances-example) {#getInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getInstances' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstancesCount.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstancesCount.md index 9b0d9e70d2..8693a34f00 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstancesCount.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getInstancesCount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getInstancesCount-example) {#getInstancesCount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getInstancesCount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getObject.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getObject.md index 3bbf1b1025..cb3339806e 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getOccupiedInstances.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getOccupiedInstances.md index b6dcb3a205..2638d1f338 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getOccupiedInstances.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup/getOccupiedInstances.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup" --- -### Curl Example +# [REST Example](#getOccupiedInstances-example) {#getOccupiedInstances-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup/{SoftLayer_Virtual_ReservedCapacityGroupID}/getOccupiedInstances' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getAvailableFlag.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getAvailableFlag.md index 154b06f17b..ca07a2da60 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getAvailableFlag.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getAvailableFlag.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup_Instance" --- -### Curl Example +# [REST Example](#getAvailableFlag-example) {#getAvailableFlag-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup_Instance/{SoftLayer_Virtual_ReservedCapacityGroup_InstanceID}/getAvailableFlag' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getBillingItem.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getBillingItem.md index e06d8bbbe1..029ff05eab 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getBillingItem.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup_Instance" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup_Instance/{SoftLayer_Virtual_ReservedCapacityGroup_InstanceID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getGuest.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getGuest.md index 38e3281bdf..546a389ffb 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getGuest.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getGuest.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup_Instance" --- -### Curl Example +# [REST Example](#getGuest-example) {#getGuest-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup_Instance/{SoftLayer_Virtual_ReservedCapacityGroup_InstanceID}/getGuest' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getObject.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getObject.md index d6f56afd98..9e9d4cacb7 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup_Instance" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup_Instance/{SoftLayer_Virtual_ReservedCapacityGroup_InstanceID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getReservedCapacityGroup.md b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getReservedCapacityGroup.md index 52277ad77c..ef444d0f53 100644 --- a/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getReservedCapacityGroup.md +++ b/content/reference/services/SoftLayer_Virtual_ReservedCapacityGroup_Instance/getReservedCapacityGroup.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_ReservedCapacityGroup_Instance" --- -### Curl Example +# [REST Example](#getReservedCapacityGroup-example) {#getReservedCapacityGroup-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_ReservedCapacityGroup_Instance/{SoftLayer_Virtual_ReservedCapacityGroup_InstanceID}/getReservedCapacityGroup' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAccount.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAccount.md index 40772dd08a..e3f96009a8 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAccount.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAccount.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getAccount-example) {#getAccount-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getAccount' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getArchiveDiskUsageRatePerGb.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getArchiveDiskUsageRatePerGb.md index 6ece0c4ad9..d27d9b7a62 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getArchiveDiskUsageRatePerGb.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getArchiveDiskUsageRatePerGb.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getArchiveDiskUsageRatePerGb-example) {#getArchiveDiskUsageRatePerGb-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getArchiveDiskUsageRatePerGb' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageDiskUsageMetricDataFromInfluxByDate.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageDiskUsageMetricDataFromInfluxByDate.md index bddbacf171..b997ac0bff 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageDiskUsageMetricDataFromInfluxByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageDiskUsageMetricDataFromInfluxByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getAverageDiskUsageMetricDataFromInfluxByDate-example) {#getAverageDiskUsageMetricDataFromInfluxByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getAverageDiskUsageMetricDataFromInfluxByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageUsageMetricDataByDate.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageUsageMetricDataByDate.md index 0d1cd6f21a..6966f244ab 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageUsageMetricDataByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getAverageUsageMetricDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getAverageUsageMetricDataByDate-example) {#getAverageUsageMetricDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getAverageUsageMetricDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getBillingItem.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getBillingItem.md index 04a91b210b..bb59c215ee 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getBillingItem.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getBillingItem-example) {#getBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDatacenter.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDatacenter.md index 65546a603f..0eab5ae7b1 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDatacenter.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDatacenter.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getDatacenter-example) {#getDatacenter-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getDatacenter' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDiskImages.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDiskImages.md index 8de90443ff..ef7f97a0cc 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDiskImages.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getDiskImages.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getDiskImages-example) {#getDiskImages-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getDiskImages' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getGuests.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getGuests.md index afb39dc03c..ad7c7160f4 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getGuests.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getGuests.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getGuests-example) {#getGuests-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getGuests' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getMetricTrackingObject.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getMetricTrackingObject.md index 944606db54..36b8348810 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getMetricTrackingObject.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getMetricTrackingObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getMetricTrackingObject-example) {#getMetricTrackingObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getMetricTrackingObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getObject.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getObject.md index 48735fd429..50ba6f5352 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getObject.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getObject.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getObject-example) {#getObject-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getObject' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageBillingItem.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageBillingItem.md index 39ebd1dbd8..d1fd01e5d2 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageBillingItem.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageBillingItem.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getPublicImageBillingItem-example) {#getPublicImageBillingItem-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getPublicImageBillingItem' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageDiskUsageRatePerGb.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageDiskUsageRatePerGb.md index 3bcd2e4534..ebebdec197 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageDiskUsageRatePerGb.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getPublicImageDiskUsageRatePerGb.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getPublicImageDiskUsageRatePerGb-example) {#getPublicImageDiskUsageRatePerGb-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getPublicImageDiskUsageRatePerGb' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getStorageLocations.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getStorageLocations.md index 3ad986bc13..e441dce225 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getStorageLocations.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getStorageLocations.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getStorageLocations-example) {#getStorageLocations-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getStorageLocations' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getType.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getType.md index 8ca3ad8c38..5744c8625f 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getType.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getType.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getType-example) {#getType-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X GET \ +curl -g -u $SL_USER:$SL_APIKEY -X GET \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getType' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricDataByDate.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricDataByDate.md index c7a1969ef4..c493648375 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricDataByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricDataByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getUsageMetricDataByDate-example) {#getUsageMetricDataByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getUsageMetricDataByDate' ``` diff --git a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricImageByDate.md b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricImageByDate.md index 0bcee14e89..516e1a30cd 100644 --- a/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricImageByDate.md +++ b/content/reference/services/SoftLayer_Virtual_Storage_Repository/getUsageMetricImageByDate.md @@ -13,8 +13,8 @@ layout: "method" mainService : "SoftLayer_Virtual_Storage_Repository" --- -### Curl Example +# [REST Example](#getUsageMetricImageByDate-example) {#getUsageMetricImageByDate-example .anchor-link} ```bash -curl -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ +curl -g -u $SL_USER:$SL_APIKEY -X POST -d '{"parameters": [dateTime, dateTime]}' \ 'https://api.softlayer.com/rest/v3.1/SoftLayer_Virtual_Storage_Repository/{SoftLayer_Virtual_Storage_RepositoryID}/getUsageMetricImageByDate' ``` diff --git a/data/sldn_metadata.json b/data/sldn_metadata.json index c2574cd495..1809eccaad 100644 --- a/data/sldn_metadata.json +++ b/data/sldn_metadata.json @@ -4834,18 +4834,6 @@ "deprecated": false, "limitable": true }, - "getTranscodeAccounts": { - "doc": "An account's associated Transcode account.", - "docOverview": "", - "name": "getTranscodeAccounts", - "type": "SoftLayer_Network_Media_Transcode_Account", - "typeArray": true, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": true, - "limitable": true - }, "getUpgradeRequests": { "doc": "An account's associated upgrade requests.", "docOverview": "", @@ -6677,14 +6665,6 @@ "typeArray": true, "doc": "Tickets closed today associated with an account." }, - "transcodeAccounts": { - "name": "transcodeAccounts", - "type": "SoftLayer_Network_Media_Transcode_Account", - "form": "relational", - "typeArray": true, - "doc": "An account's associated Transcode account.", - "deprecated": true - }, "upgradeRequests": { "name": "upgradeRequests", "type": "SoftLayer_Product_Upgrade_Request", @@ -7976,12 +7956,6 @@ "form": "count", "doc": "A count of tickets closed today associated with an account." }, - "transcodeAccountCount": { - "name": "transcodeAccountCount", - "type": "unsignedLong", - "form": "count", - "doc": "A count of an account's associated Transcode account." - }, "upgradeRequestCount": { "name": "upgradeRequestCount", "type": "unsignedLong", @@ -134552,517 +134526,6 @@ }, "methods": {} }, - "SoftLayer_Network_Media_Transcode_Account": { - "name": "SoftLayer_Network_Media_Transcode_Account", - "base": "SoftLayer_Entity", - "serviceDoc": "Transcoding is a service which allows you to transcode media files to different formats. For example, if you have a Windows Media Video file you wish to stream in Flash Video format, transcoding would be the process to make this change. Individual SoftLayer customer can have a single Transcode account and you need to create a Transcode account to use the service. To create a Transcode account, go to the \"Private Network\" -> \"Transcoding\" page in the SoftLayer [https://manage.softlayer.com customer portal] or invoke [SoftLayer_Network_Media_Transcode_Account::createTranscodeAccount](/reference/datatypes/$1/#$2) method. \n\nSoftLayer Transcoding service supports a large number of video and audio codecs. This means you can transcode many different types of movies. Refer to [http://knowledgelayer.softlayer.com/questions/409/SoftLayer+Transcoding+FAQ Transcode FAQ] for supported codes and media containers. Transcode server also has hundreds of pre-defined output formats that you can choose from. \n\nA Transcode account object allows you to communicate with the Transcode FTP (transcode.service.softlayer.com server) server and Transcode server. You can retrieve a directory listing, details on a media file, Transcode output presets, and Transcode FTP login credentials. Most importantly, you can create transcode jobs through your Transcode account. \n\nWhen a Transcode account is created, it creates an FTP account on the Transcode FTP. You can upload your media files to the /in directory and you can download transcoded media files from the /out directory. You can keep the files 3 days from the creation date. They will be automatically deleted after this point. For more details on the Transcode FTP server, refer to [SoftLayer_Network_Media_Transcode_Account::getFtpAttributes](/reference/datatypes/$1/#$2) method. ", - "methods": { - "createTranscodeAccount": { - "name": "createTranscodeAccount", - "type": "boolean", - "doc": "With this method, you can create a transcode account. Individual SoftLayer account can have a single Transcode account. You have to pass your SoftLayer account id as a parameter. ", - "docOverview": "Creates a new transcode account", - "docErrorHandling": [ - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if a SoftLayer account is inactive or disabled." - }, - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if a user already has a Transcode account." - } - ], - "static": true - }, - "createTranscodeJob": { - "name": "createTranscodeJob", - "type": "boolean", - "doc": "'''Note'''. This method is obsolete. Please use the [SoftLayer_Network_Media_Transcode_Job::createObject](/reference/datatypes/$1/#$2) method on SoftLayer_Network_Media_Transcode_Job object instead. SoftLayer_Network_Media_Transcode_Job::createObject returns an object of a newly created Transcode Job. \n\nWith this method, you can create a transcode job. \n\nThe very first step of creating a transcode job is to upload your media files to the /in directory on your Transcode FTP space. Then, you have to pass a [SoftLayer_Network_Media_Transcode_Job](/reference/datatypes/SoftLayer_Network_Media_Transcode_Job) object as a parameter for this method. \n\nThere are 4 required properties of SoftLayer_Network_Media_Transcode_Job object: transcodePresetName, transcodePresetGuid, inputFile, and outputFile. A transcode preset is a configuration that defines a certain media output. You can retrieve all the supported presets with the [SoftLayer_Network_Media_Transcode_Account::getPresets](/reference/datatypes/$1/#$2) method. You can also use [SoftLayer_Network_Media_Transcode_Account::getPresetDetail](/reference/datatypes/$1/#$2) method to get more information on a preset. Use these two methods to determine appropriate values for \"transcodePresetName\" and \"transcodePresetGuid\" properties. For an \"inputFile\", you must specify a file that exists in the /in directory of your Transcode FTP space. An \"outputFile\" name will be used by the Transcode server for naming a transcoded file. An output file name must be in /out directory. If your outputFile name already exists in the /out directory, the Transcode server will append a file name with _n (an underscore and the total number of files with the identical name plus 1). \n\nThe \"name\" property is optional and it can help you keep track of transcode jobs easily. \"autoDeleteDuration\" is another optional property that you can specify. It determines how soon your input file will be deleted. If autoDeleteDuration is set to zero, your input file will be removed immediately after the last transcode job running on it is completed. A value for autoDeleteDuration property is in seconds and the maximum value is 259200 which is 3 days. \n\nAn example SoftLayer_Network_Media_Transcode_Job parameter looks like this: \n\n\n* name: My transcoding\n* transcodePresetName: F4V 896kbps 640x352 16x9 29.97fps\n* transcodePresetGuid: {87E01268-C3E3-4A85-9701-052C9AC42BD4}\n* inputFile: /in/my_birthday.wmv\n* outputFile: /out/my_birthday_flash\n\n\nNotice that an output file does not have a file extension. The Transcode server will append a file extension based on an output format. A newly created transcode job will be in \"Pending\" status and it will be added to the Transcoding queue. You will receive a notification email whenever there is a status change on your transcode job. For example, the Transcode server starts to process your transcode job, you will be notified via an email. \n\nYou can add up to 3 pending jobs at a time. Transcode jobs with any other status such as \"Complete\" or \"Error\" will not be counted toward your pending jobs. \n\nOnce a job is complete, the Transcode server will place the output file into the /out directory along with a notification email. The files in the /out directory will be removed 3 days after they were created. You will need to use an FTP client to download transcoded files. \n\n", - "docOverview": "Creates a transcode job", - "docErrorHandling": [ - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if an invalid parameter is passed." - } - ], - "parameters": [ - { - "name": "newJob", - "type": "SoftLayer_Network_Media_Transcode_Job", - "doc": "A template object with details of a new job" - } - ] - }, - "getDirectoryInformation": { - "name": "getDirectoryInformation", - "type": "SoftLayer_Container_Network_Directory_Listing", - "typeArray": true, - "doc": "This method returns a collection of SoftLayer_Container_Network_Ftp_Directory objects. You can retrieve directory information for /in and /out directories. A [SoftLayer_Container_Network_Directory_Listing](/reference/datatypes/SoftLayer_Container_Network_Directory_Listing) object contains a type (indicating whether it is a file or a directory), name and file count if it is a directory. ", - "docOverview": "Returns a directory listing", - "docErrorHandling": [ - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if connection to the Transcode FTP server fails" - }, - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if it fails to login to the Transcode FTP server fails" - }, - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if a directory doesn't exist on the Transcode FTP server" - } - ], - "parameters": [ - { - "name": "directoryName", - "type": "string", - "doc": "comma separated Extensions to restrict results to", - "defaultValue": "/" - }, - { - "name": "extensionFilter", - "type": "string", - "doc": "A directory name", - "defaultValue": null - } - ] - }, - "getFileDetail": { - "name": "getFileDetail", - "type": "SoftLayer_Container_Network_Media_Information", - "doc": "This method returns detailed information of a media file that resides in the Transcode FTP server. A [SoftLayer_Container_Network_Media_Information](/reference/datatypes/SoftLayer_Container_Network_Media_Information) object contains media details such as file size, media format, frame rate, aspect ratio and so on. This information is merely for reference purposes. You should not rely on this data. Our library grabs small pieces of data from a media file to gather media details. This information may not be available for some files. ", - "docOverview": "Returns detailed information on a video or audio file", - "docErrorHandling": [ - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if connection to the Transcode FTP server fails" - }, - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if it fails to login to the Transcode FTP server fails" - }, - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw the exception if a source file doesn't exist on the Transcode FTP server" - } - ], - "parameters": [ - { - "name": "source", - "type": "string", - "doc": "The name of a source file" - } - ] - }, - "getFtpAttributes": { - "name": "getFtpAttributes", - "type": "SoftLayer_Container_Network_Authentication_Data", - "doc": "This method returns your Transcode FTP login credentials to the transcode.service.softlayer.com server. \n\nThe Transcode FTP server is available via the SoftLayer private network. There is no API method that you can upload a file to Transcode server so you need to use an FTP client. You will have /in and /out directories on the Transcode FTP server. You will have read-write privileges for /in directory and read-only privilege for /out directory. All the files in both /in and /out directories will be deleted after 72 hours from the creation date. ", - "docOverview": "Returns Transcode FTP login credentials" - }, - "getObject": { - "name": "getObject", - "type": "SoftLayer_Network_Media_Transcode_Account", - "doc": "getObject method retrieves the SoftLayer_Network_Media_Transcode_Account object whose ID number corresponds to the ID number of the initial parameter passed to the SoftLayer_Network_Media_Transcode_Account service. You can only retrieve a Transcode account assigned to your SoftLayer customer account. ", - "docOverview": "Retrieve a SoftLayer_Network_Media_Transcode_Account record.", - "filterable": true, - "maskable": true - }, - "getPresetDetail": { - "name": "getPresetDetail", - "type": "SoftLayer_Container_Network_Media_Transcode_Preset_Element", - "typeArray": true, - "doc": "This method returns an array of [SoftLayer_Container_Network_Media_Transcode_Preset_Element](/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element) objects. Each preset has its own collection of preset elements such as encoder, frame rate, aspect ratio and so on. Each element object has a default value for itself and an array of [SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option](/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option) objects. For example, \"Frame Rate\" element for \"Windows Media 9 - Download - 1 Mbps - NTSC - Constrained VBR\" preset has 19 element options. 15.0 frame rate is selected by default. Currently, you are not able to change the default value. Customizing these values may be possible in the future. ", - "docOverview": "Returns details on a transcode output preset", - "docErrorHandling": [ - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw an exception if connection to a Transcode server fails." - } - ], - "parameters": [ - { - "name": "guid", - "type": "string", - "doc": "The unique id of a preset" - } - ] - }, - "getPresets": { - "name": "getPresets", - "type": "SoftLayer_Container_Network_Media_Transcode_Preset", - "typeArray": true, - "doc": "A transcode preset is a configuration that defines a certain media output. This method returns an array of transcoding preset objects supported by SoftLayer's Transcode server. Each [SoftLayer_Container_Network_Media_Transcode_Preset](/reference/datatypes/SoftLayer_Container_Network_Media_Transcode_Preset) contains a GUID property. You will need a GUID string when you create a new transcode job. ", - "docOverview": "Returns an array of transcoding preset objects", - "docErrorHandling": [ - { - "exception": "SoftLayer_Exception_Public", - "description": "Throw an exception if connection to a Transcode server fails." - } - ] - }, - "getAccount": { - "doc": "The SoftLayer account information", - "docOverview": "", - "name": "getAccount", - "type": "SoftLayer_Account", - "typeArray": null, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false - }, - "getTranscodeJobs": { - "doc": "Transcode jobs", - "docOverview": "", - "name": "getTranscodeJobs", - "type": "SoftLayer_Network_Media_Transcode_Job", - "typeArray": true, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false, - "limitable": true - } - }, - "typeDoc": "The SoftLayer_Network_Media_Transcode_Account contains information regarding a transcode account. ", - "properties": { - "account": { - "name": "account", - "type": "SoftLayer_Account", - "form": "relational", - "doc": "The SoftLayer account information" - }, - "transcodeJobs": { - "name": "transcodeJobs", - "type": "SoftLayer_Network_Media_Transcode_Job", - "form": "relational", - "typeArray": true, - "doc": "Transcode jobs" - }, - "accountId": { - "name": "accountId", - "type": "int", - "form": "local", - "doc": "The internal identifier of a SoftLayer account" - }, - "createDate": { - "name": "createDate", - "type": "dateTime", - "form": "local", - "doc": "The created date" - }, - "id": { - "name": "id", - "type": "int", - "form": "local", - "doc": "The internal identifier of a transcode account" - }, - "modifyDate": { - "name": "modifyDate", - "type": "dateTime", - "form": "local", - "doc": "The last modified date" - }, - "transcodeJobCount": { - "name": "transcodeJobCount", - "type": "unsignedLong", - "form": "count", - "doc": "A count of transcode jobs" - } - } - }, - "SoftLayer_Network_Media_Transcode_Job": { - "name": "SoftLayer_Network_Media_Transcode_Job", - "base": "SoftLayer_Entity", - "serviceDoc": "SoftLayer_Network_Media_Transcode_Job holds information on a transcode job. To create a transcode job, use a [SoftLayer_Network_Media_Transcode_Account](/reference/datatypes/SoftLayer_Network_Media_Transcode_Account) object. ", - "methods": { - "createObject": { - "name": "createObject", - "type": "SoftLayer_Network_Media_Transcode_Job", - "doc": "With this method, you can create a transcode job. \n\nThe very first step of creating a transcode job is to upload your media files to the /in directory on your Transcode FTP space. Then, you have to pass a [SoftLayer_Network_Media_Transcode_Job](/reference/datatypes/SoftLayer_Network_Media_Transcode_Job) object as a parameter for this method. \n\nThere are 4 required properties of SoftLayer_Network_Media_Transcode_Job object: transcodePresetName, transcodePresetGuid, inputFile, and outputFile. A transcode preset is a configuration that defines a certain media output. You can retrieve all the supported presets with the [SoftLayer_Network_Media_Transcode_Account::getPresets](/reference/datatypes/$1/#$2) method. You can also use [SoftLayer_Network_Media_Transcode_Account::getPresetDetail](/reference/datatypes/$1/#$2) method to get more information on a preset. Use these two methods to determine appropriate values for \"transcodePresetName\" and \"transcodePresetGuid\" properties. For an \"inputFile\", you must specify a file that exists in the /in directory of your Transcode FTP space. An \"outputFile\" name will be used by the Transcode server for naming a transcoded file. An output file name must be in /out directory. If your outputFile name already exists in the /out directory, the Transcode server will append a file name with _n (an underscore and the total number of files with the identical name plus 1). \n\nThe \"name\" property is optional and it can help you keep track of transcode jobs easily. \"autoDeleteDuration\" is another optional property that you can specify. It determines how soon your input file will be deleted. If autoDeleteDuration is set to zero, your input file will be removed immediately after the last transcode job running on it is completed. A value for autoDeleteDuration property is in seconds and the maximum value is 259200 which is 3 days. \n\nAn example SoftLayer_Network_Media_Transcode_Job parameter looks like this: \n\n\n* name: My transcoding\n* transcodePresetName: F4V 896kbps 640x352 16x9 29.97fps\n* transcodePresetGuid: {87E01268-C3E3-4A85-9701-052C9AC42BD4}\n* inputFile: /in/my_birthday.wmv\n* outputFile: /out/my_birthday_flash\n\n\nNotice that an output file does not have a file extension. The Transcode server will append a file extension based on an output format. A newly created transcode job will be in \"Pending\" status and it will be added to the Transcoding queue. You will receive a notification email whenever there is a status change on your transcode job. For example, the Transcode server starts to process your transcode job, you will be notified via an email. \n\nYou can add up to 3 pending jobs at a time. Transcode jobs with any other status such as \"Complete\" or \"Error\" will not be counted toward your pending jobs. \n\nOnce a job is complete, the Transcode server will place the output file into the /out directory along with a notification email. The files in the /out directory will be removed 3 days after they were created. You will need to use an FTP client to download transcoded files. \n\n", - "docOverview": "Creates a transcode job", - "static": true, - "maskable": true, - "parameters": [ - { - "name": "templateObject", - "type": "SoftLayer_Network_Media_Transcode_Job", - "doc": "The SoftLayer_Network_Media_Transcode_Job object that you wish to create." - } - ] - }, - "getObject": { - "name": "getObject", - "type": "SoftLayer_Network_Media_Transcode_Job", - "docOverview": "Retrieve a SoftLayer_Network_Media_Transcode_Job record.", - "filterable": true, - "maskable": true - }, - "getHistory": { - "doc": "", - "docOverview": "", - "name": "getHistory", - "type": "SoftLayer_Network_Media_Transcode_Job_History", - "typeArray": true, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false, - "limitable": true - }, - "getTranscodeAccount": { - "doc": "The transcode service account", - "docOverview": "", - "name": "getTranscodeAccount", - "type": "SoftLayer_Network_Media_Transcode_Account", - "typeArray": null, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false - }, - "getTranscodeStatus": { - "doc": "The status information of a transcode job", - "docOverview": "", - "name": "getTranscodeStatus", - "type": "SoftLayer_Network_Media_Transcode_Job_Status", - "typeArray": null, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false - }, - "getTranscodeStatusName": { - "doc": "The status of a transcode job", - "docOverview": "", - "name": "getTranscodeStatusName", - "type": "string", - "typeArray": null, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false - }, - "getUser": { - "doc": "The SoftLayer user that created the transcode job", - "docOverview": "", - "name": "getUser", - "type": "SoftLayer_User_Customer", - "typeArray": null, - "ormMethod": true, - "maskable": true, - "filterable": true, - "deprecated": false - } - }, - "typeDoc": "The SoftLayer_Network_Media_Transcode_Job contains information regarding a transcode job such as input file, output format, user id and so on. ", - "properties": { - "history": { - "name": "history", - "type": "SoftLayer_Network_Media_Transcode_Job_History", - "form": "relational", - "typeArray": true - }, - "transcodeAccount": { - "name": "transcodeAccount", - "type": "SoftLayer_Network_Media_Transcode_Account", - "form": "relational", - "doc": "The transcode service account" - }, - "transcodeStatus": { - "name": "transcodeStatus", - "type": "SoftLayer_Network_Media_Transcode_Job_Status", - "form": "relational", - "doc": "The status information of a transcode job" - }, - "transcodeStatusName": { - "name": "transcodeStatusName", - "type": "string", - "form": "relational", - "doc": "The status of a transcode job" - }, - "user": { - "name": "user", - "type": "SoftLayer_User_Customer", - "form": "relational", - "doc": "The SoftLayer user that created the transcode job" - }, - "autoDeleteDuration": { - "name": "autoDeleteDuration", - "type": "int", - "form": "local", - "doc": "The auto-deletion duration in seconds. This value determines how long the input file will be kept on the storage." - }, - "byteIn": { - "name": "byteIn", - "type": "int", - "form": "local", - "doc": "The size of an input file in byte" - }, - "createDate": { - "name": "createDate", - "type": "dateTime", - "form": "local", - "doc": "The created date" - }, - "id": { - "name": "id", - "type": "int", - "form": "local", - "doc": "The internal identifier of a transcode job" - }, - "inputFile": { - "name": "inputFile", - "type": "string", - "form": "local", - "doc": "The input file name" - }, - "modifyDate": { - "name": "modifyDate", - "type": "dateTime", - "form": "local", - "doc": "The last modified date" - }, - "name": { - "name": "name", - "type": "string", - "form": "local", - "doc": "The name of a transcode job" - }, - "outputFile": { - "name": "outputFile", - "type": "string", - "form": "local", - "doc": "The output file name" - }, - "transcodeAccountId": { - "name": "transcodeAccountId", - "type": "int", - "form": "local", - "doc": "The internal identifier of SoftLayer account" - }, - "transcodeJobGuid": { - "name": "transcodeJobGuid", - "type": "string", - "form": "local", - "doc": "The unique id of a transcode job" - }, - "transcodePresetGuid": { - "name": "transcodePresetGuid", - "type": "string", - "form": "local", - "doc": "The unique id of a pre-defined output format" - }, - "transcodePresetName": { - "name": "transcodePresetName", - "type": "string", - "form": "local", - "doc": "The name of a transcode output preset" - }, - "transcodeStatusId": { - "name": "transcodeStatusId", - "type": "int", - "form": "local", - "doc": "The internal identifier of a transcode status" - }, - "userId": { - "name": "userId", - "type": "int", - "form": "local", - "doc": "The internal identifier of the user who created a transcode job" - }, - "watermark": { - "name": "watermark", - "type": "SoftLayer_Container_Network_Media_Transcode_Job_Watermark", - "form": "local", - "doc": "Watermark to apply to job" - }, - "historyCount": { - "name": "historyCount", - "type": "unsignedLong", - "form": "count", - "doc": "A count of " - } - } - }, - "SoftLayer_Network_Media_Transcode_Job_History": { - "name": "SoftLayer_Network_Media_Transcode_Job_History", - "base": "SoftLayer_Entity", - "noservice": true, - "properties": { - "transcodeStatusName": { - "name": "transcodeStatusName", - "type": "string", - "form": "relational", - "doc": "The status of a transcode job" - }, - "createDate": { - "name": "createDate", - "type": "dateTime", - "form": "local", - "doc": "The creation date" - }, - "publicNotes": { - "name": "publicNotes", - "type": "string", - "form": "local", - "doc": "The note created by system" - }, - "transcodeJobId": { - "name": "transcodeJobId", - "type": "int", - "form": "local", - "doc": "The internal identifier of a transcode job" - } - }, - "methods": {} - }, - "SoftLayer_Network_Media_Transcode_Job_Status": { - "name": "SoftLayer_Network_Media_Transcode_Job_Status", - "base": "SoftLayer_Entity", - "serviceDoc": "A Transcode job's status. It can be Pending, Processing, Complete, Error or Deleted. ", - "methods": { - "getAllStatuses": { - "name": "getAllStatuses", - "type": "SoftLayer_Network_Media_Transcode_Job_Status", - "typeArray": true, - "doc": "This method returns all transcode job statuses. ", - "docOverview": "Returns all transcode job statuses", - "static": true, - "maskable": true - }, - "getObject": { - "name": "getObject", - "type": "SoftLayer_Network_Media_Transcode_Job_Status", - "docOverview": "Retrieve a SoftLayer_Network_Media_Transcode_Job_Status record.", - "filterable": true, - "maskable": true - } - }, - "typeDoc": "The SoftLayer_Network_Media_Transcode_Job_Status contains information on a transcode job status. ", - "properties": { - "description": { - "name": "description", - "type": "string", - "form": "local", - "doc": "The description of a transcode job status" - }, - "id": { - "name": "id", - "type": "int", - "form": "local", - "doc": "The internal identifier of a transcode job status" - }, - "name": { - "name": "name", - "type": "string", - "form": "local", - "doc": "The status name" - } - } - }, "SoftLayer_Network_Message_Delivery": { "name": "SoftLayer_Network_Message_Delivery", "base": "SoftLayer_Entity", @@ -233079,311 +232542,6 @@ }, "methods": {} }, - "SoftLayer_Container_Network_Media_Information": { - "name": "SoftLayer_Container_Network_Media_Information", - "base": "SoftLayer_Entity", - "noservice": true, - "typeDoc": "This container class holds information on a media file such as file name, codec, frame rate and so on ", - "properties": { - "audioBitRate": { - "name": "audioBitRate", - "type": "int", - "form": "local", - "doc": "The audio bit rate" - }, - "audioChannelMode": { - "name": "audioChannelMode", - "type": "string", - "form": "local", - "doc": "The audio channel mode" - }, - "audioChannels": { - "name": "audioChannels", - "type": "int", - "form": "local", - "doc": "The number of audio channels" - }, - "audioCodec": { - "name": "audioCodec", - "type": "string", - "form": "local", - "doc": "The audio codec name" - }, - "audioSampleRate": { - "name": "audioSampleRate", - "type": "int", - "form": "local", - "doc": "The audio sample rate" - }, - "duration": { - "name": "duration", - "type": "float", - "form": "local", - "doc": "The duration of a media" - }, - "errorMessage": { - "name": "errorMessage", - "type": "string", - "form": "local", - "doc": "The error message if any." - }, - "file": { - "name": "file", - "type": "string", - "form": "local", - "doc": "The name of a media file" - }, - "fileFormat": { - "name": "fileFormat", - "type": "string", - "form": "local", - "doc": "The file format" - }, - "fileSize": { - "name": "fileSize", - "type": "unsignedLong", - "form": "local", - "doc": "The size of a media file in byte" - }, - "frameRate": { - "name": "frameRate", - "type": "float", - "form": "local", - "doc": "The frame rate" - }, - "sizeX": { - "name": "sizeX", - "type": "int", - "form": "local", - "doc": "The width of a media in pixel" - }, - "sizeY": { - "name": "sizeY", - "type": "int", - "form": "local", - "doc": "The height of a media in pixel" - }, - "totalFrames": { - "name": "totalFrames", - "type": "unsignedLong", - "form": "local", - "doc": "The total of frames" - }, - "videoAspectX": { - "name": "videoAspectX", - "type": "float", - "form": "local", - "doc": "The width in a video's width to height aspect ratio" - }, - "videoAspectY": { - "name": "videoAspectY", - "type": "int", - "form": "local", - "doc": "The height in a video's width to height aspect ratio" - }, - "videoCodec": { - "name": "videoCodec", - "type": "string", - "form": "local", - "doc": "The video codec name" - } - }, - "methods": {} - }, - "SoftLayer_Container_Network_Media_Transcode_Job_Watermark": { - "name": "SoftLayer_Container_Network_Media_Transcode_Job_Watermark", - "base": "SoftLayer_Entity", - "noservice": true, - "properties": { - "endTime": { - "name": "endTime", - "type": "int", - "form": "local", - "doc": "Time to stop showing watermark in milliseconds" - }, - "fileName": { - "name": "fileName", - "type": "string", - "form": "local", - "doc": "Filename of image to use as watermark in transcoding job" - }, - "position": { - "name": "position", - "type": "SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position", - "form": "local", - "doc": "Position to place watermark at" - }, - "startTime": { - "name": "startTime", - "type": "int", - "form": "local", - "doc": "Time to start showing watermark in milliseconds" - }, - "text": { - "name": "text", - "type": "string", - "form": "local", - "doc": "Text to Place in Watermark" - }, - "transparencyPercentage": { - "name": "transparencyPercentage", - "type": "int", - "form": "local", - "doc": "Percentage Transparent watermark should be" - } - }, - "methods": {} - }, - "SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position": { - "name": "SoftLayer_Container_Network_Media_Transcode_Job_Watermark_Position", - "base": "SoftLayer_Entity", - "noservice": true, - "properties": { - "x": { - "name": "x", - "type": "int", - "form": "local", - "doc": "X Coordinate of Watermark" - }, - "y": { - "name": "y", - "type": "int", - "form": "local", - "doc": "vertical Coordinate of Watermark" - } - }, - "methods": {} - }, - "SoftLayer_Container_Network_Media_Transcode_Preset": { - "name": "SoftLayer_Container_Network_Media_Transcode_Preset", - "base": "SoftLayer_Entity", - "noservice": true, - "typeDoc": "Transcode preset is a set of configuration parameters that defines a Transcode output format. SoftLayer_Container_Network_Media_Transcode_Preset contains a preset information defined on a Transcode server ", - "properties": { - "GUID": { - "name": "GUID", - "type": "string", - "form": "local", - "doc": "The unique id that is used by a Transcode server" - }, - "category": { - "name": "category", - "type": "string", - "form": "local", - "doc": "The category that a preset belongs to" - }, - "description": { - "name": "description", - "type": "string", - "form": "local", - "doc": "The description of the preset" - }, - "name": { - "name": "name", - "type": "string", - "form": "local", - "doc": "The friendly name of a preset" - } - }, - "methods": {} - }, - "SoftLayer_Container_Network_Media_Transcode_Preset_Element": { - "name": "SoftLayer_Container_Network_Media_Transcode_Preset_Element", - "base": "SoftLayer_Entity", - "noservice": true, - "typeDoc": "Transcode preset element ", - "properties": { - "additionalElements": { - "name": "additionalElements", - "type": "SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option", - "form": "local", - "typeArray": true, - "doc": "The additional elements for DROPDOWNLIST element" - }, - "defaultValue": { - "name": "defaultValue", - "type": "string", - "form": "local", - "doc": "The default value of an element." - }, - "description": { - "name": "description", - "type": "string", - "form": "local", - "doc": "The description of a preset element" - }, - "enabled": { - "name": "enabled", - "type": "boolean", - "form": "local", - "doc": "The flag that indicates whether an element is enabled or not" - }, - "extendedDescription": { - "name": "extendedDescription", - "type": "string", - "form": "local", - "doc": "The extended description of a preset element" - }, - "hidden": { - "name": "hidden", - "type": "boolean", - "form": "local", - "doc": "The flag that indicates whether an element is hidden or not" - }, - "maximumValue": { - "name": "maximumValue", - "type": "int", - "form": "local", - "doc": "The maximum value of an element" - }, - "minimumValue": { - "name": "minimumValue", - "type": "int", - "form": "local", - "doc": "The minimum value of an element" - }, - "name": { - "name": "name", - "type": "string", - "form": "local", - "doc": "The name of an preset element" - }, - "parentName": { - "name": "parentName", - "type": "string", - "form": "local", - "doc": "The name of a parent element" - }, - "type": { - "name": "type", - "type": "string", - "form": "local", - "doc": "The type of an preset element." - } - }, - "methods": {} - }, - "SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option": { - "name": "SoftLayer_Container_Network_Media_Transcode_Preset_Element_Option", - "base": "SoftLayer_Entity", - "noservice": true, - "typeDoc": "Transcode preset element ", - "properties": { - "name": { - "name": "name", - "type": "string", - "form": "local", - "doc": "The name of a additional preset element" - }, - "value": { - "name": "value", - "type": "string", - "form": "local", - "doc": "The value of a additional preset element" - } - }, - "methods": {} - }, "SoftLayer_Container_Network_Message_Delivery_Email": { "name": "SoftLayer_Container_Network_Message_Delivery_Email", "base": "SoftLayer_Entity",