1. Creatures
GY Docs
  • Documentation
  • Data API
    • Characters
      • Get Character
      • List Characters
      • Page Characters
    • Creatures
      • Get Creature
      • List Creatures
      • Page Characters
    • Items
      • Get Item
      • List Items
      • Page Items
    • Worlds
      • Get World
      • Get Place
      • List Worlds
      • List Places
      • List Places by World
      • Page Worlds
      • Page Places
  • Management API
    • Characters
      • Insert Character
      • Update Character
      • Remove Character
    • Creatures
      • Insert Creature
        POST
      • Update Creature
        PATCH
      • Remove Creature
        DELETE
    • Items
      • Insert Item
      • Update Item
      • Remove Item
    • Worlds
      • Insert World
      • Update World
      • Remove World
      • Insert Place
      • Update Place
      • Remove Place
GY AccountsGY BooksHeralds of Chaos
GY AccountsGY BooksHeralds of Chaos
  1. Creatures

Insert Creature

POST
https://api.gycoding.com/heraldsofchaos/creatures
Inserts a new Creature.

Request

Header Params

Body Params application/json

Example
{
    "name": {
        "es": "string",
        "en": "string"
    },
    "description": {
        "es": "string",
        "en": "string"
    },
    "image": "http://example.com"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gycoding.com/heraldsofchaos/creatures' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": {
        "es": "string",
        "en": "string"
    },
    "description": {
        "es": "string",
        "en": "string"
    },
    "image": "http://example.com"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "identifier": "string",
    "name": "string",
    "description": "string",
    "image": "http://example.com"
}
🟠400Bad Request
🟠403Forbidden
🟠404Not Found
🟠405Method Not Allowed
🟠409Conflict
🔴500Internal Error
Previous
Remove Character
Next
Update Creature
Built with