Method | URL | Request | Response |
---|---|---|---|
Get | /api/post | - | { "createdAt" = "2023-06-16T12:43:01.226062”, "modifiedAt" = "2023-06-16T12:43:01.226062", "title" = "title", "userName" = "userName", "content" = "content", "id" = "id" } |
Get | /api/post/{id} | - | { "createdAt" = "2023-06-16T12:43:01.226062”, "modifiedAt" = "2023-06-16T12:43:01.226062", "title" = "title", "userName" = "userName", "content" = "content", "id" = "id" } |
Post | /api/post | { "title" = "title", "username" = "username", "content" = "content" } | { "createdAt" = "2023-06-16T12:43:01.226062”, "modifiedAt" = "2023-06-16T12:43:01.226062", "title" = "title", "username" = "username", "content" = "content", "password" = "password", "id" = "id" } |
Put | /api/post/{id} | { "title" = "title2", "username" = "username2", "content" = "content2" } | { "createdAt" = "2023-06-16T12:43:01.226062”, "modifiedAt" = "2023-06-16T12:43:01.226062", "title" = "title2", "username" = "username2", "content" = "content2", "id" = "id" } |
Delete | /api/post/{id}/{password} | { "password" = "password" } | { "success": true } |