Download Links

Viewing download links

This api is useful if you have a custom frontend in your store.

These apis do NOT require authentication.


Customer account page

This api is designed to be used on the customer account. The id for the order is found in the url e.g
https://my-store.com/account/orders/0c732eb6fd9802a0821a9d29888baee8

https://app.digital-downloads.com/api/v2/customer-account-orders?id=:id

example

https://app.digital-downloads.com/api/v2/customer-account-orders?id=0c732eb6fd9802a0821a9d29888baee8

Response

{
    "order": {
        "order_number": 1050,
        "lines": [
            {
                "product": {
                    "id": "82664d96-6dfd-4343-96b0-05c46f412a5q",
                    "name": "My new Book",
                    "variant_name": "Paper back",
                    "sku": "my-sku",
                    "product_id": 123456,
                    "variant_id": 1234567,
                    "vendor": "my-store",
                    "tags": [
                        "books",
                        "paper-books"
                    ]
                },
                "assets": [
                    {
                        "limits": {
                            "downloaded": 5,
                            "limit": 10
                        },
                        "data": {
                            "id": "82664d96-6dfd-4343-96b0-05c46f412a5b",
                            "filename": "My new book",
                            "size": "10MB",
                            "is_file": false,
                            "is_link": true,
                            "url": "https://www.my-website.com/download/my-book.pdf"
                        }
                    }
                ]
            },
            {
                "product": {
                    "id": "82664d96-6dfd-4343-96b0-05c46f412a5r",
                    "name": "My new Book",
                    "variant_name": "Hard back",
                    "sku": "my-sku",
                    "product_id": 123456,
                    "variant_id": 1234563,
                    "vendor": "my-store",
                    "tags": [
                        "books",
                        "hardback-books"
                    ]
                },
                "assets": []
            }
        ],
        "assets": [
            {
                "limits": {
                    "downloaded": 0,
                    "limit": 10
                },
                "data": {
                    "id": "82664d96-6dfd-4343-96b0-05c46f41sas",
                    "filename": "My new book - part 2",
                    "size": "20MB",
                    "is_file": false,
                    "is_link": true,
                    "url": "https://www.my-website.com/download/my-book-part-2.pdf"
                }
            }
        ]
    },
    "text": {
        "title": "Download files for your orders",
        "text": null
    }
}
Previous
Attaching assets to orders