Delete cover
DELETEhttps://api.teyuto.tv/v2/videos/:liveimitation_id/cover
Upload cover image to a live-imitation.
Request
Path Parameters
liveimitation_id stringrequired
Header Parameters
Accept stringrequired
Example: application/json
Responses
- 200
- 400
- 401
Response Headers
- application/json
- Schema
- Example (from schema)
- Example
Schema
status stringrequired
{
"status": "string"
}
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- Example
Schema
status stringrequired
{
"status": "string"
}
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- Example
Schema
status stringrequired
{
"status": "string"
}
{
"status": "<string>"
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://api.teyuto.tv/v2/videos/:liveimitation_id/cover");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "<API_KEY_VALUE>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear