GET
/
v5
/
notifications
/
settings
/
{settingsId}
Retrieve a specific notification settings
curl --request GET \
  --url https://api.kadoa.com/v5/notifications/settings/{settingsId} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "settings": {
      "id": "<string>",
      "workflowId": "<string>",
      "eventType": "<string>",
      "eventConfiguration": {},
      "enabled": true,
      "channels": [
        {
          "id": "<string>",
          "name": "<string>",
          "channelType": "<string>"
        }
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  },
  "status": "<string>",
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

settingsId
string
required

Settings ID

Response

200
application/json

Settings retrieved successfully

The response is of type object.