| Method | HTTP request | Description |
|---|---|---|
| get_by_path | GET /attributecategories | Retrieve an attribute category by path. |
| get | GET /attributecategories/{webId} | Retrieve an attribute category. |
| update | PATCH /attributecategories/{webId} | Update an attribute category by replacing items in its definition. |
| delete | DELETE /attributecategories/{webId} | Delete an attribute category. |
| get_security | GET /attributecategories/{webId}/security | Get the security information of the specified security item associated with the attribute category for a specified user. |
| get_security_entries | GET /attributecategories/{webId}/securityentries | Retrieve the security entries associated with the attribute category based on the specified criteria. By default, all security entries for this attribute category are returned. |
| create_security_entry | POST /attributecategories/{webId}/securityentries | Create a security entry owned by the attribute category. |
| get_security_entry_by_name | GET /attributecategories/{webId}/securityentries/{name} | Retrieve the security entry associated with the attribute category with the specified name. |
| update_security_entry | PUT /attributecategories/{webId}/securityentries/{name} | Update a security entry owned by the attribute category. |
| delete_security_entry | DELETE /attributecategories/{webId}/securityentries/{name} | Delete a security entry owned by the attribute category. |
get_by_path('path', 'selected_fields', 'web_id_type')
Retrieve an attribute category by path.
| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | The path to the target attribute category.. | [required] |
| selected_fields | str | List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. | [optional] |
| web_id_type | str | Optional parameter. Used to specify the type of WebID. Useful for URL brevity and other special cases. Default is the value of the configuration item "WebIDType".. | [optional] |
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
get('web_id', 'selected_fields', 'web_id_type')
Retrieve an attribute category.
| Name | Type | Description | Notes |
|---|---|---|---|
| web_id | str | The id of the attribute category.. | [required] |
| selected_fields | str | List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. | [optional] |
| web_id_type | str | Optional parameter. Used to specify the type of WebID. Useful for URL brevity and other special cases. Default is the value of the configuration item "WebIDType".. | [optional] |
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
update('web_id', 'category')
Update an attribute category by replacing items in its definition.
| Name | Type | Description | Notes |
|---|---|---|---|
| web_id | str | The ID of the attribute category to update.. | [required] |
| category | PIAttributeCategory | A partial attribute category containing the desired changes.. | [required] |
None
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
delete('web_id')
Delete an attribute category.
| Name | Type | Description | Notes |
|---|---|---|---|
| web_id | str | The ID of the attribute category to delete.. | [required] |
None
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
get_security('web_id', 'user_identity', 'force_refresh', 'selected_fields', 'web_id_type')
Get the security information of the specified security item associated with the attribute category for a specified user.
| Name | Type | Description | Notes |
|---|---|---|---|
| web_id | str | The ID of the attribute category for the security to be checked.. | [required] |
| user_identity | list[str] | The user identity for the security information to be checked. Multiple security identities may be specified with multiple instances of the parameter. If the parameter is not specified, only the current user's security rights will be returned.. | [required] |
| force_refresh | bool | Indicates if the security cache should be refreshed before getting security information. The default is 'false'.. | [optional] |
| selected_fields | str | List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. | [optional] |
| web_id_type | str | Optional parameter. Used to specify the type of WebID. Useful for URL brevity and other special cases. Default is the value of the configuration item "WebIDType".. | [optional] |
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
get_security_entries('web_id', 'name_filter', 'selected_fields', 'web_id_type')
Retrieve the security entries associated with the attribute category based on the specified criteria. By default, all security entries for this attribute category are returned.
| Name | Type | Description | Notes |
|---|---|---|---|
| web_id | str | The ID of the attribute category.. | [required] |
| name_filter | str | The name query string used for filtering security entries. The default is no filter.. | [optional] |
| selected_fields | str | List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. | [optional] |
| web_id_type | str | Optional parameter. Used to specify the type of WebID. Useful for URL brevity and other special cases. Default is the value of the configuration item "WebIDType".. | [optional] |
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
create_security_entry('web_id', 'security_entry', 'apply_to_children', 'web_id_type')
Create a security entry owned by the attribute category.
| Name | Type | Description | Notes |
|---|---|---|---|
| web_id | str | The ID of the attribute category where the security entry will be created.. | [required] |
| security_entry | PISecurityEntry | The new security entry definition. The full list of allow and deny rights must be supplied.. | [required] |
| apply_to_children | bool | If false, the new access permissions are only applied to the associated object. If true, the access permissions of children with any parent-child reference types will change when the permissions on the primary parent change.. | [optional] |
| web_id_type | str | Optional parameter. Used to specify the type of WebID. Useful for URL brevity and other special cases. Default is the value of the configuration item "WebIDType".. | [optional] |
None
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
get_security_entry_by_name('name', 'web_id', 'selected_fields', 'web_id_type')
Retrieve the security entry associated with the attribute category with the specified name.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the security entry. For every backslash character () in the security entry name, replace with asterisk (). As an example, use domainusername instead of domain\username.. | [required] |
| web_id | str | The ID of the attribute category.. | [required] |
| selected_fields | str | List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. | [optional] |
| web_id_type | str | Optional parameter. Used to specify the type of WebID. Useful for URL brevity and other special cases. Default is the value of the configuration item "WebIDType".. | [optional] |
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
update_security_entry('name', 'web_id', 'security_entry', 'apply_to_children')
Update a security entry owned by the attribute category.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the security entry.. | [required] |
| web_id | str | The ID of the attribute category where the security entry will be updated.. | [required] |
| security_entry | PISecurityEntry | The new security entry definition. The full list of allow and deny rights must be supplied or they will be removed.. | [required] |
| apply_to_children | bool | If false, the new access permissions are only applied to the associated object. If true, the access permissions of children with any parent-child reference types will change when the permissions on the primary parent change.. | [optional] |
None
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]
delete_security_entry('name', 'web_id', 'apply_to_children')
Delete a security entry owned by the attribute category.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the security entry. For every backslash character () in the security entry name, replace with asterisk (). As an example, use domainusername instead of domain\username.. | [required] |
| web_id | str | The ID of the attribute category where the security entry will be deleted.. | [required] |
| apply_to_children | bool | If false, the new access permissions are only applied to the associated object. If true, the access permissions of children with any parent-child reference types will change when the permissions on the primary parent change.. | [optional] |
None
[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]