...
Status | ||||
---|---|---|---|---|
|
Code Block | ||
---|---|---|
| ||
curl --request GET \
--url 'https://{your-domain}/wiki/api/v2/spaces?key={space-key}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' |
Status | ||||
---|---|---|---|---|
|
Code Block | ||
---|---|---|
| ||
curl --request GET \ --url 'https://{your-domain}/wiki/api/v2/spaces/{space-id}/properties?key=spacefield-{Property Name}' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json' |
Status | ||||
---|---|---|---|---|
|
Code Block | ||
---|---|---|
| ||
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": "--testing--", "version": { "number": 10 } }' |
...