API Reference

Auto Responses entities can be interacted using a RESTful interface through a multitude of routes, including ones for viewing, modifying, and deleting entities.

Restful endpoints for viewing and modifying auto responses.

Get Responses for a Guild

v1 Rest API

GET/responses/{guild.id}

Requires authentication

Returns a list of auto response objects.

Create a New Auto Response

v1 Rest API

POST/responses/{guild.id}

Requires authentication

Returns an auto response object on success. Will fire some type of gateway event.

Json Params
FieldTypeDescription
triggerstringTrigger portion of the auto response
responsestringResponse portion of the auto response

Delete an Auto Response

v1 Rest API

DELETE/responses/{guild.id}/{auto_response.id}

Requires authentication

Returns 204 No Content on success. Requires ownership or admin. Will fire some type of gateway event.

Modify an Existing Auto Response

v1 Rest API

PATCH/responses/{guild.id}/{auto_response.id}

Requires authentication

Modify the given auto response. Requires ownership or an admin. Returns the updated auto response object on success. Will fire some type of gateway event.

Json Params
FieldTypeDescription
triggerstringNew trigger portion of the auto response
responsestringNew response portion of the auto response

Joseph Azevedo profile
Last modified 2 years ago
Edit this page on GitHub
Built with using