deleteSpaceProperty method

  1. @deprecated
Future<void> deleteSpaceProperty({
  1. required String spaceKey,
  2. required String key,
})

Deprecated, use Confluence's v2 API.

Deletes a space property.

Permissions required: ‘Admin’ permission for the space.

Implementation

@deprecated
Future<void> deleteSpaceProperty(
    {required String spaceKey, required String key}) async {
  await _client.send(
    'delete',
    'wiki/rest/api/space/{spaceKey}/property/{key}',
    pathParameters: {
      'spaceKey': spaceKey,
      'key': key,
    },
  );
}