Requesting a Product

Get a product details

GET https://api.disasteraware.com/products/{product-id}

Path Parameters

NameTypeDescription

product-id

string

id of a product.

Headers

NameTypeDescription

Authorization

string

Authorize to access the API.

[
    {
        "app_IDs": null,
        "comment_Text": "",
        "data": null,
        "filename": null,
        "hazard_ID": 134583,
        "is_Hidden": "N",
        "org_ID": 0,
        "org_IDs": "",
        "organization_acronym": null,
        "parent_ID": 0,
        "product_ID": 1153909,
        "product_Type": "FOLDER_PRODUCT",
        "security_Flag": "A",
        "title": "Situational Awareness (SA)",
        "uuid": "4dabbee9-ec29-4da1-b1e4-2a6864672c63",
        "user_ID": "DisasterAWARE (Automated)",
        "product_url": null,
        "suffix": "folder",
        "create_Date": "1619972855960",
        "update_Date": "1619972861478",
        "timeline_Date": "1619972861478",
        "update_User": "ddp",
        "geo_Locations": ""
    }
]

See Authorizing Requests page to get your accessToken.

Below is an example request with path parameters product-id=1153909

curl --location --request GET \
  'https://api.disasteraware.com/products/1153909' \
  --header 'Authorization: Bearer your_accessToken'

Last updated