POST debug/notify

Debug functionality to create a simple notification. The notification kind generated by this method is 'Debug' and contains a text data field.

Example

POST /api/v1/debug/notify HTTP/1.1
Authorization: Bearer ...
Content-Type: application/json

{
  "recipient": "ce69a120-4b98-4d79-bfdd-14dd8a5a1e99",
  "text": "It looks like you're trying to play Endless, would you like help with that?"
}
----------------------------------------
HTTP/1.1 204 No Content
ETag: W/"a-bAsFyilMr4Ra1hIU5PyoyFRunpI"

Security

Access Token authentication is required, but access is granted to all users.

URL Parameters

NONE

Request Parameters

NONE

Request Body

NameDescriptionValue
recipientthe ID of the user to receive the notification, as a GUID with dashesstring
texta message to include with the notificationstring

Response

Successful responses are code 204. Error responses are standard.

Response Body

NONE