Update Restricted Connection

Update Restricted Connection
Updates the restricted connection with the given ID.

Updates the restricted connection with the given ID.

Request
URI
PUT
https://{api_host}/cloudapi/1.0.0/testConnection/restrictions/{id}
COPY
Path Parameters
string
id
Required

id


Request Body
RestrictedConnection of type(s) application/json
Optional

Show optional properties

{
    "type": "string",
    "value": "string"
}
{
    "id": "string",
    "type": "string",
    "value": "string"
}
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns RestrictedConnection of type(s) application/json;version=9.1.0
{
    "id": "string",
    "type": "string",
    "value": "string"
}

Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"type":"string","value":"string"}' https://{api_host}/cloudapi/1.0.0/testConnection/restrictions/{id}