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

General

Endpoints related to general Husqy Modules Verifier.

GET - /modules/verifier/

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

GET - /modules/verifier/settings

Get the settings of the verifier 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
  • InternalServerError
PUT - /modules/verifier/settings

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

Body data (JSON):

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to change the verifier module settings for
verifier_typeyesintegerThe type to use for verification. 1 = Click-to-pass, 2 = Passphrase and 3 = Web.
verifier_channelyesintegerThe ID of the channel to send verification requests in. Can be 'dm' or None to use User DM
verifier_verified_role_idsyeslistA list of role ID's to give to a user when they are successfully verified
verifier_message_is_embedyesbooleanIf the message to send to users is an Husqy embed config
verifier_message_completed_is_embedyesbooleanIf the message to send to users after successful verification is an Husqy embed config
verifier_message_contentyesstringThe message configuration to send to users when they are requested to verify. Can be a Husqy embed config is "verifier_message_is_embed" is True
verifier_message_content_successyesstringThe message configuration to send to users when verification has been successfully completed. Can be a Husqy embed config when "verifier_message_completed_is_embed" is True
verifier_passphraseyesstringThe passphrase to use. Can be None if verifier_type is not 2 (Passphrase)

Possible errors:

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

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

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

Endpoint to enable the verifier module for the specified guild.

Body data (JSON):

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

Possible errors:

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

Endpoint to disable the verifier module for the specified guild.

Body data (JSON):

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

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • DatabaseError

Entries

Endpoint related to verifier entries of the verifier module.

GET - /modules/verifier/entries

Endpoint to get the entries of the verifier module.

Query string parameters:

fieldrequiredtypedescription
guild_idyesintegerThe ID of the guild to get the verifier 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
GET - /modules/verifier/entry/{verifier_id}

Endpoint to get an entry of the verifier module.

Possible errors:

  • BadRequestError
  • SettingsError
  • ModuleDisabledError
  • InternalServerError

Events

Endpoint related to triggering the verification processes of the verifier module.

POST - /modules/verifier/event/create-verification
danger

Do not use this endpoint yourself! Verifications will be created and send by Husqy when needed.

Endpoint to check if a verification should be created and send.

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 /verifier entry 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/verifier/event/handle-verification
danger

Do not use this endpoint yourself! Verifications will be created and send by Husqy when needed.

Endpoint to check if a verification should be created and send.

Body data (JSON):

fieldrequiredtypedescription
verifier_idyesstringThe ID of the verifier entry that needs to be validated
interaction_idyesintegerThe ID of the application interaction. Can be None
tokenyesstringThe token of the interaction. Can be None
interaction_typeyesstringThe type of the interaction. Can be "ComponentInteraction", "ModalInteraction", "WebLogin" or None
passphrase_valueyesstringThe value of the passphrase the member filled in

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

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