Created API Remote (markdown)

Lukas Metzger 2018-04-17 21:17:38 +02:00
parent fe42194b33
commit 4a2980f6d5

17
API-Remote.md Normal file

@ -0,0 +1,17 @@
# Remote
## Get client ip
`GET /remote/ip`
This call returns the ip of the client. This can e.g. be used for dynamic DNS Clients.
### Response
| code | result |
| --- | --- |
| 200 | Everything okay |
```json
{
"ip": "1.2.3.4"
}
```