Fetch an entry
Fetches one channel entry. Public site-token reads receive 404 when a publishable entry is hidden by publication state. Management-token reads, including master tokens and user-backed bearer tokens, use management publication visibility. Non-master requests are ACL-filtered; master tokens apply ACL filtering only when use_acl=true.
Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.
In: header
Identifier of the site context when authenticating with a personal access token.
In: header
Path Parameters
Channel identifier
Entry identifier
Query Parameters
When true, applies customer ACL filtering to master-token requests.
Header Parameters
Customer session token used for channel and entry ACL filtering. X-Nimbu-Session-Token is also accepted.
Response Body
application/json
curl -X GET "https://example.com/channels/string/entries/string"{
"id": "string",
"url": "http://example.com",
"short_id": "string",
"slug": "string",
"channel": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"title_field_value": "string",
"_status": "draft",
"_publish_at": "2019-08-24T14:15:22Z",
"_acl": {
"property1": {
"create": true,
"read": true,
"update": true,
"delete": true
},
"property2": {
"create": true,
"read": true,
"update": true,
"delete": true
}
},
"_owner": "string"
}