POST api/v1/Playlist/UpdatePlaylist
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
PlaylistName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Name | string |
None. |
|
Description | string |
None. |
|
CreatedBy | integer |
None. |
|
CreatedDate | date |
None. |
|
ModifiedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "sample string 2", "Description": "sample string 3", "CreatedBy": 4, "CreatedDate": "2025-01-09T08:54:16.0354456Z", "ModifiedDate": "2025-01-09T08:54:16.0354456Z" }
text/html
Sample:
{"Id":1,"Name":"sample string 2","Description":"sample string 3","CreatedBy":4,"CreatedDate":"2025-01-09T08:54:16.0354456Z","ModifiedDate":"2025-01-09T08:54:16.0354456Z"}
text/xml
Sample:
<Playlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models"> <CreatedBy>4</CreatedBy> <CreatedDate>2025-01-09T08:54:16.0354456Z</CreatedDate> <Description>sample string 3</Description> <Id>1</Id> <ModifiedDate>2025-01-09T08:54:16.0354456Z</ModifiedDate> <Name>sample string 2</Name> </Playlist>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>