not_found

HTTP 404 — The requested resource was not found.

Returned as application/problem+json with code not_found and HTTP status 404.

The resource does not exist, or is not visible to this key. A resource owned by another account also returns 404 (not 403), so ids can’t be probed.

Common causes

  • The id is wrong or refers to a deleted resource.
  • The resource belongs to another account.
  • The URL path is incorrect.

How to resolve

  • Verify the id and the path.
  • List the collection to find valid ids.

Example

1{
2 "type": "https://docs.usglobalmail.com/api/problems/not_found",
3 "title": "The requested resource was not found.",
4 "status": 404,
5 "code": "not_found",
6 "request_id": "req_8f3c2a1b9d",
7 "instance": "/v1/mails"
8}
Retrying without changing the request will not help — fix the request first.