Obter Entrada
Last modified: January 30, 2023
Use this endpoint to get entry, entry parent or entry children. You must provide path parameter xid.
Entry
Use the endpoint /rest/1/entry/{xid}
to get an asset.
Curl Request for Getting Entry
curl -X GET http://localhost:8080/rest/1/entry/MzRlM2RhZTAtMzc1YS00YTBjLTk5ODMtYzQzYTBiMDFiNWFh" -H "accept: application/json;charset=UTF-8"
Entry Parent
Use the endpoint /rest/1/entry/{xid}/parent
to get parent of an asset.
Curl Request for Getting Entry Parent
curl -X GET "http://localhost:8080/rest/1/entry/MzRlM2RhZTAtMzc1YS00YTBjLTk5ODMtYzQzYTBiMDFiNWFh/parent" -H "accept: application/json"
Entry Children
Use this endpoint /rest/1/entry/{xid}/children
to get children of an asset.
Curl Request for Getting Entry Children
curl -X GET "http://localhost:8080/rest/1/entry/MzRlM2RhZTAtMzc1YS00YTBjLTk5ODMtYzQzYTBiMDFiNWFh/children" -H "accept: application/json"