Back to index
GETgetContent
Summary
Contents API
uuidStringrequiredUUID of content to return |
Responses
200 - OK
Content-Type: application/json, payload type: ContentDetail
404 - Not Found
Example
Request
$ BASE_URL="https://docs.cloudbees.com" $ TOKEN="xxx" $ curl "Authorization: Bearer ${TOKEN}" \ "${BASE_URL}/api/contents/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" \ -H 'Content-Type: application/json'
▼
Response
{ "count": 1, "results": [ { "href": "/api/contents/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "similarity": 0.31, "uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "path": "/docs/cloudbees-ci/latest/client-and-managed-controllers/signature-verification-failed-update-center", "type": "page", "version": "latest", "title": "CloudBees CI - Installation", "lastModified": "2023-10-04T00:40:36.293Z" } ] }
▼