Delete a topic from a repository
DELETE
/repos/{owner}/{repo}/topics/{topic}
const url = 'https://gitea.com/api/v1/repos/example/example/topics/example';const options = {method: 'DELETE', headers: {Authorization: 'Basic <credentials>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://gitea.com/api/v1/repos/example/example/topics/example \ --header 'Authorization: Basic <credentials>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”owner
required
string
Owner of the repo
repo
required
string
Name of the repo
topic
required
string
Name of the topic to delete
Responses
Section titled “Responses”APIEmpty is an empty response
APINotFound is a not found empty response
APIInvalidTopicsError is error format response to invalid topics
Headers
Section titled “Headers”invalidTopics
Array<string>
message
string