Decryption Endpoint
API Endpoint for decrypting data
Permissions Required: Cryptography::Decrypt
Query parameters
-
data string
The data to decrypt
GET
/crypto/dec
curl \
-X GET https://thefemdevs.com/api/crypto/dec
Response examples (200)
testing
Response examples (400)
Missing Data Parameter
{
"code": 6,
"message": "Missing Query Parameter(s)"
}
{
"code": 7,
"message": "Invalid Query Parameter(s)"
}
Response examples (401)
Missing API Token
{
"code": 3,
"message": "No API key provided"
}
{
"code": 4,
"message": "Invalid API key provided"
}
Response examples (403)
Missing permissions
{
"code": 1,
"message": "You are not authorized to access this resource"
}
{
"code": 2,
"message": "You are blacklisted from accessing this resource"
}
Response examples (500)
{
"code": 13,
"message": "Unable to decrypt data"
}