Files
animethemes-api-docs/docs/jsonapi/reference/content/artist/destroy/index.md
T
2025-12-17 22:53:18 -03:00

897 B

title
title
Artist Destroy

Artist Destroy Endpoint

The artist destroy endpoint soft deletes an artist and returns the deleted artist resource.

For example, the /artist/chiwa_saitou endpoint will soft delete the Chiwa Saitou artist and return the deleted Chiwa Saitou resource.

URL

DELETE /artist/{slug}

Authentication

Required Permission: delete artist

Roles with Permission: Content Moderator, Encoder, Admin

Other Requirements: Artist must not be soft deleted

Parameters

None

Response

{
    artist: {
        id: id,
        name: "name",
        slug: "slug",
        information: "information",
        created_at: "created_at",
        updated_at: "updated_at",
        deleted_at: "deleted_at"
    }
}

Example

curl -X DELETE -H "Authorization: Bearer {token}" https://api.animethemes.moe/artist/chiwa_saitou