| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

### Notification Template Details

- **identifier**  
  - uuid (required)  
  - defaultNotificationTemplate unique identifier

- **companyUuid**  
  - uuid (required)

- **campaignTemplateUuid**  
  - uuid

- **enabled**  
  - boolean (true/false)

- **reminderLimit**  
  - number

- **mode**  
  - string (enum, required)  
  - Allowed: `EmailV1`, `SmsV1`

- **notificationCategory**  
  - string (enum, required)  
  - Allowed: `activation`, `deadline`, `nudgeIncomplete`, `nudgeNonRespondants`, `reminder`

- **recurringEnabled**  
  - boolean (true/false)

- **recurringIntervalDays**  
  - number  
  
- **sendDaysAfter**  
  - number  
  
- **sendDaysBefore**  
  - number

# cURL Example

```bash
curl --request PATCH \
     --url https://services.fountain.com/api/servicepulse/defaultNotificationTemplates/identifier \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "mode": "EmailV1",
  "notificationCategory": "activation"
}
'
```

### Response Status Codes

- `202` - Updated defaultNotificationTemplate. Wrapped in a JsonAPI root response.
- `500` - Default error response.
