Simple app to manage or centralize the space related common metadata, properties, variables, strings, tokens in fields for reuse, tracking and automation. These fields can be accessed or shared among many confluence pages via macro "Space fields".

Features:

Confluence Cloud Space Properties REST API documentation

curl --request PUT \
  --url 'https://{your-domain}/wiki/api/v2/spaces/{space-id}/properties/{property-id}' \
  --user 'email@example.com:<api_token>' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "ilaesolution-space-properties",
  "value": {"key1":"value1", "key2":"value2", "key3":"value3"},
  "version": {
    "number": 10
  }
}'

Please refer Space Fields Page to get Space ID and Property ID.