DeleteTracks
Deletes tracking or activity records from WordPress.
Stored Procedure Specific Information
Execute
Call this procedure to delete an existing subtitle/caption track for a specified VideoPress video.
To delete an existing subtitle/caption track for a specified VideoPress video, you must specify the following columns: GUID, Kind, and SrcLang.
For example:
EXEC DeleteTracks GUID='529DrhwH', Kind='"subtitles"', SrcLang='"en"';
Input
| Name | Type | Description |
| GUID | String | The globally unique identifier of the tracking record to be deleted. |
| Kind | String | The type or category of the tracking record being deleted, such as a view or click event. |
| SrcLang | String | The source language code associated with the tracking record to be deleted. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the WordPress operation completed successfully. |
| Deleted | Boolean | Indicates whether the tracking record was successfully deleted from WordPress. |