api error response with message code example

Example 1: api error codes

General (unknown) error.	                              = 500
	Customer account not found (possible bad subdomain	      = 401
	Customer account inactive	                              = 401
	Customer account suspended	                              = 503
	Customer account banned	                                  = 418
	Paid customer account inactive due to non-payment	      = 402
	User not found	                                          = 401
	User not active	                                          = 401
	Invalid auth (bad username/password)	                  = 401
	Permissions error.                    	                  = 403
	Maximum number of daily API requests exceeded          	  = 400

Example 2: what should be the error response status for information message

Status-Code    =
            "100"  ; Section 10.1.1: Continue
          | "101"  ; Section 10.1.2: Switching Protocols
          | "200"  ; Section 10.2.1: OK
          | "201"  ; Section 10.2.2: Created
          | "202"  ; Section 10.2.3: Accepted
          | "203"  ; Section 10.2.4: Non-Authoritative Information
          | "204"  ; Section 10.2.5: No Content
          | "205"  ; Section 10.2.6: Reset Content
          | "206"  ; Section 10.2.7: Partial Content
          | "300"  ; Section 10.3.1: Multiple Choices
          | "301"  ; Section 10.3.2: Moved Permanently
          | "302"  ; Section 10.3.3: Found
          | "303"  ; Section 10.3.4: See Other
          | "304"  ; Section 10.3.5: Not Modified
          | "305"  ; Section 10.3.6: Use Proxy
          | "307"  ; Section 10.3.8: Temporary Redirect
          | "400"  ; Section 10.4.1: Bad Request
          | "401"  ; Section 10.4.2: Unauthorized
          | "402"  ; Section 10.4.3: Payment Required
          | "403"  ; Section 10.4.4: Forbidden
          | "404"  ; Section 10.4.5: Not Found
          | "405"  ; Section 10.4.6: Method Not Allowed
          | "406"  ; Section 10.4.7: Not Acceptable

Tags:

Misc Example