假设我创建了一个资源,POST /resource
并在响应正文上产生一个id
,然后我用它id
来检索我的资源GET /resource/{id}
。
如何将这两个请求放在同一个 API 蓝图组中?
显然,一个组只有一个端点,这使得以下看起来您将创建一个POST /resource/{id}
不正确的资源,因为此时您甚至没有 id。
## Resource [/resource/{id}]
### Creating the resource [POST]
+ Response 201
+ Body
{
"id": "uuid"
}
### Retrieving the resource [GET]
+ Parameters
+ name (string) ... The name of your collection.
+ Response 200
+ Body
{
"id": "uuid"
}
我查看了示例,但找不到创建和检索特定资源的示例。我这样做是错误的吗?