Status Codes

Routee uses the following HTTP status codes:

STATUS CODEDESCRIPTION
200 (OK)The operation was completed successfully
401 (NOT_AUTHENTICATED)No access token provided or the access token has expired
404 (NOT_FOUND)Something that was requested wasn't found. For example, if we want to retrieve information about a specific entity with an id and the id doesn't exist.
409 (CONFLICT)While creating/updating operations and a property must have a unique value that already exists in the system.

For example, the name of an SMS campaign.
400 (BAD_REQUEST)You have provided a value that is considered invalid
500 (INTERNAL_SERVER_ERROR)An internal error occured (our system is down or we have a bug)

What’s Next