Melt API (3.0.1)

Download OpenAPI specification:Download

マークダウンエディタ Melt で利用する REST API

apps

Get Melt metadata

Melt のメタデータを取得する

Authorizations:
api_key

Responses

Response samples

Content type
application/json
{
  • "version": "string"
}

images

Upload image

画像をストレージにアップロードする

Authorizations:
api_key
Request Body schema: application/json
key
required
string

ファイル名

attachment
required
string

ファイルデータを Base64 エンコードした文字列

type
required
string

Content-Type

Responses

Request samples

Content type
application/json
No sample

Response samples

Content type
application/json
{
  • "url": "string"
}

sites

Get site metadata

Web サイトのメタデータを取得する

Authorizations:
api_key
query Parameters
url
required
string

WebサイトのURL

Responses

Response samples

Content type
application/json
{
  • "title": "string"
}

notes

Get a list of Notes Deprecated

ノートの一覧を取得する

Authorizations:
api_key
Request Body schema: application/json

ノートの登録・更新

content
required
string

ノートのテキスト

Responses

Request samples

Content type
application/json
{
  • "content": "string"
}

Response samples

Content type
application/json
[
  • {
    }
]

Create Note Deprecated

ノートを登録する

Authorizations:
api_key
Request Body schema: application/json

ノートの登録・更新

content
required
string

ノートのテキスト

Responses

Request samples

Content type
application/json
{
  • "content": "string"
}

Response samples

Content type
application/json
{
  • "id": "string",
  • "content": "string"
}

Get Note Deprecated

指定のノートを取得する

Authorizations:
api_key
path Parameters
noteId
required
string

Responses

Response samples

Content type
application/json
{
  • "id": "string",
  • "content": "string"
}

Update Note Deprecated

指定のノートを更新する

Authorizations:
api_key
path Parameters
noteId
required
string
Request Body schema: application/json

ノートの登録・更新

content
required
string

ノートのテキスト

Responses

Request samples

Content type
application/json
{
  • "content": "string"
}

Response samples

Content type
application/json
{
  • "id": "string",
  • "content": "string"
}

Delete Note Deprecated

指定のノートを削除する

Authorizations:
api_key
path Parameters
noteId
required
string

Responses

Response samples

Content type
application/json
{
  • "error": {
    }
}