| FRAMES | NO FRAMES | Description | Parameters | Examples | Response |
| URL | http://<host>/<instance>/admin/services |
|---|---|
| Support Operations | Create Service Create Service From File |
| Parent Resources | Administration |
| Child Resources | Feature Service |
The administrative service catalog resource provides a list of current feature services and supports operations to create a feature service.
The current version of the server is also returned in the response. The value of the version is a number such that its value at a future release is guaranteed to be greater than its value at a previous release.
| Parameter | Details |
|---|---|
| f | Description: The response format. The default response format is html. Values: html | json | pjson |
Example 1: URL for the admin services catalog on sampleserver10:
http://sampleserver10.arcgisonline.com/arcgis/admin/services{
"currentVersion": <currentVersion>,
"services": [
{
"name": "<serviceName1>",
"type": "<serviceType1>"
},
{
"name": "<serviceName2>",
"type": "<serviceType2>"
}
]
}
{
"currentVersion": 10.1,
"services": [
{
"name": "Anaheim",
"type": "FeatureServer"
},
{
"name": "Switzerland",
"type": "FeatureServer"
},
{
"name": "USA",
"type": "FeatureServer"
}
]
}