Article DomainのAPI (1.0.0)

Download OpenAPI specification:Download

License: MIT

Article関連のAPI週

Article

投稿記事の情報

create

記事を作成する

Request Body schema: application/json
title
required
string

記事のタイトル

body
required
string

本文

Responses

Request samples

Content type
application/json
{
  • "title": "Hello World",
  • "body": "hey!"
}

Response samples

Content type
application/json
{
  • "status": 200,
  • "data":
    {
    }
}

get

記事を取得する

path Parameters
articleId
required
integer

記事のID

Responses

Response samples

Content type
application/json
{
  • "title": "Hello World",
  • "body": "hey!"
}

update

記事を更新する

path Parameters
articleId
required
integer

記事のID

Responses

Response samples

Content type
application/json
{
  • "status": 200
}

delete

記事を削除する

path Parameters
articleId
required
integer

記事のID

Responses

Response samples

Content type
application/json
{
  • "articleId": 100
}