POST
/
public
/
get-all-products-internal
Get all digital products (including unlisted/draft)
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-all-products-internal \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {
        "productTitleSearchFilter": "<string>",
        "filterByType": [
          "DownloadableProduct"
        ]
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "products": [
          {
            "fermionDigitalProductId": "<string>",
            "type": "DownloadableProduct",
            "name": "<string>",
            "slug": "<string>",
            "link": "<string>",
            "thumbnailUrl": "<string>"
          }
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

data
object[]
required

Response

200 - application/json

API Response Body

output
object
required