mirror of
https://github.com/AnimeThemes/animethemes-api-docs.git
synced 2026-07-23 15:33:59 +02:00
title
| title |
|---|
| Studio Store |
Studio Store Endpoint
The studio store endpoint creates a new studio and returns the new studio resource.
For example, the /api/studio?name=Shaft&slug=shaft endpoint will create a new Shaft studio and return the new Shaft resource.
URL
POST /api/studio
Authentication
Required Permission: create studio
Roles with Permission: Wiki Editor, Admin
Parameters
| Name | Required | Rules |
|---|---|---|
| name | Yes | string, max:192 |
| slug | Yes | string, max:192, alpha_dash, unique |
Response
{
studio: {
id: id,
name: "name",
slug: "slug",
created_at: "created_at",
updated_at: "updated_at",
deleted_at: "deleted_at"
}
}