Skip to content

Commit 89a9ebf

Browse files
committed
Update example references of domain to new, tidal.cloud
1 parent ef9f346 commit 89a9ebf

27 files changed

+58
-58
lines changed

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
guides.tidalmg.com
1+
guides.tidal.cloud

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ sidebars:
112112
description: "Guides for using and working with Tidal."
113113

114114
# needed for sitemap.xml file only
115-
url: "https://guides.tidalmg.com"
115+
url: "https://guides.tidal.cloud"
116116
baseurl: ""
117117

118118
plugins:

pages/api/Using_with_nmap.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ sidebar: main_sidebar
88
permalink: nmap-api.html
99
---
1010

11-
You can send the output generated by Nmap to the Tidal API in two ways. First, by using Tidal Tools [Instructions](https://guides.tidalmg.com/host-discovery.html) and second, by sending the data to the API by using a service like Postman.
12-
You can find detailed instructions for how to use Postman for authentication and CRUD operations [here](https://guides.tidalmg.com/postman_docs.html).
11+
You can send the output generated by Nmap to the Tidal API in two ways. First, by using Tidal Tools [Instructions](https://guides.tidal.cloud/host-discovery.html) and second, by sending the data to the API by using a service like Postman.
12+
You can find detailed instructions for how to use Postman for authentication and CRUD operations [here](https://guides.tidal.cloud/postman_docs.html).
1313

1414
{% include callout.html content="A downside of this approach is that you will
1515
have to create the expected JSON payload required by the API to handle the
@@ -47,7 +47,7 @@ This is the shape of the expected payload.
4747
}
4848
```
4949

50-
{% include note.html content="Send a JSON file with [Tidal Tools](https://guides.tidalmg.com/host-discovery.html) by using the `--json` flag.
50+
{% include note.html content="Send a JSON file with [Tidal Tools](https://guides.tidal.cloud/host-discovery.html) by using the `--json` flag.
5151
For example, `tidal sync nmap --json /path/to/nmap.json`" %}
5252

5353
You could also use cURL, a request would look similar to this:
@@ -59,6 +59,6 @@ export SUBDOMAIN=PUT_YOUR_SUBDOMAIN_HERE
5959
curl -H "Authorization: Bearer $API_TOKEN" --header "Content-Type: application/json" \
6060
--request POST \
6161
--data @nmap_out.json \
62-
"https://$SUBDOMAIN.tidalmg.com/api/v1/nmap"
62+
"https://$SUBDOMAIN.tidal.cloud/api/v1/nmap"
6363
```
6464

pages/api/Using_with_postman.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You will need:
1717

1818
```
1919
curl -X GET \
20-
https://[your subdomain].tidalmg.com/api_docs \
20+
https://[your subdomain].tidal.cloud/api_docs \
2121
-H 'authorization: bearer [insert your access_token] \
2222
2323
```

pages/api/authentication.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You will need:
2929

3030
```
3131
curl -X POST \
32-
https://[your subdomain].tidalmg.com/api/v1/authenticate \
32+
https://[your subdomain].tidal.cloud/api/v1/authenticate \
3333
-H 'content-type: application/json' \
3434
-d '{"username":"[insert your email]",
3535
"password": "[insert your password]"}'
@@ -78,7 +78,7 @@ You will need:
7878

7979
```
8080
curl -X GET \
81-
https://[insert your subdomain].tidalmg.com/api/v1/ping \
81+
https://[insert your subdomain].tidal.cloud/api/v1/ping \
8282
-H 'authorization: bearer [insert your access token]' \
8383
-H 'content-type: application/json' \
8484
```
@@ -107,7 +107,7 @@ You will need:
107107

108108
```
109109
curl -X POST \
110-
https://[insert your subdomain].tidalmg.com/api/v1/refresh \
110+
https://[insert your subdomain].tidal.cloud/api/v1/refresh \
111111
-H 'authorization: bearer [insert your access token]' \
112112
-H 'content-type: application/json' \
113113
-d '{"refresh_token":"[insert your refresh token]"}'

pages/api/create_interview_questions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Before using each endpoint, you must authenticate to the Tidal API:
1515
Once you have authenticated with the Tidal API, utilising each endpoint simply requires sending your token as an HTTP request header with each request. For example, with curl this looks like
1616

1717
curl -X GET \
18-
https\://[your subdomain].tidalmg.com/api/v1/ping \
18+
https\://[your subdomain].tidal.cloud/api/v1/ping \
1919
-H authorization\:\ \"Bearer\ [auth token]\" \
2020

2121
For any additional details regarding the endpoint, checkout the Tidal API documentation.
22-
(https://[your subdomain].tidalmg.com/docs/)
22+
(https://[your subdomain].tidal.cloud/docs/)
2323

2424
# Tools
2525

@@ -33,14 +33,14 @@ Our interview questions are tightly coupled with our application fields. So, bef
3333

3434
### Create a custom field
3535

36-
You can create a custom field for an application by going to https://[your subdomain].tidalmg.com/#/admin and clicking on the 'New Application Field' button. Note: we don't limit the type of field (dropdown, text, number, currency, checkbox) that can be used in interview questions.
36+
You can create a custom field for an application by going to https://[your subdomain].tidal.cloud/#/admin and clicking on the 'New Application Field' button. Note: we don't limit the type of field (dropdown, text, number, currency, checkbox) that can be used in interview questions.
3737

3838
### Get a custom field id
3939

4040
Once we have created a custom field, we need to get its field id. So, to start we need to get a list of all fields for applications:
4141

4242
curl -X GET \
43-
https\://[your subdomain].tidalmg.com/api/v1/fields\?model_type\=applications \
43+
https\://[your subdomain].tidal.cloud/api/v1/fields\?model_type\=applications \
4444
-H authorization\:\ \"Bearer\ [auth token]\" \
4545
-H Content-Type\:\ application/json \
4646
-o fields.json
@@ -76,7 +76,7 @@ Which should give you an output similiar to
7676
Before we can create our question we need to know what number to give our question. To find out what number we should use, we can either look at our interview questions in our web app, or we can query the API for all questions:
7777

7878
curl -X GET \
79-
https\://[your subdomain].tidalmg.com/api/v1/questions \
79+
https\://[your subdomain].tidal.cloud/api/v1/questions \
8080
-H authorization\:\ \"Bearer\ [auth token]\" \
8181
-H Content-Type\:\ application/json \
8282
-o questions.json
@@ -127,7 +127,7 @@ To start off with all POST request to the Tidal API need to have the model type
127127
Putting this all together we can then post this request to our API
128128

129129
curl - X POST \
130-
https\://[your subdomain].tidalmg.com/api/v1/questions
130+
https\://[your subdomain].tidal.cloud/api/v1/questions
131131
-H authorization\:\ \"Bearer\ [auth token]\" \
132132
-H Content-Type\:\ application/json \
133133
-d \{\"question\"\:\ \{\ \"text\"\:\ \"How\ many\ users\ does\ this\ application\ have\?\"\,\ \"number\"\:\ 22\,\ \"field_id\"\:\ 1\}\}
@@ -138,7 +138,7 @@ Putting this all together we can then post this request to our API
138138
If you have an interview question already and you want to change the number or change what field it applies to you can do a put request
139139

140140
curl -X PUT \
141-
http\://[your subdomain].tidalmg.com/api/v1/questions/22
141+
http\://[your subdomain].tidal.cloud/api/v1/questions/22
142142
-H authorization\:\ \"Bearer\ [auth token]\" \
143143
-H Content-Type\:\ application/json \
144144
-d \{\"question\"\:\ \{\ \"field_id\"\:\ 2\,\ \"number\"\:\ 22\}\}

pages/api/get_several.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Before using each endpoint, you must authenticate to the Tidal API:
1414

1515
Once you have authenticated with the Tidal API, utilising each endpoint is super simple.
1616
For any additional details regarding the endpoint, checkout the Tidal API documentation.
17-
(https://[your subdomain].tidalmg.com/docs/)
17+
(https://[your subdomain].tidal.cloud/docs/)
1818

1919
## Getting all the Move Groups:
2020
#### GET api/v1/move_groups {#getallmg}
@@ -30,7 +30,7 @@ You will need:
3030

3131
```
3232
curl -X GET \
33-
https://[insert your subdomain].tidalmg.com/api/v1/move_groups \
33+
https://[insert your subdomain].tidal.cloud/api/v1/move_groups \
3434
-H 'authorization: bearer [insert your access_token]' \
3535
-H 'content-type: application/json' \
3636
```
@@ -209,7 +209,7 @@ You will need:
209209

210210
```
211211
curl -X GET \
212-
https://[insert your subdomain].tidalmg.com/api/v1/move_groups/[insert move_group id] \
212+
https://[insert your subdomain].tidal.cloud/api/v1/move_groups/[insert move_group id] \
213213
-H 'authorization: bearer [insert your access_token]' \
214214
-H 'content-type: application/json' \
215215
```

pages/api/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Two tools that we would recommend are either cURL or Postman.
3636

3737
## Full API Documentation
3838

39-
You can access all of the API documents via https://[your_subdomain].tidalmg.com/docs/
39+
You can access all of the API documents via https://[your_subdomain].tidal.cloud/docs/
4040
Replace start of the address above with your Tidal subdomain.
4141
For additional help on getting your subdomain, refer to [Get Subdomain](https://get.tidal.cloud/workspaces) & type in your email in the prompt bar. Afterwards, you will receive an email with all of your workspaces.

pages/api/importing_applications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Before using the endpoint, you must authenticate to the Tidal API:
1717

1818
Once you have authenticated with the Tidal API, utilising the endpoint is super simple.
1919
For any additional details regarding the endpoint, checkout the Tidal API documentation.
20-
(https://[your subdomain].tidalmg.com/docs/)
20+
(https://[your subdomain].tidal.cloud/docs/)
2121

2222

2323
A request to import an application into the Tidal API looks like this:
@@ -35,7 +35,7 @@ Type.*
3535

3636
```
3737
curl -X POST \
38-
https://[insert your subdomain].tidalmg.com/api/v1/apps/import \
38+
https://[insert your subdomain].tidal.cloud/api/v1/apps/import \
3939
-H 'authorization: bearer [insert your access_token] \
4040
-H 'content-type: application/json' \
4141
-d '{

pages/api/importing_servers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Before using the endpoint, you must authenticate to the Tidal API:
1717

1818
Once you have authenticated with the Tidal API, utilising the endpoint is super simple.
1919
For any additional details regarding the endpoint, checkout the Tidal API documentation.
20-
(https://[your subdomain].tidalmg.com/docs/)
20+
(https://[your subdomain].tidal.cloud/docs/)
2121

2222
There are various parameters you can define about your server in the body:
2323

@@ -36,7 +36,7 @@ You will need:
3636

3737
```
3838
curl -X POST \
39-
https://[insert your subdomain].tidalmg.com/api/v1/servers/import \
39+
https://[insert your subdomain].tidal.cloud/api/v1/servers/import \
4040
-H 'authorization: bearer [insert your access_token]' \
4141
-H 'content-type: application/json' \
4242
-d '{"servers": [{"custom_fields": {"Technologies": "Python"},"description": "This is a general purpose server that has several functionalities. The first functionality is that it is a demo server. The second functionality is that it could be a real server as well.","fqdn": "dnstools.ninja","host_name": "trpewrcapbiz02","operating_system": "Windows Server","operating_system_version": "Windows 10","ram_allocated_gb": 3,"ram_used_gb": 6,"role": "The role","storage_allocated_gb": 5,"storage_used_gb": 6,"virtual": "true","zone": "Datacenter 1"}]}'
@@ -92,7 +92,7 @@ You will need:
9292

9393
```
9494
curl -X POST \
95-
https://[insert your subdomain].tidalmg.com/api/v1/servers/import \
95+
https://[insert your subdomain].tidal.cloud/api/v1/servers/import \
9696
-H 'authorization: bearer [insert your access_token]' \
9797
-H 'content-type: application/json' \
9898
-d '{

0 commit comments

Comments
 (0)