# How can I add new application  using Wowza RestAPI

**URL:** https://community.wowza.com/t/how-can-i-add-new-application-using-wowza-restapi/44985
**Category:** Wowza Developer Dojo
**Created:** [March 23, 2015, 4:51pm UTC](https://community.wowza.com/t/how-can-i-add-new-application-using-wowza-restapi/44985 "2015-03-23T16:51:37Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![LeBron\_Park](https://avatars.discourse-cdn.com/v4/letter/l/ad7895/32.png) [@LeBron\_Park](https://community.wowza.com/u/LeBron_Park)
#### Post date: [March 23, 2015, 4:51pm UTC](https://community.wowza.com/t/how-can-i-add-new-application-using-wowza-restapi/44985/1 "2015-03-23T16:51:37Z")

</div>

I want to know how to add an application using RestApi, not use Wowza manager.

I have a photo about restApi.

What do i insert in text field of body?

![](http://cfile28.uf.tistory.com/original/262A4E4B550FC5A71032DF)

---

<div class="post-metadata">

### Author: ![Matt\_Young](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/matt_young/32/389_2.png) [@Matt\_Young](https://community.wowza.com/u/Matt_Young)
#### Post date: [May 4, 2015, 6:16pm UTC](https://community.wowza.com/t/how-can-i-add-new-application-using-wowza-restapi/44985/2 "2015-05-04T18:16:38Z")

</div>

You should be able to use the schema from the right into the body on the left. In another example, you can take a look at an abridged version of application creation.

```auto
curl -X POST --header 'Accept:application/json; charset=utf-8' --header 'Content-type:application/json; charset=utf-8' http://localhost:8087/v2/servers/_defaultServer_/vhosts/_defaultVHost_/applications/testlive -d '
{
   "restURI": "http://localhost:8087/v2/servers/wse/vhosts/_defaultVHost_/applications/testlive",
   "name": "testlive",
   "appType": "Live",
   "clientStreamReadAccess": "*",
   "clientStreamWriteAccess": "*",
   "description": "Testing our Rest Service",
   "streamConfig": {
      "restURI": "http://localhost:8087/v2/servers/wse/vhosts/_defaultVHost_/applications/testlive/streamconfiguration",
      "streamType": "live"
   }
}'

```

You can append the rest of the options as indicated in the model schema to the curl post depending on what you are looking to setup.

Thanks,

Matt
