Errors
- 200 OK
- 400 Bad Request - usually this happens if your request does not match the graphql schema
- 401 Unauthorized - the api key is not valid
- 403 Forbidden - the api key is not allowed to do this request
- 409 Conflict - usually this happens if you try to create a resource that conflicts with an existing one (usally folder names)
- 418 I'm a teapot - most likely reason is that the request did not meet our Requirements or because of the rare case your IP being blocked.
- 429 Too Many Requests - you exceeded your limits.
- 5xx Server Error - Something went wrong on our end.
tip
For all 4xx errors except 418 you might see those errors on the error logs page as well. Which then shows you the error, time, query/mutation, variables, user agent and its requestId.
and all other errors are within the 200 reponses
{
"data": {
"aNiceMutation": {
"userErrors": [
{
"message": "here you can get errors too, but this is only available on certain mutations"
}
]
}
},
"errors": [
{
"message": "This is just a test Error message, that should normally help you to find the issue",
"locations": [
{
"line": 6,
"column": 5
}
]
}
]
}