Permissions available for an event contact.
Property | Description |
---|---|
adminModePin nullable |
The PIN code for admin mode entry. |
canHidePhotos |
Denotes that event contact can hide photos. |
canTagPhotos |
Denotes that event contact can tag photos. |
eventPhotoTags |
An array of event photo tag objects on this event contact's permissions. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "Permissions available for an event contact.",
"properties": {
"adminModePin": {
"description": "The PIN code for admin mode entry.",
"maxLength": 30,
"minLength": 6,
"nullable": true,
"type": "string"
},
"canHidePhotos": {
"description": "Denotes that event contact can hide photos.",
"type": "boolean"
},
"canTagPhotos": {
"description": "Denotes that event contact can tag photos.",
"type": "boolean"
},
"eventPhotoTags": {
"description": "An array of event photo tag objects on this event contact's\npermissions.",
"items": {
"$ref": "#/components/schemas/EventContactPermissionsEventPhotoTag"
},
"type": "array"
}
},
"title": "Event Contact Permissions",
"type": "object"
}