NoRamp Docs
Search
K

Errors

HTTP STATUS CODE SUMMARY
Code
Description
200 - OK
Everything worked as expected.
400 - Bad Request
The request was unacceptable, often due to missing a required parameter.
401 - Unauthorized
No valid API key provided.
403 - Forbidden
The API key doesn't have permissions to perform the request.
404 - Not Found
The requested resource doesn't exist.
429 - Too Many Requests
Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
500, 502, 503, 504 - Server Errors
Something went wrong on NoRamp's end.
EXAMPLES:
400 - Bad Request
401 - Unauthorized
403 - Forbidden
404 - Not Found
429 - Too Many Requests
1 {
2 "statusCode": 400,
3 "message": "auth/token-required",
4 "error": "Bad Request"
5 {
1 {
2 "statusCode": 401,
3 "message": "session/invalid",
4 "error": "Unauthorized"
5 {
1 {
2 "statusCode": 403,
3 "message": "Forbidden resource",
4 "error": "Forbidden"
5 }
1 {
2 "statusCode": 404,
3 "message": "Cannot GET {url}",
4 "error": "Not Found"
5 }
1 {
2 "statusCode": 429,
3 "message": "rate-limit/create-app"
4 }