Error codes · The request itself
Not found
Code
resource_not_foundStatus404
If this was an orderThis request bought nothing
Send it again unchanged?No — change something first
.NET SDK
ResourceNotFoundExceptionWhat it means
What you asked for does not exist, or it is not yours. Both get the same answer on purpose — for example an order id that belongs to another application looks exactly like one that was never used.
What to do
- Check the id. For an order, use the operation id you sent when you placed it.
Where you can meet it
- GETRead a wallet
/v1/wallets/{walletId} - GETList subcategories of a category
/v1/wallets/{walletId}/catalog/categories/{categoryId}/subcategories - GETRead a subcategory
/v1/wallets/{walletId}/catalog/subcategories/{subcategoryId} - GETList cards for sale
/v1/wallets/{walletId}/catalog/subcategories/{subcategoryId}/cards - POSTPlace an order
/v1/wallets/{walletId}/orders - GETRead an order
/v1/orders/{operationId} - POSTReveal an invoice
/v1/wallets/{walletId}/invoices/{invoiceId}/cards/reveal - GETRead an invitation
/v1/enrollments/{invitationId} - POSTSubmit a public key
/v1/enrollments/{invitationId}/keys - POSTProve you hold the key
/v1/enrollments/{invitationId}/proof - GETRead enrolment status
/v1/enrollments/{invitationId}/status
Example
The body of the refusal. Its type is the address of this page.
{
"type": "https://developers.anis.ly/errors/resource-not-found",
"title": "Not found",
"status": 404,
"code": "resource_not_found",
"requestId": "01J9R2K8T4V6XQ0M3B7C5D9E1F"
}