diff --git a/README.md b/README.md index 84f5092..9b048f6 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,18 @@ This REST API is for managing WebRTC endpoint streams. It is designed for a Unit - `GET /api/endpoints/{id}`: Get a specific endpoint by ID. - `PUT /api/endpoints/{id}`: Update an existing endpoint. +### cURL examples + +- curl http://windows.local:5000/api/endpoints +- curl http://windows.local:5000/api/endpoints/1 +- curl -X PUT http://windows.local:5000/api/endpoints/1 -H "Content-Type: application/json" -d '{"url": "http://windows.local:8500/mystream/"}' + +### Invoke-WebRequest examples + +- Invoke-WebRequest -Uri http://windows.local:5000/api/endpoints +- Invoke-WebRequest -Uri http://windows.local:5000/api/endpoints/1 +- Invoke-WebRequest -Uri http://windows.local:5000/api/endpoints/1 -Method PUT -Headers @{"Content-Type"="application/json"} -Body '{"url": "http://windows.local:8500/mystream/"}' + ## API host -By default, this API expects `windows.local` to be an existing DNS record on your DNS server (which could also be defined in your hosts file). If you don't want to use `windows.local`, update the `API_HOST` in your `.env` file. \ No newline at end of file +By default, this API expects `windows.local` to be an existing DNS record on your DNS server (which could also be defined in your hosts file). If you don't want to use `windows.local`, update the `API_HOST` in your `.env` file. diff --git a/src/templates/index.html b/src/templates/index.html index 60e400a..ca0afec 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -125,24 +125,6 @@ -

cURL Commands

-
-# Get all endpoints
-curl http://{{ api_host }}:5000/api/endpoints
-
-# Get Endpoint 1
-curl http://{{ api_host }}:5000/api/endpoints/1
-
-# Get Endpoint 2
-curl http://{{ api_host }}:5000/api/endpoints/2
-
-# Update Endpoint 1
-curl -X PUT http://{{ api_host }}:5000/api/endpoints/1 -H "Content-Type: application/json" -d '{"url": "http://new.url/for/endpoint1"}'
-
-# Update Endpoint 2
-curl -X PUT http://{{ api_host }}:5000/api/endpoints/2 -H "Content-Type: application/json" -d '{"url": "http://new.url/for/endpoint2"}'
-
-