Move commands to the README.md

This commit is contained in:
Santiago Lo Coco 2024-10-25 18:35:59 +02:00
parent 8468506acb
commit 9dca419e9d
2 changed files with 13 additions and 19 deletions

View File

@ -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.

View File

@ -125,24 +125,6 @@
</tbody>
</table>
<h2>cURL Commands</h2>
<pre>
# 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"}'
</pre>
<script>
function updateEndpoint(event, endpointId) {
event.preventDefault();