Create Monitor
Create Monitor
post/api/v1/accessconflict
Invokes the c1.api.accessconflict.v1.AccessConflictService.CreateMonitor method.
Body Parameters
displayNamestring
The displayName field.
descriptionstring
optional
The description field.
notificationConfigemailNotificationsC1APIAccessconflictV1EmailNotificationsslackNotificationsC1APIAccessconflictV1SlackNotificationsNotificationConfig
optional
The NotificationConfig message.
Returns
idstringcreatedAtstringdeletedAtstringdescriptionstringdisplayNamestringenabledbooleanentitlementSetAIdstringentitlementSetBIdstringnotificationConfigNotificationConfigupdatedAtstringConflictMonitor
Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/accessconflict \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY" \
-d '{
"displayName": "displayName"
}'200 Example
{
"id": "id",
"createdAt": "2019-12-27T18:11:19.117Z",
"deletedAt": "2019-12-27T18:11:19.117Z",
"description": "description",
"displayName": "displayName",
"enabled": true,
"entitlementSetAId": "entitlementSetAId",
"entitlementSetBId": "entitlementSetBId",
"notificationConfig": {
"emailNotifications": {
"enabled": true,
"identityUserIds": [
"string"
]
},
"slackNotifications": {
"channelId": "channelId",
"channelName": "channelName",
"enabled": true
}
},
"updatedAt": "2019-12-27T18:11:19.117Z"
}