Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

These endpoints allow users to manage roles on a network.

Base URL for these endpoints:  https://api.bsn.cloud/2022/06/REST/Roles

_________________________________________________________________________

GET /

Returns a list of roles on a network

Required Scope Token

bsn.api.main.roles.retrieve

______________________________________________________________

Query String Parameters

marker string optional

A value specifying which page to retrieve. This value is useful if the isTruncated entry in the response body of the previous GET call indicates that the number of role instances exceeds the pageSize.

This parameter is only required

...

 if you need more elements in the paged list than the pageSize (100).

pageSize int optional

The maximum number of role instances that can be contained in the response body. This

...

defaults to the maximum allowed page size (100).

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • marker value is set to the [PagedList].[NextMarker] property value from the previous BSN.cloud API response.

  • pageSize is set to 1

Code Block
GET /2022/06/REST/Roles/?marker=4kfak45jfk0915NVe&pageSize=1 HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response Body

200: Returns a paged list of Role Entity instances on a network. This will return not more than 100 entities along with the information necessary to return any other remaining pages.

Example

Code Block
languagejson
{
  "items": [
    {
      "id": 12345,
      "isCustom": true,
      "name": "Custom Role 20231115",
      "description": "",
      "creationDate": "2023-11-15T19:14:10.087Z",
      "userCount": 0,
      "users": null,
      "permissions": [
        {
          "entityId": null,
          "operationUID": "d430853f-c05f-61b4-d137-0237a6984032",
          "principal": {
            "name": "Custom Role 20231115",
            "isCustom": true,
            "type": "Role",
            "id": 12345
          },
          "isFixed": false,
          "isInherited": false,
          "isAllowed": false,
          "creationDate": "2023-11-15T19:14:10.097Z"
        }
      ]
    }
  ],
  "totalItemCount": 8,
  "matchingItemCount": 8,
  "pageSize": 1,
  "nextMarker": "Cu20afjksdUN78q932",
  "isTruncated": true,
  "sortExpression": "[Role].[Name] ASC",
  "filterExpression": ""
}

Failure Response

300:

...

 The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

...

Endpoints:

...

POST /

Creates a role on a network

Required Scope Token

bsn.api.main.roles.create

______________________________________________________________

Request Body

The Role Entity

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

Code Block
POST /2022/06/REST/Roles/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 962

This is the example request body:

Code Block
languagejson
{
   "id": 0,
   "isCustom": true,
   "name": "Custom Role 20231115",
   "description": "",
   "creationDate": "0001-01-01T00:00:00",
   "userCount": 0,
   "users": null,
   "permissions": []
}

______________________________________________________________

Success Response Body

201: Returns the Role Entity created and referenced by the Uri (given by the Location header field) in the response. 

Example

Code Block
languagejson
{
   "id": 12345,
   "isCustom": true,
   "name": "Custom Role 20231115",
   "description": "",
   "creationDate": "2023-11-15T19:14:10.087Z",
   "userCount": 0,
   "users": null,
   "permissions": []
}

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)

5XX: Any 500 code is an internal server error

GET /{id:int}/ 

Returns a specified role on a network

Required Scope Token

bsn.api.main.roles.retrieve

______________________________________________________________

Segment

id int

A unique identifier for a role

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • id is set to 12345

Code Block
GET /2022/06/REST/Roles/12345/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response with Body

200: Returns the Role Entity

Example

This is an example of a 200 level response:

Code Block
languagejson
{
  "id": 12345,
  "isCustom": true,
  "name": "Custom Role 20231115",
  "description": "",
  "creationDate": "2023-11-15T19:14:10.087Z",
  "userCount": 1,
  "users": [
    {
      "login": "JaneDoe@brightsign.biz",
      "type": "User",
      "id": 54321
    }
  ],
  "permissions": [
    {
      "entityId": null,
      "operationUID": "3a67ae65-aa94-477b-acab-5291347cef2c",
      "principal": {
        "name": "Custom Role 20231115",
        "isCustom": true,
        "type": "Role",
        "id": 12345
      },
      "isFixed": false,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2023-12-01T16:37:19.553Z"
    }
  ]
}

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

PUT /{id:int}/ 

Updates the specified role on a network

Required Scope Token

bsn.api.main.roles.update

______________________________________________________________

Segment

id int 

A unique identifier for a role 

______________________________________________________________

Request Body

The Role Entity

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • id is set to 12345

Code Block
PUT /2022/06/REST/Roles/12345/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 756

This is the example request body:

Code Block
languagejson
{
   "id": 0,
   "isCustom": true,
   "name": "Custom Role 20231115",
   "description": "",
   "creationDate": "0001-01-01T00:00:00",
   "userCount": 0,
   "users": null,
   "permissions": [
    {
      "entityId": null,
      "operationUID": "3a67ae65-aa94-477b-acab-5291347cef2c",
      "principal": {
        "name": "Custom Role 20231115",
        "isCustom": true,
        "type": "Role",
        "id": 12345
      },
      "isFixed": false,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "0001-01-01T00:00:00"
    }
  ]
}

______________________________________________________________

Success Response

204: The role was successfully updated.

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)

5XX: Any 500 code is an internal server error

DELETE /{id:int}/ 

Removes the specified custom role on a network

Required Scope Token

bsn.api.main.roles.delete

______________________________________________________________

Segment

id int

A unique identifier for a custom role

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • id is set to 12345

Code Block
DELETE /2022/06/REST/Roles/12345/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response

204: The specified role has been removed

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules (for example, if the user attempts to delete a system role).

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

GET /{name}/ 

Returns the specified role on a network

Required Scope Token

bsn.api.main.roles.retrieve

______________________________________________________________

Segment

name string 

The name of the role

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • name is set to Custom Role 20231115

Code Block
GET /2022/06/REST/Roles/Custom Role 20231115/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response with Body

200: Returns the Role Entity

Example

This is an example of a 200 level response:

Code Block
languagejson
{
  "id": 12345,
  "isCustom": true,
  "name": "Custom Role 20231115",
  "description": "",
  "creationDate": "2023-11-15T19:14:10.087Z",
  "userCount": 1,
  "users": [
    {
      "login": "JaneDoe@brightsign.biz",
      "type": "User",
      "id": 54321
    }
  ],
  "permissions": [
    {
      "entityId": null,
      "operationUID": "3a67ae65-aa94-477b-acab-5291347cef2c",
      "principal": {
        "name": "Custom Role 20231115",
        "isCustom": true,
        "type": "Role",
        "id": 12345
      },
      "isFixed": false,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2023-12-01T16:37:19.553Z"
    }
  ]
}

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

PUT /{name}/ 

Updates the specified role on a network

Required Scope Token

bsn.api.main.roles.update

______________________________________________________________

Segment

name string 

The name of the role

______________________________________________________________

Request Body

The Role Entity

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • name is set to Custom Role 20231115

Code Block
PUT /2022/06/REST/Roles/Custom Role 20231115/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 756

This is the example request body:

Code Block
languagejson
{
   "id": 0,
   "isCustom": true,
   "name": "Custom Role 20231115",
   "description": "",
   "creationDate": "0001-01-01T00:00:00",
   "userCount": 0,
   "users": null,
   "permissions": [
    {
      "entityId": null,
      "operationUID": "3a67ae65-aa94-477b-acab-5291347cef2c",
      "principal": {
        "name": "Custom Role 20231115",
        "isCustom": true,
        "type": "Role",
        "id": 12345
      },
      "isFixed": false,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "0001-01-01T00:00:00"
    }
  ]
}

______________________________________________________________

Success Response

204: The role was successfully updated.

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)

5XX: Any 500 code is an internal server error

DELETE /{name}/ 

Removes the specified custom role on a network

Required Scope Token

bsn.api.main.roles.delete

______________________________________________________________

Segment

name string 

The name of the custom role

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • name is set to Custom Role 20231116

Code Block
DELETE /2022/06/REST/Roles/Custom Role 20231116/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response

204: The specified role has been removed

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid, or it is rejected in accordance with the business rules (for example, if the user attempts to delete a system role).

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

GET /Operations/ 

Returns operational permissions granted to roles for specific business operations

Required Scope Token

bsn.api.main.operations.retrieve

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

Code Block
GET /2022/06/REST/Roles/Operations/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response Body

200: Returns theBusiness Operations Entity

Example

Expand
titleExpand to see response information:
Code Block
languagejson
{
  "uid": "027a307a-a29d-d674-a935-da468ef03091",
  "singularName": "Full Control",
  "pluralName": "Role (Full Control)",
  "fullName": "Role (Full Control)",
  "targetEntity": "Role",
  "appliance": "Instance, Collection",
  "parent": null,
  "descendants": [
    {
      "uid": "0b943c8f-f889-2074-f152-014cff8c2e5d",
      "singularName": "View Role",
      "pluralName": "View Roles",
      "fullName": "Role (Full Control) - View Roles",
      "targetEntity": "Role",
      "appliance": "Instance, Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "0b943c8f-f889-2074-f152-014cff8c2e5d",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "0b943c8f-f889-2074-f152-014cff8c2e5d",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "0b943c8f-f889-2074-f152-014cff8c2e5d",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "0b943c8f-f889-2074-f152-014cff8c2e5d",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "0b943c8f-f889-2074-f152-014cff8c2e5d",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "0b943c8f-f889-2074-f152-014cff8c2e5d",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "f7d768be-c485-b4d4-5d98-bc80c329922c",
      "singularName": "View Users",
      "pluralName": "View Users",
      "fullName": "Role (Full Control) - View Users",
      "targetEntity": "Role",
      "appliance": "Instance, Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "f7d768be-c485-b4d4-5d98-bc80c329922c",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "f7d768be-c485-b4d4-5d98-bc80c329922c",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "f7d768be-c485-b4d4-5d98-bc80c329922c",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "f7d768be-c485-b4d4-5d98-bc80c329922c",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "f7d768be-c485-b4d4-5d98-bc80c329922c",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "f7d768be-c485-b4d4-5d98-bc80c329922c",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
      "singularName": "Create Role",
      "pluralName": "Create Role",
      "fullName": "Role (Full Control) - Create Role",
      "targetEntity": "Role",
      "appliance": "Instance, Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "f2293374-b9bb-2a04-b192-e1e3fb9b013a",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "5cd2960f-5361-a504-81bf-9496384d1c24",
      "singularName": "Add User",
      "pluralName": "Add User",
      "fullName": "Role (Full Control) - Add User",
      "targetEntity": "Role",
      "appliance": "Instance, Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "5cd2960f-5361-a504-81bf-9496384d1c24",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "5cd2960f-5361-a504-81bf-9496384d1c24",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "5cd2960f-5361-a504-81bf-9496384d1c24",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "5cd2960f-5361-a504-81bf-9496384d1c24",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "5cd2960f-5361-a504-81bf-9496384d1c24",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "5cd2960f-5361-a504-81bf-9496384d1c24",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
      "singularName": "Remove User",
      "pluralName": "Remove User",
      "fullName": "Role (Full Control) - Remove User",
      "targetEntity": "Role",
      "appliance": "Instance, Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "a81a32c6-4291-05c4-71a2-6f899dc6da15",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
      "singularName": "Edit Permissions",
      "pluralName": "Edit Permissions",
      "fullName": "Role (Full Control) - Edit Permissions",
      "targetEntity": "Role",
      "appliance": "Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "b38189a5-84d8-fba4-bd56-f71a5dfba6e6",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
      "singularName": "Update Role",
      "pluralName": "Update Role",
      "fullName": "Role (Full Control) - Update Role",
      "targetEntity": "Role",
      "appliance": "Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "0a9b49c6-74a4-2834-15c6-606964e01f8b",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    },
    {
      "uid": "30af3135-5514-2f64-75e1-d31e074c16d5",
      "singularName": "Delete Role",
      "pluralName": "Delete Role",
      "fullName": "Role (Full Control) - Delete Role",
      "targetEntity": "Role",
      "appliance": "Instance, Collection",
      "parent": {
        "uid": "027a307a-a29d-d674-a935-da468ef03091",
        "singularName": "Full Control",
        "pluralName": "Role (Full Control)",
        "fullName": "Role (Full Control)",
        "targetEntity": "Role",
        "appliance": "Instance, Collection",
        "parent": null,
        "descendants": null,
        "permissions": null
      },
      "descendants": [],
      "permissions": [
        {
          "entityId": null,
          "operationUID": "30af3135-5514-2f64-75e1-d31e074c16d5",
          "principal": {
            "name": "Administrators",
            "isCustom": false,
            "type": "Role",
            "id": 1
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": true,
          "creationDate": "2024-01-03T01:44:13.16Z"
        },
        {
          "entityId": null,
          "operationUID": "30af3135-5514-2f64-75e1-d31e074c16d5",
          "principal": {
            "name": "General Managers",
            "isCustom": false,
            "type": "Role",
            "id": 2
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.283Z"
        },
        {
          "entityId": null,
          "operationUID": "30af3135-5514-2f64-75e1-d31e074c16d5",
          "principal": {
            "name": "Creators",
            "isCustom": false,
            "type": "Role",
            "id": 3
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.38Z"
        },
        {
          "entityId": null,
          "operationUID": "30af3135-5514-2f64-75e1-d31e074c16d5",
          "principal": {
            "name": "Publishers",
            "isCustom": false,
            "type": "Role",
            "id": 4
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.45Z"
        },
        {
          "entityId": null,
          "operationUID": "30af3135-5514-2f64-75e1-d31e074c16d5",
          "principal": {
            "name": "Network Managers",
            "isCustom": false,
            "type": "Role",
            "id": 5
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.62Z"
        },
        {
          "entityId": null,
          "operationUID": "30af3135-5514-2f64-75e1-d31e074c16d5",
          "principal": {
            "name": "Viewers",
            "isCustom": false,
            "type": "Role",
            "id": 6
          },
          "isFixed": true,
          "isInherited": true,
          "isAllowed": false,
          "creationDate": "2024-01-03T01:44:13.803Z"
        }
      ]
    }
  ],
  "permissions": [
    {
      "entityId": null,
      "operationUID": "027a307a-a29d-d674-a935-da468ef03091",
      "principal": {
        "name": "Administrators",
        "isCustom": false,
        "type": "Role",
        "id": 1
      },
      "isFixed": true,
      "isInherited": false,
      "isAllowed": true,
      "creationDate": "2024-01-03T01:44:13.16Z"
    },
    {
      "entityId": null,
      "operationUID": "027a307a-a29d-d674-a935-da468ef03091",
      "principal": {
        "name": "General Managers",
        "isCustom": false,
        "type": "Role",
        "id": 2
      },
      "isFixed": true,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2024-01-03T01:44:13.283Z"
    },
    {
      "entityId": null,
      "operationUID": "027a307a-a29d-d674-a935-da468ef03091",
      "principal": {
        "name": "Creators",
        "isCustom": false,
        "type": "Role",
        "id": 3
      },
      "isFixed": true,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2024-01-03T01:44:13.38Z"
    },
    {
      "entityId": null,
      "operationUID": "027a307a-a29d-d674-a935-da468ef03091",
      "principal": {
        "name": "Publishers",
        "isCustom": false,
        "type": "Role",
        "id": 4
      },
      "isFixed": true,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2024-01-03T01:44:13.45Z"
    },
    {
      "entityId": null,
      "operationUID": "027a307a-a29d-d674-a935-da468ef03091",
      "principal": {
        "name": "Network Managers",
        "isCustom": false,
        "type": "Role",
        "id": 5
      },
      "isFixed": true,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2024-01-03T01:44:13.62Z"
    },
    {
      "entityId": null,
      "operationUID": "027a307a-a29d-d674-a935-da468ef03091",
      "principal": {
        "name": "Viewers",
        "isCustom": false,
        "type": "Role",
        "id": 6
      },
      "isFixed": true,
      "isInherited": false,
      "isAllowed": false,
      "creationDate": "2024-01-03T01:44:13.803Z"
    }
  ]
}

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

GET /{id:int}/Permissions/ 

Includes object permissions granted to a given role

Required Scope Token

bsn.api.main.roles.retrieve

______________________________________________________________

Segment

id int

A unique identifier for a role

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • id is set to 12345

Code Block
GET /2022/06/REST/Roles/12345/Permissions/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response Body

200: Returns an array of Permission entities granted to a given role

Example

Code Block
languagejson
[
  {
    "entityId": null,
    "operationUID": "b41ac545-d505-7014-edde-51bc4c0d21a0",
    "principal": {
      "name": "Creators",
      "isCustom": false,
      "type": "Role",
      "id": 12345
    },
    "isFixed": true,
    "isInherited": false,
    "isAllowed": false,
    "creationDate": "2020-08-17T20:49:46.35Z"
  }
]

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

POST /{id:int}/Permissions/ 

Add permissions for specified roles on a network

Required Scope Token

bsn.api.main.roles.update

______________________________________________________________

Segment

id int 

A unique identifier for a role

______________________________________________________________

Request Body

An array of Permission entities

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • id is set to 12345

Code Block
POST /2022/06/REST/Roles/12345/Permissions/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 292

This is the example request body:

Code Block
languagejson
{
  "entityId": null,
  "operationUID": "b41ac545-d505-7014-edde-51bc4c0d21a0",
  "principal": {
    "name": "Creators",
    "isCustom": false,
    "type": "Role",
    "id": 12345
  },
  "isFixed": false,
  "isInherited": false,
  "isAllowed": false,
  "creationDate": "0001-01-01T00:00:00"
}

______________________________________________________________

Success Response

204: The permissions were successfully added to the specified role

Failure Response

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)

5XX: Any 500 code is an internal server error

DELETE /{id:int}/Permissions/ 

Removes permissions for specified roles on a network

Required Scope Token

bsn.api.main.roles.delete

______________________________________________________________

Segment

id int

A unique identifier for a role

______________________________________________________________

Request Body

An array of Permission entities

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • id is set to 12345

Code Block
DELETE /2022/06/REST/Roles/12345/Permissions/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 359

This is the example request body:

Code Block
languagejson
{
  "entityId": null,
  "operationUID": "b41ac545-d505-7014-edde-51bc4c0d21a0",
  "principal": {
    "name": "Creators",
    "isCustom": false,
    "type": "Role",
    "id": 12345
  },
  "isFixed": false,
  "isInherited": false,
  "isAllowed": false,
  "creationDate": "0001-01-01T00:00:00"
}

______________________________________________________________

Success Response

204: The specified permissions have been removed from the role

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

GET /{name}/Permissions/ 

Includes object permissions granted to a given role.

Required Scope Token

bsn.api.main.roles.retrieve

______________________________________________________________

Segment

name string

The name of the role

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • name is set to Creators

Code Block
GET /2022/06/REST/Roles/Creators/Permissions/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate

______________________________________________________________

Success Response Body

200: Returns an array of Permission entities granted to a given role

Example

Code Block
languagejson
[
  {
    "entityId": null,
    "operationUID": "b41ac545-d505-7014-edde-51bc4c0d21a0",
    "principal": {
      "name": "Creators",
      "isCustom": false,
      "type": "Role",
      "id": 12345
    },
    "isFixed": true,
    "isInherited": false,
    "isAllowed": false,
    "creationDate": "2020-08-17T20:49:46.35Z"
  }
]

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request is malformed and therefore invalid

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error

POST /{name}/Permissions/ 

Add permissions for specified roles on a network

Required Scope Token

bsn.api.main.roles.update

______________________________________________________________

Segment

name  string

The name of the role

______________________________________________________________

Request Body

An array of Permission entities

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • name is set to Creators

Code Block
POST /2022/06/REST/Roles/Creators/Permissions/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 292

This is the example request body:

Code Block
languagejson
{
  "entityId": null,
  "operationUID": "b41ac545-d505-7014-edde-51bc4c0d21a0",
  "principal": {
    "name": "Creators",
    "isCustom": false,
    "type": "Role",
    "id": 12345
  },
  "isFixed": false,
  "isInherited": false,
  "isAllowed": false,
  "creationDate": "0001-01-01T00:00:00"
}

______________________________________________________________

Success Response

204: The permissions were successfully added to the specified role

Failure Response

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method

404: The server cannot find the requested resource (the path does not exist) 

415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)

5XX: Any 500 code is an internal server error

DELETE /{name}/Permissions/ 

Removes permissions for specified role on a network

Required Scope Token

bsn.api.main.roles.delete

______________________________________________________________

Segment

name string

The name of the role

______________________________________________________________

Request Body

An array of Permission entities

______________________________________________________________

Request Example

The example request parameters and headers are set as follows:

  • name is set to Creators

Code Block
DELETE /2022/06/REST/Roles/Creators/Permissions/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{UserAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 359

This is the example request body:

Code Block
languagejson
{
  "entityId": null,
  "operationUID": "b41ac545-d505-7014-edde-51bc4c0d21a0",
  "principal": {
    "name": "Creators",
    "isCustom": false,
    "type": "Role",
    "id": 12345
  },
  "isFixed": false,
  "isInherited": false,
  "isAllowed": false,
  "creationDate": "0001-01-01T00:00:00"
}

______________________________________________________________

Success Response

204: The specified permissions have been removed from the role

Failure Response

300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)

400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules

401: The access token is invalid or not specified

403: The supplied access token, though valid, doesn't provide access to this method 

404: The server cannot find the requested resource (the path does not exist)

406: The server cannot return the data representation that you requested (as specified in the "Accept" header)

5XX: Any 500 code is an internal server error