How to Create a uipath ixp Stream Records from Uipath code/process

Description

I wanted to Create a Stream record I, e email for the existing stream from UiPath code automatically instead creating it from ixp portal by integrating email box, How can I achieve it?

Link

https://forum.uipath.com

Date

2026-02-13

Related UiPath products

IXP - Communications Mining

Hi @Koushik_SV

suggest you to go with system’s API instead of creating it manually in the iXp portal.

Simple steps:

  1. Get API endpoint for creating a Stream/Email record.
  2. Use UiPath HTTP Request activity:
  • Method: POST
  • Body: JSON with email subject, body, sender, receiver, etc.
  1. Pass authentication (OAuth / API key) depending on your system.
  2. When the API call succeeds, the Stream/Email record is created automatically.

Happy Automation!!

Hi @Christopher_R ,Thank you for the suggestion. Could you please provide the API end point, Or any document link for reference?

@Koushik_SV

Easiest way to create IXP Stream Records from a UiPath process is to use the UiPath IXP Connector in Integration Service. Once you connect it with your API Key, you can use the Create Stream Record activity directly inside Studio and send your JSON payload to the stream.

If you prefer APIs, you can also call the IXP endpoint with a simple HTTP POST.

Also, You may refer UiPath Academy course to help you understand IXP better:

Introduction to UiPath IXP Course | UiPath Academy [academy.uipath.com]

Happy automation