# Wowza Streaming engine

**URL:** https://community.wowza.com/t/wowza-streaming-engine/92934
**Category:** Wowza Streaming Engine
**Tags:** rest-api
**Created:** [March 7, 2021, 5:02am UTC](https://community.wowza.com/t/wowza-streaming-engine/92934 "2021-03-07T05:02:10Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Palkesh\_Soni](https://avatars.discourse-cdn.com/v4/letter/p/53a042/32.png) [@Palkesh\_Soni](https://community.wowza.com/u/Palkesh_Soni)
#### Post date: [March 7, 2021, 5:02am UTC](https://community.wowza.com/t/wowza-streaming-engine/92934/1 "2021-03-07T05:02:10Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/wowza1/original/1X/6a24b959a28c65c810ff268041988dd30ac389e8.png)

When I am adding stream file in wowza streaming engine using REST API with swagger or postman, It is adding the stream file in the list but not adding my uri in the stream file. Please help me, I am attaching screen shot here for your reference. Thank You 🙂

---

<div class="post-metadata">

### Author: ![Karel\_Boek](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/karel_boek/32/454_2.png) [@Karel\_Boek](https://community.wowza.com/u/Karel_Boek)
#### Post date: [March 7, 2021, 3:36pm UTC](https://community.wowza.com/t/wowza-streaming-engine/92934/2 "2021-03-07T15:36:43Z")

</div>

Can you post the REST API call details, like URL and payload.

---

<div class="post-metadata">

### Author: ![Palkesh\_Soni](https://avatars.discourse-cdn.com/v4/letter/p/53a042/32.png) [@Palkesh\_Soni](https://community.wowza.com/u/Palkesh_Soni)
#### Post date: [March 7, 2021, 3:47pm UTC](https://community.wowza.com/t/wowza-streaming-engine/92934/3 "2021-03-07T15:47:48Z")

</div>

[http://192.168.29.150:8087/v2/servers/](http://192.168.29.150:8087/v2/servers/)_defaultServer_/vhosts/_defaultVHost_/applications/test\_live\_app/streamfiles

{“name”: “testing\_stream\_123”, “uri”: “rtsp://192.168.29.152:59335”}

---

<div class="post-metadata">

### Author: ![Karel\_Boek](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/karel_boek/32/454_2.png) [@Karel\_Boek](https://community.wowza.com/u/Karel_Boek)
#### Post date: [March 7, 2021, 4:46pm UTC](https://community.wowza.com/t/wowza-streaming-engine/92934/4 "2021-03-07T16:46:40Z")

</div>

This works for me:

```auto
curl -XPOST -H "Accept: application/json" -H "Content-Type: application/json" -d '{"name":"testing","uri":"rtsp://192.168.29.152:59335"}' http://localhost:8087/v2/servers/_defaultServer_/vhosts/_defaultVHost_/applications/live/streamfiles

```

Make sure you get the right response when you make the call

```auto
{"success":true,"message":"","data":null}

```

---

<div class="post-metadata">

### Author: ![Palkesh\_Soni](https://avatars.discourse-cdn.com/v4/letter/p/53a042/32.png) [@Palkesh\_Soni](https://community.wowza.com/u/Palkesh_Soni)
#### Post date: [March 7, 2021, 5:00pm UTC](https://community.wowza.com/t/wowza-streaming-engine/92934/5 "2021-03-07T17:00:39Z")

</div>

ok, now it is working for me.

Thank You Karel\_Boek
