🍑 自定义域名-11-开关
  1. 示例数据模型
🍑 自定义域名-11-开关
  • 🦊一分钟,了解 Apifox !
  • 示例项目
    • 查询宠物详情
      GET
    • 新建宠物信息
      POST
    • 修改宠物信息
      PUT
    • 删除宠物信息
      DELETE
    • 根据状态查找宠物列表
      GET
  • 数据模型
    • 示例数据模型
      • Pet
      • Category
      • Tag
  1. 示例数据模型

Pet

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