|
@@ -27,8 +27,8 @@ Welcome to the generated API reference.
|
|
|
> Example request:
|
|
|
|
|
|
```bash
|
|
|
-curl -X GET "http://localhost/api/user" \
|
|
|
--H "Accept: application/json"
|
|
|
+curl -X GET -G "http://localhost/api/user" \
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|
|
@@ -67,8 +67,8 @@ $.ajax(settings).done(function (response) {
|
|
|
> Example request:
|
|
|
|
|
|
```bash
|
|
|
-curl -X GET "http://localhost/api/user/create" \
|
|
|
--H "Accept: application/json"
|
|
|
+curl -X GET -G "http://localhost/api/user/create" \
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|
|
@@ -108,7 +108,7 @@ $.ajax(settings).done(function (response) {
|
|
|
|
|
|
```bash
|
|
|
curl -X POST "http://localhost/api/user" \
|
|
|
--H "Accept: application/json"
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|
|
@@ -140,8 +140,8 @@ $.ajax(settings).done(function (response) {
|
|
|
> Example request:
|
|
|
|
|
|
```bash
|
|
|
-curl -X GET "http://localhost/api/user/{user}" \
|
|
|
--H "Accept: application/json"
|
|
|
+curl -X GET -G "http://localhost/api/user/{user}" \
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|
|
@@ -180,8 +180,8 @@ $.ajax(settings).done(function (response) {
|
|
|
> Example request:
|
|
|
|
|
|
```bash
|
|
|
-curl -X GET "http://localhost/api/user/{user}/edit" \
|
|
|
--H "Accept: application/json"
|
|
|
+curl -X GET -G "http://localhost/api/user/{user}/edit" \
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|
|
@@ -221,7 +221,7 @@ $.ajax(settings).done(function (response) {
|
|
|
|
|
|
```bash
|
|
|
curl -X PUT "http://localhost/api/user/{user}" \
|
|
|
--H "Accept: application/json"
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|
|
@@ -256,7 +256,7 @@ $.ajax(settings).done(function (response) {
|
|
|
|
|
|
```bash
|
|
|
curl -X DELETE "http://localhost/api/user/{user}" \
|
|
|
--H "Accept: application/json"
|
|
|
+ -H "Accept: application/json"
|
|
|
```
|
|
|
|
|
|
```javascript
|