store_changelogs

Resource: store_changelog

This link relationship returns a collection of store changelogs. 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 stores_read
Write stores_write

Collection Resource

store_changelog

Actions

GET View a list of store_changelogs
HEAD Get just the header response
OPTIONS Get a response explaining which HTTP methods are supported

Properties (5)

_embedded Object · Read-only

Contains fx:store_changelogs[] — array of store_changelog 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}/changelogs

Example Representation

{
  "_links": {
    "curies": [
      {
        "name": "fx",
        "href": "https://api.foxycart.com/rels/{rel}",
        "templated": true
      }
    ],
    "self": {
      "href": "https://api.foxycart.com/stores/123/store_changelogs",
      "title": "This Collection"
    },
    "first": {
      "href": "https://api.foxycart.com/stores/123/store_changelogs?offset=0",
      "title": "First Page of this Collection"
    },
    "prev": {
      "href": "https://api.foxycart.com/stores/123/store_changelogs?offset=0",
      "title": "Previous Page of this Collection"
    },
    "next": {
      "href": "https://api.foxycart.com/stores/123/store_changelogs?offset=20",
      "title": "Next Page of this Collection"
    },
    "last": {
      "href": "https://api.foxycart.com/stores/123/store_changelogs?offset=20",
      "title": "Last Page of this Collection"
    }
  },
  "_embedded": {
    "fx:store_changelogs": [
      {
        "_links": {
          "curies": [
            {
              "name": "fx",
              "href": "https://api.foxycart.com/rels/{rel}",
              "templated": true
            }
          ],
          "self": {
            "href": "https://api.foxycart.com/store_changelogs/456",
            "title": "This store changes log"
          },
          "fx:user": {
            "href": "https://api.foxycart.com/users/999",
            "title": "This User"
          },
          "fx:store": {
            "href": "https://api.foxycart.com/stores/456",
            "title": "This Store"
          }
        },
        "store_id": 40018,
        "user_id": 8956,
        "action": "updated",
        "resource": "store",
        "resource_id": 40018,
        "prev_values": {
          "store_name": "haha&hehe&hihi11!:)",
          "date_modified": "2025-03-28T07:29:08-0700"
        },
        "new_values": {
          "store_name": "416bc80e-6c2b-446e-9615-6923e15e116f",
          "date_modified": "2025-04-01T11:06:11-0700"
        },
        "created_at": "2025-04-01T11:06:11-0700"
      }
    ]
  },
  "total_items": 1,
  "returned_items": 1,
  "limit": 20,
  "offset": 0
}