Hello

When creating a Web Service, the URI is embedded in the configuration and cannot be set with a System Setting like the values of the request parameters.

Usually the endpoints of the customer to integrate are located in "production" and "test" environments.

In Creatio if we need to integrate with...MoreLess

4 comments

I completely agree. When using web services, the username and password (or API key etc) is already stored in the system settings. I would love...MoreLess

Show all comments (3)

Hello Team,

I'm working on SMS integration where I need to use `Twilio` as SMS service in Creatio. I followed all the steps mentioned in these URI: 

(Installation Steps)
Twilio SMS Connector for Creatio | Creatio Marketplace

(Configure Anonymous Service)
Configuration Example · GitHub

Still, It is not working. Also I have confusion while configuring anonymous service in Point-3 that is:
do we need to replace '[Previous values]' with some other value or not?

Like 0

Like

1 comments

Hello!

You need to add a new value to the parameter, but the existing ones should not be removed.

Show all comments

Hello Creatio Team,

I’m representing DE IT SOLUTION, a provider of custom web development services, and would like to propose a new feature for Creatio Experience: an ‘About This’ section for workflows and experiences.

Idea Overview:

The ‘About This’ section would serve as an internal documentatio...MoreLess

1 comments

Hello,

As we see, all necessary information is already available in our Academy article. Please clarify which additional documentation should...MoreLess

Show all comments

why i get this error. i use update
... 0/odata/Contact(guid'123') to change number value

Like 0

Like

1 comments

Hello, 

The error you encountered, according to the analysis, was caused by the fact that the OData protocol takes some time to initialize...MoreLess

Show all comments

Hi community,

I’m working on a custom web service in Creatio that connects to an external PostgreSQL database deployed on Neon. My goal is to query data from this external database, acting like a custom ORM. However, I’m running into an issue with using the Npgsql package inside Creatio’s source code...MoreLess

Like 1

Like

1 comments

Hello,

Please revert all the changes and perform the setup in the following manner:

  1. 1) Deploy another website that will be used as a mediator...MoreLess
Show all comments

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

Hi Creatio Community,

I am working on extending the existing implementation of the Execute method in the web service designer, which is part of a base package in Creatio. My goal is to modify the method to add additional functionality: specifically, I want to save the web service response as a record...MoreLess

Like 2

Like

1 comments

Hello Pranshu Basak,

Please change the part of the code 

var serviceResponse = serviceSchemaClient.Execute(UserConnection, serviceName...

MoreLess

Show all comments

Hi All, I have setup a web service in Creatio that is working fine when I send parameters with data.

Sometimes I gonna call thie web service without all the parameters on the query, just one or more, it will depends on othe step before.

Is there a way to have a web service set up in Creatio with all parameters, but only make the call using the parameters that are not null?

Like 1

Like

3 comments

Hello!

It depends on whether the parameters with NULL values are required or not.

You can try leaving out the NULL parameters and see how...MoreLess

Show all comments (2)

Hello,

I am trying to automate the gathering of data using some business process that perform API calls to one of our client private APIs. I have defined the WebServices with no problem like the one from this example:

And sending the test request with a valid API Key and Authorization token works...MoreLess

Like 0

Like

2 comments

Note: I have not tried yet to perform the same kind of requests inside a business process to another API (like a public one), but the error...MoreLess

Show all comments (1)

Hi,

I'm trying to pass the result of below "json" (in script task),

var schema = UserConnection.EntitySchemaManager.GetInstanceByName("Account");

    var entity = schema.CreateEntity(UserConnection);

    entity.FetchFromDB(id);

    json = Terrasoft.Core.Entities...MoreLess

Like 2

Like

5 comments

public bool FetchFromDB(object keyValue, bool useDisplayValues = true)

All the `FetchFromDB` methods return a bool, you could test the call...MoreLess

Show all comments (4)