v1

latestOpenAPI 3.0.2Apache-2.02026-07-142963051.0 MB
Shield information barriers

Create shield information barrier

Creates a shield information barrier to separate individuals/groups within the same firm and prevents confidential information passing between them.

post/shield_information_barriers

Request body

Example request

{
  "enterprise": {
    "id": "1910967",
    "type": "enterprise"
  }
}

Response

Returns a new shield information barrier object.

idstring

The unique identifier for the shield information barrier.

type'shield_information_barrier'

The type of the shield information barrier.

status'draft' | 'pending' | 'disabled' | 'enabled' | 'invalid'

Status of the shield information barrier.

created_atstring date-time

ISO date time string when this shield information barrier object was created.

updated_atstring date-time

ISO date time string when this shield information barrier was updated.

enabled_atstring date-time

ISO date time string when this shield information barrier was enabled.

Example response

{
  "id": "11446498",
  "type": "shield_information_barrier",
  "enterprise": {
    "id": "1910967",
    "type": "enterprise"
  },
  "status": "draft",
  "created_at": "2020-06-26T18:44:45.869Z",
  "created_by": {
    "id": "11446498",
    "type": "user"
  },
  "updated_at": "2020-07-26T18:44:45.869Z",
  "updated_by": {
    "id": "11446498",
    "type": "user"
  },
  "enabled_at": "2020-07-26T18:44:45.869Z",
  "enabled_by": {
    "id": "11446498",
    "type": "user"
  }
}