Skip to main content
GET
/
api
/
v3
/
store
/
digitals
/
{token}
Download a digital product
const options = {method: 'GET'};

fetch('http://{defaultHost}/api/v3/store/digitals/{token}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "error": {
    "code": "validation_error",
    "message": "Validation failed",
    "details": {
      "name": [
        "is too short"
      ],
      "email": [
        "is invalid"
      ]
    }
  }
}

Path Parameters

token
string
required

Digital link token

Response

file downloaded