downloadable_purchases

Resource: downloadable_purchase

This link relationship returns a collection of downloadable purchases. 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 transactions_read
Write transactions_write

Collection Resource

downloadable_purchase

Actions

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

Properties (5)

_embedded Object · Read-only

Contains fx:downloadable_purchases[] — array of downloadable_purchase 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/transactions/{transaction_id}/downloadable_purchases

Example Representation

{
  "_links": {
    "curies": [
      {
        "name": "fx",
        "href": "https://api.foxycart.com/rels/{rel}",
        "templated": true
      }
    ],
    "self": {
      "href": "https://api.foxycart.com/stores/123/downloadable_purchases",
      "title": "This Collection"
    },
    "first": {
      "href": "https://api.foxycart.com/stores/123/downloadable_purchases?offset=0",
      "title": "First Page of this Collection"
    },
    "prev": {
      "href": "https://api.foxycart.com/stores/123/downloadable_purchases?offset=0",
      "title": "Previous Page of this Collection"
    },
    "next": {
      "href": "https://api.foxycart.com/stores/123/downloadable_purchases?offset=20",
      "title": "Next Page of this Collection"
    },
    "last": {
      "href": "https://api.foxycart.com/stores/123/downloadable_purchases?offset=20",
      "title": "Last Page of this Collection"
    }
  },
  "_embedded": {
    "fx:downloadable_purchases": [
      {
        "_links": {
          "curies": [
            {
              "name": "fx",
              "href": "https://api.foxycart.com/rels/{rel}",
              "templated": true
            }
          ],
          "self": {
            "href": "https://api.foxycart.com/downloadable_purchases/456",
            "title": "This Downloadable Purchase"
          },
          "fx:store": {
            "href": "https://api.foxycart.com/stores/456",
            "title": "This Store"
          },
          "fx:customer": {
            "href": "https://api.foxycart.com/customers/789",
            "title": "This Customer"
          },
          "fx:transaction": {
            "href": "https://api.foxycart.com/transactions/999",
            "title": "This Transaction"
          },
          "fx:item": {
            "href": "https://api.foxycart.com/items/999",
            "title": "This Item"
          },
          "fx:downloadable": {
            "href": "https://api.foxycart.com/downloadables/999",
            "title": "This Downloadable"
          },
          "fx:reset_usage": {
            "href": "https://api.foxycart.com/downloadable_purchases/123",
            "title": "Reset Usage"
          }
        },
        "number_of_downloads": 0,
        "first_download_time": null,
        "download_passcode": "QYLKcnhe9Q1nklCXRQJLFTpZxDLKgSX2HAG",
        "date_created": null,
        "date_modified": null
      }
    ]
  },
  "total_items": 1,
  "returned_items": 1,
  "limit": 20,
  "offset": 0
}