Rename Alert Recording

Rename an existing alert recording.

HTTP PUT

PUT /api/2013-12-01/Alerts/[Agency ID]/recordings/[Recording ID]
You must PUT the following parameters to rename an alert recording.

Parameter Description
Name A new unique name for the new alert. Maximum of 255 characters.
Example Request

$ curl -XPUT https://[Site Name].readyop.com/api/2013-12-01/Alerts/[Agency ID]/recordings/[Recording ID] \
-d "Name=New%20Alert%20Name" \
-u "[API Account ID]:[API Token]"

Request Result

{
    "code": 0,
    "status": 200,
    "detail": "Success",
    "timestamp": "2018-11-02T21:35:01+00:00",
    "recording": {
        "Recording ID": 123,
        "Name": "New Alert Name"
    }
}