An open API service indexing awesome lists of open source software.

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

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
}
```