Components
Gotify
A simple server for sending and receiving messages.
Categories: Communication
Type: gotify/v1
Connections
Version: 1
Bearer Token
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
token | Token | STRING | Application token of the app you created for receiving and sending messages. | true |
baseUri | Base URI | STRING | Base URI of your Gotify server (e.g. http://localhost:1024). | true |
Actions
Send Message
Name: sendMessage
Sends a message to the server.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
title | Message Title | STRING | The title of the message that will be sent. | false |
message | Message Content | STRING | The content message that will be sent. | true |
priority | Priority | INTEGER | The priority of the message. If unset, then the default priority of the application will be used. | false |
extras | Extras | ARRAY Items[{STRING(topNamespace), STRING(subNamespace), STRING(extraInfoKey), STRING(extraInfoValue)}($extra)] | The extra data sent along the message. | false |
Example JSON Structure
{
"label" : "Send Message",
"name" : "sendMessage",
"parameters" : {
"title" : "",
"message" : "",
"priority" : 1,
"extras" : [ {
"topNamespace" : "",
"subNamespace" : "",
"extraInfoKey" : "",
"extraInfoValue" : ""
} ]
},
"type" : "gotify/v1/sendMessage"
}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
id | INTEGER | ID of the message that was sent. |
appid | INTEGER | ID of the app that sent the message. |
message | STRING | Content of the message that was sent. |
title | STRING | Title of the message that was sent. |
priority | INTEGER | Priority of the message that was sent. |
extras | OBJECT Properties{{{STRING(extra_info)}(sub_namespace)}(top_namespace)} | Extras of the message that was sent. |
date | STRING | Date when the message was sent. |
Output Example
{
"id" : 1,
"appid" : 1,
"message" : "",
"title" : "",
"priority" : 1,
"extras" : {
"top_namespace" : {
"sub_namespace" : {
"extra_info" : ""
}
}
},
"date" : ""
}
Additional instructions
Google Tasks
Google Tasks is a cloud-based task management tool that allows users to create, edit, and organize to-do lists, set deadlines, and track tasks across devices in real-time.
GraphQL Client
The GraphQL client connector offers a comprehensive overview of your API's data, empowering users to request precisely what they need and nothing beyond that.