Nia Api Docs
  1. Sample Schemas
Nia Api Docs
  • Walk through the Nia Api
  • APIs
    • Find by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing user
      PUT
    • Deletes a user
      DELETE
    • Finds User by status
      GET
  • Schemas
    • Sample Schemas
      • User
      • Category
      • Tag
  1. Sample Schemas

User

{
    "id": 1,
    "category": {
        "id": 1,
        "name": "string"
    },
    "name": "doggie",
    "photoUrls": [
        "string"
    ],
    "tags": [
        {
            "id": 1,
            "name": "string"
        }
    ],
    "status": "available"
}
Built with