1. Accounts
NotifyMe
  • Introduction
  • Accounts
    • List accounts
      GET
    • Add account
      POST
    • Edit account
      PATCH
    • Delete account
      DELETE
    • Test notification
      POST
    • Force notification
      POST
  • Embeds
    • List embeds
      GET
    • Create embed
      POST
    • Edit embed
      PATCH
    • Delete embed
      DELETE
  • Bot Styles
    • List bot styles
      GET
    • Create bot style
      POST
    • Edit bot style
      PATCH
    • Delete bot style
      DELETE
Discord BotManagement API
Legal
Discord BotManagement API
Legal
  1. Accounts

List accounts

Developing
GET
https://public-api.notifyme.bot/v1/management/accounts
Rate Limit:5 req/sec

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://public-api.notifyme.bot/v1/management/accounts?server_id=1044159651178094592&platform=youtube' \
--header 'Authorization: <api-key>'
Response Response Example
[
    {
        "internal_id": "string",
        "id": "string",
        "url": "string",
        "name": "string",
        "status": true,
        "discord_channel_id": "string",
        "ping_role_id": "string",
        "customization": {
            "embed_internal_id": "string",
            "bot_style_internal_id": "string"
        },
        "content_types": [
            "video"
        ],
        "message": {
            "video": "string",
            "live": "string",
            "tweet": "string"
        },
        "created_at": "2019-08-24",
        "updated_at": "2019-08-24"
    }
]
Previous
Introduction
Next
Add account
Built with