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 welcoming module

General

Endpoints related to general Husqy Modules Welcoming.

GET - /modules/welcoming/

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

GET - /modules/welcoming/settings

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

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to check the status of

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
PUT - /modules/welcoming/settings

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

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to change the welcoming module settings for
request_welcome_messages_dm_enabledyesbooleanIf the welcome messages in dm component should be enabled
request_welcome_messages_dm_randomizedyesbooleanIf the welcome messages in dm responses that are send should be randomized
request_welcome_message_dm_response_idyesstringThe ID of the response to send. Can be none when responses are randomized
welcome_messages_enabledyesbooleanIf the welcome messages in channel component should be enabled
welcome_messages_randomizedyesbooleanIf the welcome messages in channel responses that are send should be randomized
welcome_messages_channelyesintegerThe ID of the channel to use as the welcome message in channel channel. Can be none when welcome messages component is disabled
welcome_message_response_idyesstringThe ID of the response to send. Can be none when responses are randomized
leave_messages_enabledyesbooleanIf the leave messages in channel component should be enabled
leave_messages_randomizedyesbooleanIf the leave messages in channel responses that are send should be randomized
leave_messages_channelyesintegerThe ID of the channel to use as the leave message in channel channel. Can be none when leave messages component is disabled
leave_message_response_idyesstringThe ID of the response to send. Can be none when responses are randomized
autorole_enabledyesbooleanIf the autorole component should be enabled
autorole_role_idsyeslistA list of role IDs to give to new members
timedroles_enabledyesbooleanIf the timedroles component should be enabled

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError
DELETE - /modules/welcoming/settings/delete

Delete all settings of the welcoming 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/welcoming/status

Get the status of the welcoming 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/welcoming/enable

Endpoint to enable the welcoming module for the specified guild.

Body data (JSON):

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

Possible errors:

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

Endpoint to disable the welcoming module for the specified guild.

Body data (JSON):

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

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError

Responses

Endpoint related to responses of the welcoming module.

GET - /modules/welcoming/responses

Endpoint to get the responses of the welcoming module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the welcoming responses from
pagenointegerThe page number to get (default = 1)
page_sizenointegerThe amount of panels to return in one page (default = 10)
response_typenointegerThe type of responses to get (1 = DM welcome messages, 2 = Channel welcome messages, 3 = Leave channel messages)

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
POST - /modules/welcoming/responses

Endpoint to create a new welcoming response in a guild.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to create the response in
response_typeyesintegerThe type of response to create (1 = DM welcome messages, 2 = Channel welcome messages, 3 = Leave channel messages)
is_embedyesbooleanWether the message content is an embed json config
contentyesstringThe content to use for the message. Can also be embed json config if is_embed is True

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},
GET - /modules/welcoming/response/{response_id}

Endpoint to get a response of the welcoming module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the welcoming response from

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
DELETE - /modules/welcoming/response/{response_id}

Endpoint to delete a response of the welcoming module.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to delete the response in

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError

Timedroles

Endpoint related to timedroles of the welcoming module.

GET - /modules/welcoming/timedroles

Endpoint to get the timedroles of the welcoming module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the welcoming timedroles 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
POST - /modules/welcoming/timedroles

Endpoint to create a new timedrole in a guild.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to create the response in
role_idyesintegerThe ID of the role to add to a member
add_afteryesintegerThe amount of seconds a member must be in a channel before getting a role

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError
  • Unprocessable Entity
{
"success": False,
"data": {},
"error": {
"code": 422,
"message": "Unprocessable Entity! {reason}",
},
},
GET - /modules/welcoming/timedrole/{timedrole_id}

Endpoint to get a timedrole of the welcoming module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the timedrole from

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
DELETE - /modules/welcoming/timedrole/{timedrole_id}

Endpoint to delete a timedrole of the welcoming module.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to delete the timedrole in

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError

Checks

Endpoint related to triggering the checking the components of the welcoming module.

POST - /modules/welcoming/check/welcome/dm
danger

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

Endpoint to check if a message should be send to the joined users DM.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild where the member has joined

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
POST - /modules/welcoming/check/welcome/channel
danger

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

Endpoint to check if a message should be send to the welcome message channel.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild where the member has joined

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
POST - /modules/welcoming/check/leave/channel
danger

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

Endpoint to check if a message should be send to the leave message channel.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild which the member has left

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
POST - /modules/welcoming/check/role/on-join
danger

Do not use this endpoint yourself! Roles will be added by Husqy when needed.

Endpoint to check if a new member should get roles from the autorole component.

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild where the member has joined

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError
POST - /modules/welcoming/check/role/timed
danger

Do not use this endpoint yourself! Roles will be added by Husqy when needed.

Endpoint to check if a member should get roles from the timedroles component.

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError

Privacy

Endpoints related to privacy and the tags module

GET - /modules/greetings/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 greetings 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/greetings/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 greetings 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