Definition
https://sandbox.bluesnap.com/services/2/orders/{order-id}/fulfillment/license-keys|download-links
For some transactions, the shopper may be entitled to a license key (serial number) and/or download link. The Retrieve Fulfillment Information request enables you to obtain the relevant fulfillment details. You can then display the information to the shopper on your Thank You page once the transaction is complete.
Request Content
Retrieve license keys
Enter the order-id
into the web service URL for license keys, in the format:
services/2/orders/{order-id}/fulfillment/license-keys
For example:
services/2/orders/123456/fulfillment/license-keys
Retrieve download links
Enter the order-id
into the web service URL for download links, in the format:
services/2/orders/{order-id}/fulfillment/download-links
For example:
services/2/orders/123456/fulfillment/download-links
Response Details
If successful, the response HTTP status code is 200 OK.
The response contains the retrieved fulfillment
resource (see fulfillment).
For details about possible errors, see: General Errors.
Examples
Request Examples
curl -v -X GET https://sandbox.bluesnap.com/services/2/orders/3612045/fulfillment/license-keys \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ='
curl -v -X GET https://sandbox.bluesnap.com/services/2/orders/3612045/fulfillment/download-links \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ='
Response Examples
<?xml version="1.0" encoding="UTF-8"?>
<fulfillment xmlns="http://ws.plimus.com">
<sku-license>
<sku-id>151</sku-id>
<sku-name>my test product</sku-name>
<license-key>A1234567890</license-key>
</sku-license>
</fulfillment>
<?xml version="1.0" encoding="UTF-8"?>
<fulfillment xmlns="http://ws.plimus.com">
<sku-download-link>
<sku-id>151</sku-id>
<sku-name>my test product</sku-name>
<download-link>http://support.BlueSnap.com/jsp/download_app.jsp?contractId=151</download-link>
</sku-download-link>
</fulfillment>