GET /{BASE}/prefix/{prefix}Get namespace
- HTTP Example:
GET /{BASE}/prefix/{prefix} | - API Example:
PrefixWebService.getMapping({'prefix': }); |
- Output:
- Response - Response with the mapping, if exists
- Produces:
- application/json
|
DELETE /{BASE}/prefix/{prefix}Removes a prefix
- HTTP Example:
DELETE /{BASE}/prefix/{prefix} | - API Example:
PrefixWebService.deleteMapping({'prefix': }); |
- Output:
- Response - Response with the result of the operation
|
POST /{BASE}/prefix/{prefix}Add new mapping
- HTTP Example:
POST /{BASE}/prefix/{prefix}?uri=… | - API Example:
PrefixWebService.addMapping({'uri': , 'prefix': }); |
- Output:
- Response - operation result
- Query parameters:
- uri - uri
|