Skip to main content

Errors

App: Minotaur Sales API
Published by: Minotaur Sales
Supported on: app.minotaursales.io


Status Codes​

  • 400: Invalid request body (required fields, invalid UUID, wrong types, limit out of range).
  • 401: Missing or invalid Authorization header / API key.
  • 403: API key does not have the required permission for the endpoint.
  • 429: Rate limit exceeded.
  • 500: Unexpected server error.

401 Shape​

{
"statusCode": 401,
"message": "The provided API key is invalid or unauthorized."
}

403 Shape​

{
"statusCode": 403,
"message": "User does not have permission"
}

400 Validation Shape​

{
"statusCode": 400,
"message": [
"first_name must be a string",
"work_email must be an email"
],
"error": "Bad Request"
}