EntityDataService.svc

I have created a new section in Creatio 7.18, how can I access it via EntityDataService.svc? If so, is there anything specific that needs to be done when creating a new partition? I was advised to compile. I ran "Recompile All" but it still doesn't show up in EntityDataService.svc.

I can only access the objects that were there by default.

Like 0

Like

1 comments

EntityDataService.svc implements the OData 3 API. However, if your object exists in a package that compiles to it's own assembly (an assembly package - meaning your package containing your object has the "Compile package into it's own assembly" checked), it is not accessible via OData 3 and instead you must use OData 4 (not EntityDataService.svc). 

See info on using OData 4 here: https://academy.creatio.com/docs/developer/integrations_and_api/data_se…

The details about OData 3 (which uses EntityDataService.svc) not being able to access objects from Assembly Packages here: https://academy.creatio.com/docs/7-18/developer/development_tools/packa…

Object access is not supported via the OData protocol version 3. Use the OData protocol version 4 to access objects in an assembly package

Ryan

Show all comments