Hello Creatio Community,

I am working on a project where I need to either replace or override an existing Creatio web service with a custom implementation. Specifically, I want to extend or modify the functionality of a base Creatio web service (e.g., CallServiceSchemaService) to fit my business requirements...MoreLess

Like 0

Like

1 comments
Best reply

Hi,

We would recommend not to redo the standard web service page, but to set up a custom service.

Here are the options for configuring the...MoreLess

Hi,

We would recommend not to redo the standard web service page, but to set up a custom service.

Here are the options for configuring the...MoreLess

Show all comments

Hello community,
I want to create API Service from creatio that return object data with the detail (json with hierarchical data). lets say i want to get 'Account' with Orders, Lead, and else that connected with 'Account' in one endpoint.

I think about create Custom web services, anyone have script with similar case or have suggestion for this case?

Like 0

Like

2 comments
Best reply

You'll just need to design the objects you're returning and make it something like this: 

[DataContract]
public class OrderPayload
{
 ...

MoreLess

Show all comments (1)