not_found
HTTP 404 Resource not found
What happened
The path is not an endpoint of this API - a typo, a missing /v1 prefix, or an identifier whose shape does not match that resource. Shapes differ: servers, networks, addresses, keys and server types are numeric, tasks are 32 hexadecimal characters, disks and network interfaces are slot names such as scsi1 and net1, and your own images carry the prefixes uiso- and utpl-. The same code also means the project behind your token is no longer available: it was closed, or the delegated access you were granted to it was withdrawn.
What to do
Check the request line against the endpoint list first; a wrong method on a real path answers 405 with an Allow header, not 404. Images live under two paths and neither is /v1/images: what a type can build from is GET /v1/server-types/{id}/images, and images you took from your own servers are GET /v1/server-images. If the path is right, confirm the token still resolves with a plain read such as GET /v1/servers - a token whose project is gone fails every endpoint the same way.
Retrying
Repeating this request will not help.
How it arrives
{
"type": "https://docs.fiberax.com/errors/not_found",
"title": "Resource not found",
"status": 404,
"code": "not_found",
"request_id": "a277dcd1ca652c65"
}
Branch your code on code, never on the wording of title.