Requesting Product Types

Get product types

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

Headers

NameTypeDescription

Authorization

string

Authorize to access the API.

[
    {
        "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:

Types

Definitions

FOLDER_PRODUCT

These products are used to organize products into logical hierarchies in the DisasterAWARE client application.

FILE_PRODUCT

Products of this type have an associated multi-media file e.g. PDF, Word Document, associated with them.

TEXT_PRODUCT

These products have a text field that contains a message.

URL_PRODUCT

These products are hyperlinks to external resources e.g. a web page.

Last updated