This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

REST API

I am trying to access the endpoint /objects/object_id returns blank. But the response is 200 OK. Can someone help me with this, please?

I have used the correct object ID.

Parents Reply
  • Yes. If you look at the documentation for that endpoint you'll see it returns the object version data. This contains common metadata such as class and title, but not the full set of properties. 

    To get the properties you need to make a subsequent request with details of the specific object version(s) you want properties for.

    The functional reason is that the REST API mimics the COM API, and this is how it works. At a practical level this limits the amount of data returned in the original request, making it much more efficient for situations that just need to get simple data. 

Children