error_entries
Resource: error_entry
This link relationship returns a collection of error entries. You can paginate through this collection using the hypermedia links provided and the link relationships of first, prev, next, and last.
Required Scopes
Full
store_full_access
Read
reporting_read
Write
reporting_write Collection Resource
error_entryActions
GET View a list of error_entries
HEAD Get just the header response
OPTIONS Get a response explaining which HTTP methods are supported
Properties (5)
_embedded Object · Read-only Contains fx:error_entries[] — array of error_entry resources
total_items String · Read-only Total number of resources in this collection.
returned_items Number · Read-only Number of resources returned in this page.
limit Number · Read-only Maximum number of resources per page.
offset Number · Read-only Number of resources skipped.
Link Relations (5)
self This Collection first First Page of this Collection prev Previous Page of this Collection next Next Page of this Collection last Last Page of this Collection https://api.foxycart.com/stores/{store_id}/error_entries
Example Representation
{
"_links": {
"curies": [
{
"name": "fx",
"href": "https://api.foxycart.com/rels/{rel}",
"templated": true
}
],
"self": {
"href": "https://api.foxycart.com/stores/123/error_entries",
"title": "This Collection"
},
"first": {
"href": "https://api.foxycart.com/stores/123/error_entries?offset=0",
"title": "First Page of this Collection"
},
"prev": {
"href": "https://api.foxycart.com/stores/123/error_entries?offset=0",
"title": "Previous Page of this Collection"
},
"next": {
"href": "https://api.foxycart.com/stores/123/error_entries?offset=20",
"title": "Next Page of this Collection"
},
"last": {
"href": "https://api.foxycart.com/stores/123/error_entries?offset=20",
"title": "Last Page of this Collection"
}
},
"_embedded": {
"fx:error_entries": [
{
"_links": {
"curies": [
{
"name": "fx",
"href": "https://api.foxycart.com/rels/{rel}",
"templated": true
}
],
"self": {
"href": "https://api.foxycart.com/error_entries/456",
"title": "This Error Entry"
},
"fx:store": {
"href": "https://api.foxycart.com/stores/456",
"title": "This Store"
}
},
"url": "https://api-sandbox.foxycart.com/api_rest.php",
"error_message": "DataFeed Failed: (2) 2012-08-10 12:12:49 No data returned for [0]\n<url> malformed",
"user_agent": "curl/7.21.3 (i386-pc-win32) libcurl/7.21.3 OpenSSL/0.9.8q zlib/1.2.5",
"referer": "",
"ip_address": "10.1.249.103",
"ip_country": "",
"post_values": "",
"get_values": "",
"hide_error": false,
"date_created": "2012-08-10T12:12:49-0700",
"date_modified": null
}
]
},
"total_items": 1,
"returned_items": 1,
"limit": 20,
"offset": 0
}