Creatio development guide
PDF
This documentation is valid for Creatio version 7.16.0. We recommend using the newest version of Creatio documentation.

Working with Stream data

Glossary Item Box

Introduction

Creatio 7.16.0 and up supports OData 4 integrations that use data of the Stream type.

The Stream data includes the following elements:

  • Images
  • Files
  • BLOB

Working with data of the Stream type enables:

  • Reading data
  • Modifying data
  • Deleting data

OData 4 use cases and examples of different types of requests are available in the “Creatio integration via the OData 4 protocol” article.

Working with Stream data

You need to authenticate your requests to Creatio.

Reading data

A request to read the value in a field by an object instance Id
 
 
// Get instance of an object with Id 44C083FC-2060-4B33-823D-F3D749396217 of the SysImage collection.
GET http://mycreatio.com/0/odata/SysImage(44C083FC-2060-4B33-823D-F3D749396217)/Data

ForceUseSession: true
BPMCSRF: OpK/NuJJ1w/SQxmPvwNvfO

 

Response to the request to read the value in a field by an object instance Id
 
 
Status: 200 OK

Modifying data

A request to modify the value in a field of a collection object instance
 
 
// Modify instance of an object with Id 44C083FC-2060-4B33-823D-F3D749396217 of the SysImage collection.
PUT http://mycreatio.com/0/odata/SysImage(44C083FC-2060-4B33-823D-F3D749396217)/Data

Accept: application/json; odata=verbose
Content-Type: application/json; odata=verbose
ForceUseSession: true
BPMCSRF: OpK/NuJJ1w/SQxmPvwNvfO

 

The request body is of the BLOB type an contains the following image.

A response to the request to modify the value in a field of a collection object instance
 
 
Status: 200 OK

Deleting data

A request to delete the value in a field by an object instance Id
 
 
// Delete object instance with Id 44C083FC-2060-4B33-823D-F3D749396217 of the SysImage collection.
DELETE http://mycreatio.com/0/odata/SysImage(44C083FC-2060-4B33-823D-F3D749396217)/Data

ForceUseSession: true
BPMCSRF: OpK/NuJJ1w/SQxmPvwNvfO

 

 

A response to the request to delete the value in a field by an object instance Id
 
 
Status: 204 No Content

© Creatio 2002-2020.

Did you find this information useful?

How can we improve it?