Requesting Product Types

Get product types

GET https://api.disasteraware.com/products/types

Headers

[
    {
        "type": "FOLDER_PRODUCT",
        "description": "Termination"
    },
    {
        "type": "FILE_PRODUCT",
        "description": "Products of this type have an associated multi-media file e.g. PDF, Word Document, associated to them."
    },
    {
        "type": "TEXT_PRODUCT",
        "description": "These products have a text field that contains a message."
    },
    {
        "type": "URL_PRODUCT",
        "description": "These products are hyperlinks to external resources e.g. a web page."
    }
]

See Authorizing Requests page to get your accessToken.

curl --location --request GET \
  'https://api.disasteraware.com/products/types'

A product will come in one of the four following types:

Last updated