404 - Not found
A 404 - Not Found
error occurs when:
- Given unique identifier in request doesn't match any resource
- Endpoint does not exist
NOT FOUND ERROR OBJECT
Property | Type | Description |
---|---|---|
source | string | Request property which originated the error. Can be: - domain - link - script - tag - team - teammate |
message | string | Always "Not found" |
code | string | Always "NotFound" |
id | string | When present, is the unique identifier of the resource which was specified in the input object. |
Example 404 sources
A 404 on a given resource id may happen when one of the following sources is missing: domain, link, script, tag, team, teammate.
Example Not Found error
// HTTP status 404
{
"source": "domain",
"message": "Not found",
"code": "NotFound",
"id": "h64fj1f18f61495fle82e072471fq5hg"
}
Updated 6 months ago