The permissions Husqy needs have been updated! Please cross check with the new invite link to make sure you are up to date!
We are now verified! Husqy is now a verified bot in Discord making us visible in the app discovery and enabling bigger trust to users!
Want to help us translate the Husqy responses? We can't do it without you! Please visit our translations repo!
Skip to main content

Husqy API rules module

General

Endpoints related to general Husqy Modules Rules.

GET - /modules/rules/

Home endpoint for the Modules Rules Husqy API. Returns only success message displaying that it is the Modules Rules API route.

GET - /modules/rules/settings

Get the settings of the rules module for the specified guild.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the settings of

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
PUT - /modules/rules/settings

Endpoint to change the settings of the rules module for the specified guild.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to change the rules module settings for
rules_channelyesintegerThe ID of the channel to use for sending the rules. Can be 'dm' or None for a users DM channel
rules_actions_enabledyesbooleanIf the rules action (accept & deny) should be enabled
rules_accepted_role_idsyeslistA list of role ID's to give when a user accepts the rules
rules_denied_actionyesintegerThe action to take when a users denies the rules. Can be 1 for 'No action', 2 for 'Add roles' and 3 for 'kick'
rules_denied_role_idsyeslistA list of role ID's to give to a user when they deny the rules. Only applicable when the rules_denied_action is set to 2.

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},
DELETE - /modules/rules/settings/delete

Delete all settings of the rules module for a specified guild.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to delete the settings from

Possible errors:

  • BadRequestError

Status

Endpoints related to the status of the module.

GET - /modules/rules/status

Get the status of the rules module for the specified guild.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to check the status of

Possible errors:

  • BadRequestError
  • SettingsError
POST - /modules/rules/enable

Endpoint to enable the rules module for the specified guild.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to enable the rules module for

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleEnabledError
  • DatabaseError
POST - /modules/rules/disable

Endpoint to disable the rules module for the specified guild.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to disable the rules module for

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError

Entries

Endpoint related to rule entries of the rules module.

GET - /modules/rules/entries

Endpoint to get the configured rules of the rules module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the rules entries from
pagenointegerThe page number to get (default = 1)
page_sizenointegerThe amount of panels to return in one page (default = 10)

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
POST - /modules/rules/entries

Endpoint to add a new rule to the rules module.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the rules entries from
rule_textyesstringThe text of the rule
application_idyesintegerThe ID of the application interaction. Can be None
tokenyesstringThe token of the interaction. Can be None

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},
GET - /modules/rules/entry/{rule_id}

Endpoint to get a rule of the rules module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild where the rule is located

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
DELETE - /modules/rules/entry/{rule_id}

Endpoint to delete a rule from the rules module.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild where the rule is located
application_idyesintegerThe ID of the application interaction. Can be None
tokenyesstringThe token of the interaction. Can be None

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},

Checks

Endpoint related different check events of the rules module.

POST - /modules/rules/check/send
danger

Do not use this endpoint yourself! Rules will be send by Husqy when needed.

Endpoint to check if the configured rules should be send to a users DM.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild where the member has joined
application_idyesintegerThe ID of the application interaction. Can be None
tokenyesstringThe token of the interaction. Can be None
requesteryesintegerThe ID of the user who ran the /rules retrigger command. Can be None

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},
POST - /modules/rules/check/interaction
danger

Do not use this endpoint yourself! Interactions with the rules module message will be handled by Husqy when needed.

Endpoint to check if an interaction with a rules message should be handled.

Body data (JSON):

fieldrequiredtypedescription
message_idyesintegerThe ID of the message that has been interacted with
channel_idyesintegerThe ID of the channel where the interacted message is located
interaction_custom_idyesstringThe custom ID of the interaction
interaction_id_tokenyesstringThe token of the interaction. Can be None
application_idyesstringThe ID of the application interaction. Can be None

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},

Privacy

Endpoints related to privacy and the rules module

GET - /modules/rules/privacy/get-user-entries
danger

Do not use this endpoint yourself! This endpoint will be used by Husqy's Privacy configurator (/privacy) command.

Endpoint to get the amount of references in rules to your user.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the specified references in
privacy_member_idyesintegerThe ID of the member who wants to check their references

Possible errors:

  • BadRequestError
  • ForbiddenError
  • InternalServerError
DELETE - /modules/rules/privacy/delete-user-entries
danger

Do not use this endpoint yourself! This endpoint will be used by Husqy's Privacy configurator (/privacy) command.

Endpoint to delete the references in rules to your user.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to delete the specified references in
privacy_member_idyesintegerThe ID of the member who wants to remove their references

Possible errors:

  • BadRequestError
  • ForbiddenError
  • InternalServerError