MagicBell · Schema

AccessToken

notificationspush notificationsin-app notificationsemailSMSSlackMicrosoft Teamswebhooksnotification inboxmultichannelmobile pushweb push

Properties

Name Type Description
created_at string
expires_at string
token string
token_id string
View JSON Schema on GitHub

JSON Schema

magicbell-accesstoken.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/magicbell/main/json-schema/magicbell-accesstoken.json",
  "title": "AccessToken",
  "required": [
    "token",
    "token_id",
    "created_at"
  ],
  "type": "object",
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time"
    },
    "token": {
      "type": "string"
    },
    "token_id": {
      "type": "string",
      "format": "uuid"
    }
  },
  "example": {
    "created_at": "2021-01-01T00:00:00Z",
    "token": "eY.......",
    "token_id": "019b1b1e-7b1b-4b1b-8b1b-1b1b1b1b1b1b"
  }
}