This is a translation of the original English documentation page. Help us make it better.

httptest.update

Description

object httptest.update(object/array webScenarios)

This method allows to update existing web scenarios.

This method is only available to Admin and Super admin user types. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parameters

(object/array) Web scenario properties to be updated.

The httptestid property must be defined for each web scenario, all other properties are optional. Only the passed properties will be updated, all others will remain unchanged.

Additionally to the standard web scenario properties, the method accepts the following parameters.

Parameter Type Description
steps array Scenario steps to replace existing steps.
tags array Web scenario tags.

Valori di ritorno

(object) Restituisce un oggetto contenente gli ID degli scenari web aggiornati sotto la proprietà httptestids.

Esempi

Enabling a web scenario

Enable a web scenario, that is, set its status to "0".

Request:

{
           "jsonrpc": "2.0",
           "method": "httptest.update",
           "params": {
               "httptestid": "5",
               "status": 0
           },
           "auth": "700ca65537074ec963db7efabda78259",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "httptestids": [
                   "5"
               ]
           },
           "id": 1
       }

Guarda anche

Fonte

CHttpTest::update() in ui/include/classes/api/services/CHttpTest.php.