GET api/ManageUsers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

AdvancedPermissionsDTO
NameDescriptionTypeAdditional information
AllowMACD

boolean

None.

AllowProvisioning

boolean

None.

AllowTicketing

boolean

None.

AllowBilling

boolean

None.

AllowAny

boolean

None.

AllowAdminOnly

boolean

None.

MACDConfig

Dictionary of string [key] and boolean [value]

None.

ProvisioningConfig

Dictionary of string [key] and boolean [value]

None.

TicketingConfig

byte

None.

BillingConfig

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "AllowMACD": true,
  "AllowProvisioning": true,
  "AllowTicketing": true,
  "AllowBilling": true,
  "AllowAny": true,
  "AllowAdminOnly": false,
  "MACDConfig": {
    "sample string 1": true,
    "sample string 3": true
  },
  "ProvisioningConfig": {
    "sample string 1": true,
    "sample string 3": true
  },
  "TicketingConfig": 64,
  "BillingConfig": true
}

application/xml, text/xml

Sample:
<AdvancedPermissionsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSPApi.DTO.Group">
  <AllowBilling>true</AllowBilling>
  <AllowMACD>true</AllowMACD>
  <AllowProvisioning>true</AllowProvisioning>
  <AllowTicketing>true</AllowTicketing>
  <BillingConfig>true</BillingConfig>
  <MACDConfig xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringboolean>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>true</d2p1:Value>
    </d2p1:KeyValueOfstringboolean>
    <d2p1:KeyValueOfstringboolean>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>true</d2p1:Value>
    </d2p1:KeyValueOfstringboolean>
  </MACDConfig>
  <ProvisioningConfig xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringboolean>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>true</d2p1:Value>
    </d2p1:KeyValueOfstringboolean>
    <d2p1:KeyValueOfstringboolean>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>true</d2p1:Value>
    </d2p1:KeyValueOfstringboolean>
  </ProvisioningConfig>
  <TicketingConfig>64</TicketingConfig>
</AdvancedPermissionsDTO>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"AllowMACD":true,"AllowProvisioning":true,"AllowTicketing":true,"AllowBilling":true,"AllowAny":true,"AllowAdminOnly":false,"MACDConfig":{"sample string 1":true,"sample string 3":true},"ProvisioningConfig":{"sample string 1":true,"sample string 3":true},"TicketingConfig":64,"BillingConfig":true});