https://github.com/mikebionic/server_mirror_api
Special api for handling data about working mirrors of apps
https://github.com/mikebionic/server_mirror_api
Last synced: over 1 year ago
JSON representation
Special api for handling data about working mirrors of apps
- Host: GitHub
- URL: https://github.com/mikebionic/server_mirror_api
- Owner: mikebionic
- Created: 2021-06-10T11:54:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T15:18:23.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T11:50:39.726Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Server Mirror api for Sap Apps
Url example:
| path | type |
| ---------------- | ---- |
| /server-mirrors/ | GET |
**parameters**
| name | type | description |
| ---- | ---- | ----------------- |
| app | str | the MirrorAppName |
**example**
```url
http:////server-mirrors/?app=AppName
```
This will return a json with data:
```json
{
"data": [
{
"MirrorAppName": "AppName",
"MirrorDomainName": "domain.com",
"MirrorId": 1,
"MirrorIp": "192.168.1.1",
"MirrorIsActive": true,
"MirrorName": "App mirror Name",
"MirrorUrl": null,
"MirrorUrlPrefix": "/prefix",
"URL": "https://domain.com/prefix"
}
],
"message": "Server Mirrors of AppName",
"status": 1
}
```