Familiarize on response formats and common responses
The MeetBit Public API has a standard response format and standard response status codes. This page will guide you through those as well as common errors you may encounter.
We follow RFC 9110 in using HTTP status codes to indicate success or failure of your requests.In general, 2xx HTTP codes correspond to success, 4xx codes are for client-side errors, and 5xx codes are for server-side issues.
This error is returned when the request parameter/s are invalid or malformed.
Copy
400 Bad RequestContent-Type: application/json{ "message": "The first_name field must not be greater than 255 characters. (and 1 more error)", "errors": { "first_name": [ "The first_name field must not be greater than 255 characters." ], "email": [ "The email field is required." ] }}
If encountered, inspect the response body for the errors thrown. The response body will have an errors object with keys that correspond to input fields. Each key’s value is an array of strings describing the errors encountered in validating that field.
This error is returned when the request has invalid or is missing access keys.
Copy
401 UnauthorizedContent-Type: text/plainInvalid or missing access keys.
If encountered, verify that the Access Key ID and Secret were attached to the request headers as indicated in Authentication & Authorization. If these are attached, verify that the values are valid.