forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean up snake_names in ref docs (2600hz#3385)
- Loading branch information
1 parent
26d3a78
commit 9b26d15
Showing
52 changed files
with
541 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Apps_link | ||
### Apps Link | ||
|
||
#### About Apps_link | ||
#### About Apps Link | ||
|
||
#### Schema | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,67 @@ | ||
### Auth | ||
### Authentication | ||
|
||
#### About Auth | ||
#### About Authentication | ||
|
||
#### Schema | ||
|
||
|
||
|
||
#### Fetch | ||
|
||
> GET /v2/auth/links | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/auth/links | ||
``` | ||
|
||
#### Change | ||
|
||
> POST /v2/auth/links | ||
```shell | ||
curl -v -X POST \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/auth/links | ||
``` | ||
|
||
#### Remove | ||
|
||
> DELETE /v2/auth/links | ||
```shell | ||
curl -v -X DELETE \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/auth/links | ||
``` | ||
|
||
#### Create | ||
|
||
> PUT /v2/auth/callback | ||
```shell | ||
curl -v -X PUT \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/auth/callback | ||
``` | ||
|
||
#### Create | ||
|
||
> PUT /v2/auth/authorize | ||
```shell | ||
curl -v -X PUT \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/auth/authorize | ||
``` | ||
|
||
#### Fetch | ||
|
||
> GET /v2/auth/tokeninfo | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/auth/tokeninfo | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Contact_list | ||
### Contact List | ||
|
||
#### About Contact_list | ||
#### About Contact List | ||
|
||
#### Schema | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,87 @@ | ||
### Global_provisioner_templates | ||
### Global Provisioner Templates | ||
|
||
#### About Global_provisioner_templates | ||
#### About Global Provisioner Templates | ||
|
||
#### Schema | ||
|
||
|
||
|
||
#### Fetch | ||
|
||
> GET /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates | ||
``` | ||
|
||
#### Create | ||
|
||
> PUT /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates | ||
```shell | ||
curl -v -X PUT \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates | ||
``` | ||
|
||
#### Fetch | ||
|
||
> GET /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID} | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID} | ||
``` | ||
|
||
#### Change | ||
|
||
> POST /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID} | ||
```shell | ||
curl -v -X POST \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID} | ||
``` | ||
|
||
#### Remove | ||
|
||
> DELETE /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID} | ||
```shell | ||
curl -v -X DELETE \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID} | ||
``` | ||
|
||
#### Fetch | ||
|
||
> GET /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID}/image | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID}/image | ||
``` | ||
|
||
#### Change | ||
|
||
> POST /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID}/image | ||
```shell | ||
curl -v -X POST \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID}/image | ||
``` | ||
|
||
#### Remove | ||
|
||
> DELETE /v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID}/image | ||
```shell | ||
curl -v -X DELETE \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/global_provisioner_templates/{TEMPLATE_ID}/image | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
### Google_auth | ||
### Google Authentication | ||
|
||
#### About Google_auth | ||
#### About Google Authentication | ||
|
||
#### Schema | ||
|
||
|
||
|
||
#### Create | ||
|
||
> PUT /v2/google_auth | ||
```shell | ||
curl -v -X PUT \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/google_auth | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
### Ip_auth | ||
### IP Authentication | ||
|
||
#### About Ip_auth | ||
#### About IP Authentication | ||
|
||
#### Schema | ||
|
||
|
||
|
||
#### Create | ||
|
||
> PUT /v2/ip_auth | ||
```shell | ||
curl -v -X PUT \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/ip_auth | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,87 @@ | ||
### Local_provisioner_templates | ||
### Local Provisioner Templates | ||
|
||
#### About Local_provisioner_templates | ||
#### About Local Provisioner Templates | ||
|
||
#### Schema | ||
|
||
|
||
|
||
#### Fetch | ||
|
||
> GET /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates | ||
``` | ||
|
||
#### Create | ||
|
||
> PUT /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates | ||
```shell | ||
curl -v -X PUT \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates | ||
``` | ||
|
||
#### Fetch | ||
|
||
> GET /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID} | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID} | ||
``` | ||
|
||
#### Change | ||
|
||
> POST /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID} | ||
```shell | ||
curl -v -X POST \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID} | ||
``` | ||
|
||
#### Remove | ||
|
||
> DELETE /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID} | ||
```shell | ||
curl -v -X DELETE \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID} | ||
``` | ||
|
||
#### Fetch | ||
|
||
> GET /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID}/image | ||
```shell | ||
curl -v -X GET \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID}/image | ||
``` | ||
|
||
#### Change | ||
|
||
> POST /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID}/image | ||
```shell | ||
curl -v -X POST \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID}/image | ||
``` | ||
|
||
#### Remove | ||
|
||
> DELETE /v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID}/image | ||
```shell | ||
curl -v -X DELETE \ | ||
-H "X-Auth-Token: {AUTH_TOKEN}" \ | ||
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/local_provisioner_templates/{TEMPLATE_ID}/image | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Parked calls | ||
### Parked Calls | ||
|
||
#### About Parked calls | ||
#### About Parked Calls | ||
|
||
#### Schema | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Phone Numbers | ||
|
||
#### About Phone_numbers | ||
#### About Phone Numbers | ||
|
||
The 2600hz mobile API set: manage numbers. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Access_lists | ||
### Access Lists | ||
|
||
#### About Access_lists | ||
#### About Access Lists | ||
|
||
#### Schema | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### Api_auth | ||
### API Authentication | ||
|
||
#### About Api_auth | ||
#### About API Authentication | ||
|
||
#### Schema | ||
|
||
|
Oops, something went wrong.