getPropertiesKeys method
Returns the keys of all properties for an organization. Use this resource when you need to find out what additional properties items have been added to an organization.
Permissions required: Any
Response limitations: Customers can only access properties of organizations of which they are members.
Implementation
Future<PropertyKeys> getPropertiesKeys(String organizationId) async {
return PropertyKeys.fromJson(await _client.send(
'get',
'rest/servicedeskapi/organization/{organizationId}/property',
pathParameters: {
'organizationId': organizationId,
},
));
}