Import kitsu projects

POST /import/kitsu/projects

Import Kitsu projects. Send a list of Kitsu project entries in the JSON body. Returns created or updated projects.

application/json

Body Required

  • id string(uuid)

    Kitsu ID of the project

  • name string

    Project name

  • production_type string

    Production type

Responses

  • 200 application/json

    Projects imported successfully

    Hide response attributes Show response attributes object
    • id string(uuid)

      Project unique identifier

    • name string

      Project name

    • created_at string(date-time)

      Creation timestamp

    • updated_at string(date-time)

      Update timestamp

  • 400

    Invalid request body or missing required fields

POST /import/kitsu/projects
curl \
 --request POST 'http://api.example.com/import/kitsu/projects' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '[{"id":"a24a6ea4-ce75-4665-a070-57453082c25","name":"My Project","production_type":"tvshow"}]'
Request example
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "My Project",
    "production_type": "tvshow"
  }
]
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "My Project",
    "created_at": "2024-01-15T10:30:00Z",
    "updated_at": "2024-01-15T11:00:00Z"
  }
]