Skip to content

NekoLuka/ntfy-api-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

ntfy api docs

A simple document with documentation of the ntfy api

Authentication

The API knows 2 different ways of authenticating.

  1. Basic auth: Basic base64(<username>:<password>)
  2. Bearer token: Bearer <token>

Either of these tokens are placed in the Authorization header

Explanation

All endpoints described in this document should be prefixed with http(s)://<domain>/v1. This is because it makes the document easier to read.

Admin endpoints

These endpoints are only accessible for users with the admin role.


GET /users

Gets all users including their ACL's.

Request body

Response body (200 OK)

[
  {
    "username": "string", 
    "role": "string",
    "grants": [
      {
        "topic": "string",
        "permission": "string"
      }
    ]
  }
]

PUT /users

Creates a new user with assigned username, password and optionally tier.

Request body

{
  "username": "string",
  "password": "string",
  "tier": "string"
}

Response body (200 OK)

{
  "success": "bool"
}

DELETE /users

Deletes the given user.

Request body

{
  "username": "string"
}

Response body (200 OK)

{
  "success": "bool"
}

PUT | POST /users/access

Creates/updates ACL's for the given user.

Request body

{
  "username": "string",
  "topic": "string",
  "permission": "string"
}

Response body (200 OK)

{
  "success": "bool"
}

DELETE /users/access

Deletes the given ACL for the given topic from the user. This will also return a 200 even if the user is no longer has an ACL for that topic.

Request body

{
  "username": "string",
  "topic": "string"
}

Response body (200 OK)

{
  "success": "bool"
}

User endpoints

These endpoints are accessible for all authenticated users.


GET /account

Get's all account data for the user. If no authentication data is given, it fetches the data for the anonymous user.

Request body

Response body (200 OK)

{
	"username": "string",
	"role": "string",
	"sync_topic": "string",
	"tokens": [],
	"limits": {},
	"stats": {}
}

POST /account

This endpoint is not documented since it's used for signing up, which is not possible on selfhosted instances.

DELETE /account

Delete the users account, requires the current password. The user appears to be deleted, however, when using the /users endpoint, it still shows up. This could be a bug, further investigation required.

Request body

{
	"password": "string"
}

Response body (200 OK)

{
  "success": "bool"
}

POST /account/token

Creates an access token for the given user.

Request body

Response body (200 OK)

{
	"token": "string",
	"last_access": "number",
	"last_origin": "string",
	"expires": "number"
}

PATCH /account/token

This endpoint is not documented since it's not yet been investigated.

DELETE /account/token

This endpoint is not documented since it's not yet been investigated.


POST /account/password

Change the users password, requires the current password.

Request body

{
	"password": "string",
	"new_password": "string"
}

Response body (200 OK)

{
  "success": "bool"
}

About

A simple document with documentation of the ntfy api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published