Create a Role (Deprecated)
Select
SaaS
Customer Managed
deprecated
This endpoint has been deprecated and may be removed in future versions of the API.
This operation creates a role.
Header Parameters
- Content-Type string required
Possible values: [
application/xml
]
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Create a Role
Schema
response object[]
errorString stringerrorCode integerentity object
roleName stringroleId integerflags object
disabled boolean
{
"response": [
{
"errorString": "string",
"errorCode": 0,
"entity": {
"roleName": "string",
"roleId": 0,
"flags": {
"disabled": true
}
}
}
]
}
{
"response": [
{
"errorString": "Successful",
"errorCode": 0,
"entity": {
"roleName": "TestRole",
"roleId": 33,
"flags": {
"disabled": false
}
}
}
]
}
Loading...