LogicalAssetDelete()

Delete an existing LogicalAsset.

This action is irreversible, once deleted the mapping of a MediaProfile to ContentID with the existing ALID cannot be recreated.

This API is available with two URIs, the first of which deletes all LogicalAssets with a matching ALID while the later deletes a single LogicalAsset with matching MediaProfile and ALID.

API URL:

[BaseURL]/Asset/Map/{ALID}
[BaseURL]/Asset/Map/{MediaProfile}/{ALID}

Request Method:

DELETE

Response Format

Status Code:

Example

Delete a LogicalAsset

The following example deletes an existing LogicalAsset mapping

Sample Request:

DELETE [BaseURL]/Asset/Map/urn:dece:type:mediaprofile:hd/urn:dece:alid:org:customer-zero:123456789 HTTP/1.1
Host: api.uvvu.com

Sample Response:

HTTP/1.1 200
Date: [Date]
X-transaction-info: [TransactionInfo]

Delete all LogicalAsset by ALID

The following example deletes all existing LogicalAsset mappings identified by the provided ALID

Sample Request:

DELETE [BaseURL]/Asset/Map/urn:dece:alid:org:customer-zero:123456789 HTTP/1.1
Host: api.uvvu.com

Sample Response:

HTTP/1.1 200
Date: [Date]
X-transaction-info: [TransactionInfo]

See Also