Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GET http://localhost:8090/rest/pagefields/1.0/utility/list/fields

GET http://localhost:8090/rest/pagefields/1.0/utility/list/field

Query parameters:

  • pageId (Number) - Confluence Page IDfieldId (Number) - Confluence Page Field ID
  • xhtml (Boolean) - True / False to convert value to XHTML (Optional)
  • search (String) - Filter fields by name (Optional)

...

Code Block
$ curl -u"user:pass" -XGET \
http://localhost:8090/rest/pagefields/1.0/utility/list/fields/?pageId=98372
{"pageId":98372,"fieldId":8,"fieldName":"customer.manager.name","fieldValue":\
"Swetha Venkat Prasad","lastUpdated":1525004706342}
$


GET http://localhost:8090/rest/pagefields/1.0/utility/list/field

Query parameters:

  • pageId (Number) - Confluence Page ID
  • fieldId (Number) - Confluence Page Field ID

Response: [Status: 200]


Get Page Fields History

GET http://localhost:8090/rest/pagefields/1.0/utility/list/history

...