Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 708 Bytes

File metadata and controls

29 lines (23 loc) · 708 Bytes

Error Handling

Common Status Codes

Status Code Description
400 Bad Request - Invalid input data
401 Unauthorized - Invalid token
404 Not Found - User not found
429 Too Many Requests - Rate limit exceeded

Internal Error Codes

Code Description
10001 Unknown invite link
10002 Server access by application

Error Response Format

{
	"status": false,
	"error": {
		"message": "Unknown invite link",
		"code": 10001
	}
}