curl --request GET \
--url https://api.comm.com/api/v1/platform/notifications/types \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"type": "<string>",
"categories": [
"<string>"
],
"uniq": "<string>",
"title": "<string>",
"reason": "<string>",
"suppress": "<string>"
}
]
}
curl --request GET \
--url https://api.comm.com/api/v1/platform/notifications/types \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"type": "<string>",
"categories": [
"<string>"
],
"uniq": "<string>",
"title": "<string>",
"reason": "<string>",
"suppress": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.