Fileflare API

Pro tip - Build custom tools using this API

Use an AI app builder like Replit to unlock the ability to build your own tools and customisations using the Fileflare API.

Attaching assets to products

For this, you will need to have the Fileflare asset ID and the Fileflare product ID (s). You can find products on this API page.


Attach

Use the Fileflare product IDs and send a POST request with the Fileflare asset ID to:

https://app.digital-downloads.com/api/v1/assets/:id/attach

Example

https://app.digital-downloads.com/api/v1/assets/82664d96-6dfd-4343-96b0-05c46f412a5b/attach

Request

JSON
{
    "products": [
        "82664d96-6dfd-4343-96b0-05c46f412a51", 
        "82664d96-6dfd-4343-96b0-05c46f412a52", 
        "82664d96-6dfd-4343-96b0-05c46f412a53"
    ]
}

Response

You will receive a 201 response code.


Removing attached products

Use the Fileflare product IDs you wish to remove and send a POST request with the Fileflare asset ID to:

https://app.digital-downloads.com/api/v1/assets/:id/detach

Example

https://app.digital-downloads.com/api/v1/assets/82664d96-6dfd-4343-96b0-05c46f412a5b/detach

Request

JSON
{
    "products": [
        "82664d96-6dfd-4343-96b0-05c46f412a51", 
        "82664d96-6dfd-4343-96b0-05c46f412a53"
    ]
}

Response

You will receive a 201 response code.