POST api/PBI_role/role

Request Information

URI Parameters

None.

Body Parameters

PBI_RoleViewModel
NameDescriptionTypeAdditional information
active

boolean

None.

code

string

Required

customer_ID

globally unique identifier

None.

customerName

string

None.

id

globally unique identifier

None.

names

Dictionary of string [key] and string [value]

Required

permissions

Collection of PBI_PermissionsViewModel

Required

site_ID

globally unique identifier

Required

siteName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "active": true,
  "code": "sample string 2",
  "customer_ID": "130da2d0-a0c0-4a33-b12b-ff4cbb4baba8",
  "customerName": "sample string 4",
  "id": "7c7c1e93-53f8-4eb5-84f9-e7d9ac1eddec",
  "names": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  },
  "permissions": [
    {
      "id": "d3f75ae9-ffc1-4f40-b5ed-d25841a25db9",
      "active": true,
      "foreign_ID": "6018fe8c-7688-46ab-bc8e-ebed09f832ee",
      "foreign_Label": "sample string 3",
      "type": 1
    },
    {
      "id": "d3f75ae9-ffc1-4f40-b5ed-d25841a25db9",
      "active": true,
      "foreign_ID": "6018fe8c-7688-46ab-bc8e-ebed09f832ee",
      "foreign_Label": "sample string 3",
      "type": 1
    }
  ],
  "site_ID": "637f6452-06ec-408d-aa32-d8c775cb8f23",
  "siteName": "sample string 8"
}

application/xml, text/xml

Sample:
<PBI_RoleViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <active>true</active>
  <code>sample string 2</code>
  <customerName>sample string 4</customerName>
  <customer_ID>130da2d0-a0c0-4a33-b12b-ff4cbb4baba8</customer_ID>
  <id>7c7c1e93-53f8-4eb5-84f9-e7d9ac1eddec</id>
  <names xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>sample string 2</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>sample string 4</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </names>
  <permissions>
    <PBI_PermissionsViewModel>
      <Active>true</Active>
      <Foreign_ID>6018fe8c-7688-46ab-bc8e-ebed09f832ee</Foreign_ID>
      <Foreign_Label>sample string 3</Foreign_Label>
      <ID>d3f75ae9-ffc1-4f40-b5ed-d25841a25db9</ID>
      <type>SiteCustomer</type>
    </PBI_PermissionsViewModel>
    <PBI_PermissionsViewModel>
      <Active>true</Active>
      <Foreign_ID>6018fe8c-7688-46ab-bc8e-ebed09f832ee</Foreign_ID>
      <Foreign_Label>sample string 3</Foreign_Label>
      <ID>d3f75ae9-ffc1-4f40-b5ed-d25841a25db9</ID>
      <type>SiteCustomer</type>
    </PBI_PermissionsViewModel>
  </permissions>
  <siteName>sample string 8</siteName>
  <site_ID>637f6452-06ec-408d-aa32-d8c775cb8f23</site_ID>
</PBI_RoleViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

globally unique identifier

Response Formats

application/json, text/json

Sample:
"80c75295-2ed6-4874-ae09-fd799aaedc1a"

application/xml, text/xml

Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">80c75295-2ed6-4874-ae09-fd799aaedc1a</guid>