Help Pages

Get Help Pages

GET https://e621.net/help.json

If an e621ng instance has no existing help pages, an error will be thrown. See e621ng/e621ng#492.

This endpoint accepts no search parameters.

[
  {
    "created_at": "0000-00-00T00:00:00.000-00:00",
    "id": 0,
    "name": "name",
    "related": "", // separated by a comma and a space
    "title": "", // Defaults to a titleized version of the name (https://apidock.com/rails/String/titleize)
    "updated_at": "0000-00-00T00:00:00.000-00:00",
    "wiki_page": "help:wiki_page"
  }
]

Get Help Page

GET https://e621.net/help/{nameOrID}.json

Path Parameters

NameTypeDescription

nameOrID*

String

The name or ID of the help page to get.

{
  "created_at": "0000-00-00T00:00:00.000-00:00",
  "id": 0,
  "name": "name",
  "related": "", // separated by a comma and a space
  "title": "", // Defaults to a titleized version of the name (https://apidock.com/rails/String/titleize)
  "updated_at": "0000-00-00T00:00:00.000-00:00",
  "wiki_page": "help:wiki_page"
}

Create Help Page

POST https://e621.net/help.json

Authorization Required

Admin+ Required

Request Body

NameTypeDescription

help_page[name]*

String

The name of the help page.

help_page[wiki_page]*

String

The name of the wiki page the help page will display.

help_page[title]

String

The title of the wiki page, Defaults to a titleized version of name.

help_page[related]

String

The related help pages, separated by a comma and a space.

{
  "created_at": "0000-00-00T00:00:00.000-00:00",
  "id": 0,
  "name": "name",
  "related": "", // separated by a comma and a space
  "title": "", // Defaults to a titleized version of the name (https://apidock.com/rails/String/titleize)
  "updated_at": "0000-00-00T00:00:00.000-00:00",
  "wiki_page": "help:wiki_page"
}

Edit Help Page

PATCH https://e621.net/help/{nameOrID}.json

Authorization Required

Admin+ Required

Path Parameters

NameTypeDescription

nameOrID*

String

The name or ID of the help page to edit.

Request Body

NameTypeDescription

help_page[name]

String

The name of the help page.

help_page[wiki_page]

String

The name of the wiki page the help page will display.

help_page[title]

String

The title of the wiki page, Defaults to a titleized version of name.

help_page[related]

String

The related help pages, separated by a comma and a space.

Delete Help Page

DELETE https://e621.net/help/{nameOrID}.json

Authorization Required

Admin+ Required

Path Parameters

NameTypeDescription

nameOrID*

String

The name or ID of the help page to delete.

Last updated